Full_Name: René Locher Version: Version 2.3.1 (2006-06-01) OS: i386, mingw32 Submission from: (NULL) (160.85.104.70)
The problem seems to occur only, when you want to plot a vector containing a NA value at position 2 and the plotting type is "s" or "S". ## start of code O3<-c(0.8,NA,0.7,1.1,0.9,5.5,1.3,1,1.2) ## The following error is reported with the two commands below: ## Error in plot.xy(xy, type, ...) : unable to allocate memory (in GPolygon) plot(O3,type="s") plot(O3,type="S") ## The following commands work without problems plot(O3,type="l") plot(c(0.6, O3),type="s") plot(c(0.4,0.6, O3),type="s") plot(O3[2:length(O3)], type="s") ## end of code Kind regards René ______________________________________________ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel