search for: uy

Displaying 20 results from an estimated 226 matches for "uy".

Did you mean: buy
2007 Apr 11
1
dude with maildir location sintaxis under dovecot
hi... i want to use maildir format so like i see un some manuals i create this directory for my virtual users: # ls -la /export/home/vmail/prueba.uy/t* /export/home/vmail/prueba.uy/toto1: total 4 drwxr-xr-x 2 vmail vmail 512 Apr 10 15:09 . drwxr-xr-x 6 vmail vmail 512 Apr 9 12:11 .. /export/home/vmail/prueba.uy/toto3: total 10 drwxr-xr-x 5 vmail vmail 512 Mar 30 10:43 . drwxr-xr-x 6 vmail vmail...
2006 Jun 06
2
error bars in lattice xyplot *with groups*
...t;Tenor","Alto","Soprano"),each=2)) #here's Deepayan's previous solution, slightly modified to depict # the dependent variable (median) and the error bars on the y-axis # and the independent variable (voice.part) on the x-axis prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { x <- as.numeric(x) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE)) } panel.ci <- function(x, y, ly, uy, subscripts, pch = 16, ...) { x <- as.numeric(x) y <- as.numeric(y)...
2008 Jun 26
3
Connecting lines across missing data points, xyplot
...each = 5), Aldo = c(13, NA, NA, 15, 14, 12, NA, NA, 14, 13), SE.Aldo = c(3, NA, NA, 3, 3, 2, NA, NA, 2, 2), lower.ci.Aldo = c(10, NA, NA, 12, 11, 10,NA, NA, 12, 11), upper.ci.Aldo = c(16, NA, NA, 18, 17, 14, NA, NA, 16, 15) ) ## functions for the error bars prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { x <- as.numeric(x) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE)) } panel.ci <- function(x, y, ly, uy, subscripts, pch = 16, ...) { x <- as.numeric(x) y <- as.numeric(y)...
2010 Nov 10
0
error bars in lattice barchart
...dding error bars to barchart. I tried both the solution of Deepayan and Sundar but without luck. Here is my code (I changed prepanel.ci and panel.ci a little to plot bars vertically): ###################### Sundar's solution ############################### prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { y <- as.numeric(y) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE)) } panel.ci <- function(x, y, ly, uy, subscripts, groups = NULL, pch = 16, ...) { x <- as.num...
2012 Jan 10
4
Samba4 error joining W2003 DC
...oing a samba 4 alpha 17 box to our domain as a DC so I can "drain" the domain info and use the linux box to test samba without disturbing the domain itself. The thing is that I get an error when trying to join the server : [root at vpdc samba]# bin/samba-tool domain join montecarlotv.com.uy DC -Uadministrador --realm=montecarlotv.com.uy Finding a writeable DC for domain 'montecarlotv.com.uy' Found DC srv-mm.montecarlotv.com.uy Password for [WORKGROUP\administrador]: workgroup is CANAL4 realm is montecarlotv.com.uy checking samaccountname Adding CN=VPDC,OU=Domain Controllers,DC...
2012 Jan 19
0
To Andrew Barlett regarding 'WERR_ACCESS_DENIED'
.... I get to add partialy the server to the domain, but fails with "WERR_ACCESS_DENIED" at some point. I've searchead the web without finding a solution and posted in the list also with not much help. The output is this: [root at vpdc samba]# bin/samba-tool domain join montecarlotv.com.uy DC -Uadministrador --realm=montecarlotv.com.uy Finding a writeable DC for domain 'montecarlotv.com.uy' Found DC ads1.montecarlotv.com.uy Password for [CANAL4\administrador]: workgroup is CANAL4 realm is montecarlotv.com.uy checking samaccountname Deleted CN=RID Set,CN=VPDC,OU=Domain Control...
2010 Jul 19
5
par("uin") ?
...ther for an older version of R or SPlus to draw a brace, "{", in a graph. It uses par("uin") to determine the scaling of the quarter circles that make up segments of the brace, but that setting doesn't exist in current R. I'm guessing that, in the function below, ux, uy can be defined from par("usr") and par("pin"), but maybe someone remembers what par("uin") was supposed to refer to. brace <- function (x1 = 0, y1 = 0, x2 = 0, y2 = 1, right = TRUE, rad = 0.2) { uin <- par("uin") ux <- uin[1] uy <- ui...
2003 Jan 15
1
A lot of errors
...t it is). Happens any time, early morning (dawn) too, when nobody is here: Jan 14 14:50:12 linux smbd[18484]: [2003/01/14 14:50:12, 0] smbd/password.c:domain_client_validate(1549) Jan 14 14:50:12 linux smbd[18484]: domain_client_validate: could not fetch trust account password for domain FQQ.COM.UY Jan 14 14:50:53 linux smbd[18376]: [2003/01/14 14:50:53, 0] lib/util_sock.c:read_data(436) Jan 14 14:50:53 linux smbd[18376]: read_data: read failure for 4. Error = Connection reset by peer Jan 14 14:51:54 linux smbd[18488]: [2003/01/14 14:51:54, 0] smbd/password.c:domain_client_validate(1549) Ja...
2012 May 29
2
use xyplot to plot mean and CI by groups
...,'trt')], FUN = mean) src$sd <- ave(src$x, src[c('time','trt')], FUN = sd) src$n <- ave(src$x, src[c('time','trt')], FUN = length) src <- transform(src, se = sd/sqrt(n)) src <- transform(src, cl=m-se, cu=m+se) prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { x <- as.numeric(x) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE)) } panel.ci <- function(x, y, ly, my, uy, subscripts, ...) { x <- as.numeric(x); y <- as.numeric(y);...
2007 Nov 15
1
Equal confidence interval arrowhead lengths across multiple-paneled lattice plots with free y-scales
..., "Site2"), times = c(6,6)), "Species" = rep(c("A", "B"), 6) ) #change scale for Site 1 summTable[1:6,2]<-100*summTable[1:6,2] #arbitrary confidence intervals summTable<-cbind(summTable, "ly" = (summTable$Y*(.98)), "uy" = (summTable$Y*1.02) ) #panel plotting panel.func<-function(x,y,ly,uy,subscripts,...){ ly<-as.numeric(ly)[subscripts] uy<-as.numeric(uy)[subscripts] panel.arrows(x,ly,x,uy, unit = "native", angle = 90, length = .25, code =...
2003 Aug 21
2
levelplot behaviour for panel with constants
In the example: x = rep(c(0,0,1,1),4) y = rep(c(0,1,0,1),4) z = c(1,0,1,0,0,0,1,1,0,1,0,0,1,1,1,1) f = as.factor(c(rep("a",4),rep("b",4),rep("c",4),rep("d",4))) levelplot(z~x+y|f,data.frame(x=x,y=y,z=z,f=f)) I noted that the last ("d") plot remains empty. I guess the reason for this is that the values are constant (1), but I consider it more
2011 Aug 04
0
error bar plot with log scale in lattice
...9;m trying to modify the code to a log scale for y-axis from the post http://tolstoy.newcastle.edu.au/R/help/06/06/28612.html However, the error bar did not change accordingly. The following is the code I used based on the singer.ucl data. Thanks in advance! prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { y <- as.numeric(y) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE),y=list(log=10)) } panel.ci <- function(x, y, ly, uy, subscripts, pch = 16, col.line = 'black', ...) { x <- as....
2012 Jan 23
2
Samba 4 member of AD, help
...ng a samba 4 alpha 17 box to our domain as a DC so I can "drain" the domain info and use the linux box to test samba without disturbing the domain itself. The thing is that I get an error when trying to join the server : [root at vpdc samba]# bin/samba-tool domain join montecarlotv.com.uy DC -Uadministrador --realm=montecarlotv.com.uy Finding a writeable DC for domain 'montecarlotv.com.uy' Found DC srv-mm.montecarlotv.com.uy Password for [WORKGROUP\administrador]: workgroup is CANAL4 realm is montecarlotv.com.uy checking samaccountname Adding CN=VPDC,OU=Domain Controllers,DC...
2008 Jun 16
0
Error bars within xyplot, panel = function(x,y, ....)
...ar.settings = list(superpose.line = list(lty = c(1,5), col=c('black', 'black') ) ) ) ## this code uses the functions provided by Deepayan Sarkar to include the ## error bars for the same data: xyplot(Y ~ Hr, groups=DRUG, data=data, ly = data$lower, uy = data$upper, prepanel = prepanel.ci, panel = panel.superpose, panel.groups = panel.ci, type="b", auto.key = list(space = "top", text = c( "D","P"), points = FALSE, lines = TRUE, columns=2), par.settings = list(superpo...
2007 Dec 05
1
confint for coefficients from lm model (PR#10496)
...lt;- data.frame(x=rep(0,10), u=factor(sample(c("Y", "N"), 10, replace=T))) The response: > ans <- as.integer(junk$u) + rnorm(10) and the model: > junk.model <- lm(ans ~ junk$x + junk$u) 3 coefficients: > coefficients(junk.model) (Intercept) junk$x junk$uY 0.6808802 NA 1.5912192 and a 2x2 variance (X^tX)^-1: > vcov(junk.model) (Intercept) junk$uY (Intercept) 0.09905378 -0.09905378 junk$uY -0.09905378 0.19810756 result in no confidence interval for the third term: > confint(junk.model) 2...
2010 Feb 20
3
Error Bars in lattice- barcharts
...009", "28/08/2009", "28/08/2009") err.split <- with(err, split(temp, list(depth,section, err.date))) #I've tried to alter the panel function according to the thread to produce vertical error bars in my barcharts prepanel.ci <- function(x, y, ly, uy, subscripts, ...) { y <- as.numeric(y) ly <- as.numeric(ly[subscripts]) uy <- as.numeric(uy[subscripts]) list(ylim = range(y, uy, ly, finite = TRUE)) } panel.ci <- function(x, y, lx, ux, subscripts, pch = 16, ...) { x <- as.numeric(x)...
2012 May 23
1
Can't join samba4 as domain controller
Hi, I'm trying to join samba 4 alpha 20 to my windows 2003 AD domain and I get this error: Adding SPNs to CN=SAMBADC1,OU=Domain Controllers,DC=montecarlotv,DC=com,DC=uy Setting account password for SAMBADC1$ Enabling account Calling bare provision Join failed - cleaning up checking sAMAccountName Deleted CN=SAMBADC1,OU=Domain Controllers,DC=montecarlotv,DC=com,DC=uy Deleted CN=NTDS Settings,CN=SAMBADC1,CN=Servers,CN=Nombre-predeterminado-primer-sitio,CN=Sites,CN=C...
2020 Apr 17
3
Convertir lista de precios a dolares por gramo
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20200417/11369880/attachment.html>
2013 Jul 08
1
Centos 6 + Samba 4 + Memeber server of AD 2008
Hi, I am trying to add a fresh install Centos 6 to a Windows 2008 AD like a member I follow this steps: Yum install samba 4* Then I modify smb.conf, krb5.conf and nsswitch.conf like this Smb.conf [global] workgroup = ESPECTADOR security = ADS realm = ESPECTADOR.COM.UY encrypt passwords = yes password server = serv1 idmap config *:backend = tdb idmap config *:range = 10000-20000 idmap config ESPECTADOR:backend = ad idmap config ESPECTADOR:schema_mode = rfc2307 idmap config ESPECTADOR:range = 100000-200000 winbind nss info = rfc2307 win...
2008 Jul 03
1
Security tab is no longer available in Windows clients.
...ick any local file. The clients are running Windows XP Professional SP2 and the Samba server is being running on a Solaris 10 system. The system is already using ACL. Any suggestion?! Greetings. -- Miguel Da Silva Administrador Junior de Sistemas Unix Centro de Matem?tica - http://www.cmat.edu.uy Facultad de Ciencias - http://www.fcien.edu.uy Universidad de la Rep?blica - http://www.rau.edu.uy