I know that my question is like a very newbie question, but at the moment I stacked with it and I need a quick solution. I need to make an overall statistical overview of various datasets, the summary() and numSummary() functions are fully sufficient. My question is, how can I export results to a spreadsheet-like file, as a .csv. For the summary() with an "x" dataset I can use this way:
su <- summary(x) write.csv(su, file = "summary.csv") The problem with this is that the csv file is rather chaotic. but when I apply the same for the numSummary(x) output like: nsu <- numSummary(x[,c("a", "b", "c")], statistics=c("mean", "sd", "quantiles"), quantiles=c(0,.25,.5,.75,1)) write.csv(nsu, file = "numsummary.csv") I get the "ERROR: cannot coerce class "numSummary" into a data.frame" message. Is there a more convenient way to get a spreadsheet-like output for the basic statistics? Many thanks for any help Tomas ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.