Re: [R] graphics or table

2013-11-11 Thread Jeff Newmiller
Your code is messed up because you posted in HTML. Also, it is not reproducible (e.g. no sample data, incomplete analysis code). (See http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example for more on reproducibility.) Also, this looks very much like homework and t

[R] graphics or table

2013-11-11 Thread Enzo Cocca
hi I have this code for a cross validation: >res <- as.data.frame(CV_Pb_var)$residual> sqrt(mean(res^2))> >mean(res)> mean(res^2/as.data.frame(CV_Pb_var)$var1.var) I can not seem to export everything in one table also can I to be exported it graphically? thanks enzo --