search for: upfmla

Displaying 2 results from an estimated 2 matches for "upfmla".

Did you mean: fmla
2007 Dec 27
1
Error: cannot allocate vector of size ... Bcc: Add Cc | Add Bcc
I read the subject message in a number of R archived emails. Since I am experiencing the same problem: > upfmla A ~ T + cosP + cos2P + cos4P + cos5P + sin3P + sin5P + cosP2 + sinP3 + P2 > glmod <- gls(upfmla,correlation=corAR1(),method="ML") Error: cannot allocate vector of size 491.3 Mb > dim(xx) [1] 8025 14 and since I'm running R on a 64-bit Linux platform ... I wonder wheth...
2007 Dec 28
1
two plots on the same page
I'd like to know why I cannot get a plot and the QQnorm in the same sheet. The commands are simple but: library(nlme) glmod1 <- gls(upfmla,correlation=corAR1(),method="ML") summary(glmod1) par(mfrow = c(2,1)) plot(glmod1, main="GLS Residuals vs. GLS Fitted") qqnorm(glmod1) No matter what (I tried different permutations of the plotting commands) the second drawing is overlapped to the first one instead of being...