similar to: Bug with OpenSSH and Crontab under Solaris 8

Displaying 20 results from an estimated 900 matches similar to: "Bug with OpenSSH and Crontab under Solaris 8"

2004 Jul 27
0
computing differences between consecutive vectorelements
well, sure diff() does it thanks alot Thomas > -----Message d'origine----- > De: Liaw, Andy [mailto:andy_liaw at merck.com] > Date: mardi 27 juillet 2004 16:50 > ??: 'Dewez Thomas'; 'r-help at stat.math.ethz.ch' > Objet: RE: [R] computing differences between consecutive > vectorelements > > > Not exactly sure what you want, but seems like you can
2015 Apr 30
2
predict nlme
Estimado Oliver Nuñez Envío un ejemplo reproducible. Javier Marcuzzi # de donde tomo datos, y tiene el modelo (en el pdf) library(MCMCglmm) # librería con las funciónes que voy a usar library(nlme) datos0<-ChickWeight # creo algunos datos que agrego a los origonales Factor<-as.numeric(datos0$Chick) Factor[Factor > 0 & Factor <= 10] <- 'A' Factor[Factor > 10
2011 Jan 20
1
Inverse Prediction with splines
Hello, I have fit a simple spline model to the following data. Data x y 0 1.298 2 0.605 3 0.507 4 0.399 5 0.281 6 0.203 7 0.150 8 0.101 Model Sp.1=lm(y~bs(x,df=4)) Now I wish to inverse predict the x for y=.75, say. Optimize works fine for a polynomial but I can figure out how to get the spline model into the function argument. Can anyone help me out. Thanks!! Jeff Jeff Morris Sanofi
2004 Jul 27
2
computing differences between consecutive vector elements
Dear R-users, I am a newbie to R so please excuse this naive question for which I couldn't seem to find online answers. I have this data frame containing a series of locations through time (x,y,z,t). I would like to compute the difference in x, y and z between t-1 and t. Sounds easy enough, but how on earth does one loop through vector elements and compute this difference? Thanks Thomas
2011 Jul 05
2
Many "Error: Corrupted index cache file /XXX/dovecot.index.cache: invalid record size"
Hi all, I just joigned this list, so I'm sorry if this problem has already been reported. I'm running Dovecot 2.0.13 on many servers, one for POP/IMAP access, others for LDA, others for authentification only, etc. All servers are accessing a shared file system, based on MooseFS (www.moosefs.org). The FS is mounted using FUSE. All my Dovecot servers have this configuration :
2010 Aug 19
1
Adding lines to xyplot with abline
Is it kosher to add, say, horizontal lines to a lattice xyplot using abline(h=xxx)? The lines don't appear at the right value, that is, if h=150, the line might appear at h=140? Jeff This communication, including any attachments, is intended solely for the use of the addressee and may contain information which is privileged, confidential, exempt from disclosure under applicable law or
2013 Mar 11
0
compiling imap
HI I have a problem compiling asterisk with imap When I enter this command *sudo ./configure --with-imap=/usr/src/asterisk-complete/thirdparty/imap-2007f/* * * at the end I allways receive this error *asterisk the IMAP TK installation appears to be missing or broken* * * i have looked a lot in the internet but I still cannot find the answer * * [image: dagoberto_ramirez]
2004 Aug 02
0
averaging 3D datasets
Dear R-users, I've spent most of the day reading R documentation at length but couldn't find something perhaps obvious. I have a dataset made of 3 morphometric variables for a series of watershed [log(slope); log(drainage_area); distance_to_outlet] My aim is to predict the value of log(slope) for pairs of [drainage_area; distance_to_outlet] (sounds like a plain linear model fitting,
2012 Aug 08
1
Wilcoxon test
Dear list, I am facing a problem in my statistical analyses on R. My experiments are about plants, I record there growth after each cutting (every 3 weeks). 'BC' is for the plant, and '1' to '5' is the time of cutting and recording. The data and R script are : "" BourdCoup <- c(21, 7.2, 9.2, 0, 8.52, 14.7, 8.31, 6.2, 127.05, 115.2, 100.7, 24, 162.64, 136.8,
2003 Oct 30
1
$ in domain name, Samba 2.2.8a
> -----Original Message----- > From: Gerald (Jerry) Carter [mailto:jerry@samba.org] > Sent: Wednesday, October 01, 2003 11:49 AM > To: Stuckless, Colin 709 778-3815 > Cc: Andrew Bartlett; 'samba@lists.samba.org' > Subject: Re: [Samba] $ in domain name, Samba 2.2.8a > > Andrew Bartlett wrote: > > | Yes, we are stripping it out for security reasons. The >
2008 Jul 04
1
Calling and running a compiled program inside R
Hi, I need to use the outputs from a complied program (*.exe program that is made by some one else) for numerous data sets and use R with the outputs for some computations. I thought that it would be very efficient if I can use R from the beginning to the end by calling the exe program and run it within R, continuing the computations based on the outputs. Are there any calling function for
2008 Nov 20
1
About continuity correction option in the mantelhaen.test function.
Hello, I was using the mantelhaen.test function (2x2 J tables for conditional independence testing). I noticed that the option for the continuity correction (correction=T or correction=F) sometimes made a difference while sometimes it did give the same results regardless of correction=T or correction=F. Does the continuity correction apply only in certain cases or in certain strata with some
2005 Jul 21
4
Executable 'username map'
Hi, I currently manage an environment where my Unix and Windows usernames are defined, but different. So, I must use a username map. But I have several Samba servers (one for each NFS package) and I must maintain all these username map files. As we want everybody to map the same way on every Samba servers in a NIS domain, we added the 'Windows user' information to the NIS
2009 Sep 28
0
question on a warning(?) message from glm poisson regression
Hello, I got the following message after fitting the poisson regression using the glm function. Are the results (coefficient estimates, their stderr, deviance, predicted values...) reliable? Can I still go on and interpret them? How much caution should I exercise for these results with this message? ########## > mmm6 <-glm(freq~x+y+x.2+y.2+x.3+y.3+x.4+y.4+x.5+y.5+x.6+y.6+xy
2015 Apr 30
2
predict nlme
Estimados Tengo un error que me desconcierta, es un código que simplifiqué de otro trabajo donde no hay problemas, sin embargo me da un error. Una diferencia es que en mi otro trabajo uso spline y ahora polinomio, este es de segundo grado y se encuentra tanto en efectos fijos como aleatorios, el modelo es correcto, corre con MCMCglmm pero no con nlme. grid <- expand.grid(Tiempo=4:6,
2007 Sep 25
1
Score test in logistic regression in R
Hello, I am wondering if R has any ways to conduct the score test in logistic regression? Could you let me know please? Thanks, Insu -------------------------------------------------- This e-mail and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended, even if addressed incorrectly. If you
2005 May 19
2
R matrix sorting question
Dear there, I am trying to do the following stuff. Could you let me know how to do it efficiently? > aaa [,1] [,2] [1,] 1 -0.2 [2,] 3 0.8 [3,] 4 0.3 [4,] 5 0.2 [5,] 7 0.9 And I would like to sort the matrix by column 2 (and accordingly column 1 sorted as well). The desired matrix will be 1 -0.2 5 0.2 4 0.3 3 0.8 7 0.9 If using Excel or SAS, I can
2004 Jul 28
5
using Rterm under cygwin, no possiblity to delete characters
Dear R-users, When I call Rterm from cygwin, I have no options but typing the exact syntax the first time. If I happen to hit the "delete" key (backspace), R dies when I press enter saying : Error: ... (error concerning the function on the last line of text) Execution halted Perhaps some of you have experienced this and found work arounds? One has to be pretty good to type without
2001 Sep 05
1
spam on R lists --> refuse mail??
We get caught occasionally, and we all receive spam; sorry for the last one (on R-help). Of course, there will never be a 100% sure prevention... Question is what should happen when mail from R-help to an adressee is refused with the following message : At least I won't be able to easily send e-mail to them {and am not willing to use a non-easy way}.... ----- Transcript of session
2008 Oct 23
1
join fails samba 3.2 & ADS 2003R2 SP2
Hi, SLES10 SP2 x86_64 + Samba from repo (samba-3.2.4-8.1) When I try to join (net ads join -U Administrator), I get : Failed to join domain: failed to set machine spn: Can't contact LDAP server My Pre-2000 domain name is CLSC_COTENEIGES My DNS ADS name is clsccdn.rtss.qc.ca DNS is ok, I've created an A/PTR record for linux box, ADS seems ok also (netdiag/dcdiag) i've tryied adding