I swear, I didn't touch it! I can't fit GLM's anymore, and I can't make it talk english (for googling the error messages) anymore.> y <- c(1,1,0,1,0,1) > x <- c(2,7,3,5,2,4) > glm(y~x, binomial)Fehler in runif(length(pi)) : Element 1 ist leer; Der Teil der Argumentliste 'length' der berechnet wurde war: (pi)> Sys.setenv(LANG="EN") > glm(y~x, binomial)Fehler in runif(length(pi)) : Element 1 ist leer; Der Teil der Argumentliste 'length' der berechnet wurde war: (pi) I may suffer from sleep deprivation and minor confusion... maybe. But this is just weird and I can't explain it. I run R from Emacs/ESS, if that matters. Any help would be appreciated! -- Alex
Check whether x, y, or glm have been redefined. If not, restart R. D. -- View this message in context: http://r.789695.n4.nabble.com/I-think-I-just-broke-R-tp3422737p3422932.html Sent from the R help mailing list archive at Nabble.com.
> >> and time to upgrade R > > I'm still fighting to find out how to upgrade stuff on Ubuntu. After > a > repository update the newest available version was still 2.10.1. > I'll figure it out, sooner or later :) >That's simple. Just add $deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu maverick/ to /etc/apt/sources.list (or whatever Ubuntu version you use) and type $sudo aptitude update $sudo aptitude safe-upgrade See http://cran.r-project.org/bin/linux/ubuntu/ Regards