search for: ummary

Displaying 3 results from an estimated 3 matches for "ummary".

Did you mean: summary
2006 Oct 14
1
commands overwritten
...I don't need to write commands again, and I can modify the command by inserting/deleting/re-writing the command. Today, suddenly, re-writing change the commands as the "insert" function does in Word. for example - if I am standing in the middle of >model<-glm(seeds~RIL+height); summary(model) trying to re-write it to >model<-glm(seeds~(RIL+height)^2); summary(model) I get instead >model<-glm(seeds~(IL+height)^2)ummary(model) How can I get rid of this awkwardiness? (YES, I tried already to hit "insert" key....) Thanks, Yuval
2010 Mar 19
0
Different results from survreg with version 2.6.1 and 2.10.1
...---------------------------------------------------------------- Dear all I'm using survreg command in package survival. sur2=survreg(Surv((levetid-364),status==2)~vekt.ind,control=list(maxiter=50),data=ord.mfr) When using R version 2.6.1 (2007-11-26) i386-pc-mingw32 I get this result summary(sur2) Call: survreg(formula = Surv((levetid - 364), status == 2) ~ malder + faar + gest + vekt.ind, data = ord.mfr, control = list(maxiter = 50)) Value Std. Error z p (Intercept) 1.49e+01 1.73105 8.5993 8.02e-18 malder 9.22e-02 0.01955 4.7178 2.38e-06 f...
2011 Oct 18
1
problem in exceuting PLS
...taset$X=NULL len=length(variable) for( i in 1:len) { var=variable[i] if(i==1) { dataset$X=as.matrix(Data[var]) } if(i>1) { dataset$X=as.matrix(cbind(dataset$X,Data[var])) } } depVar="Y" dataset$Y=as.matrix(cbind(Data[depVar])) pls1=mvr(Y~X,data=dataset,ncomp=4) summary(pls1) On execution the error is Error in get(as.character(FUN), mode = "function", envir = envir) : object 'X6' of mode 'function' was not found Please help me on this -- View this message in context: http://r.789695.n4.nabble.com/problem-in-exceuting-PLS-tp3914664p...