Skip to content

newbie question on str output

3 messages · Laura Smith, David Winsemius, Dieter Menne

#
On Dec 16, 2010, at 11:10 PM, Laura Smith wrote:

            
Per its help page:

help(CO2, package=datasets)

... the answer is probably in Pinheiro, J. C. and Bates, D. M. (2000)  
Mixed-effects Models in S and S-PLUS, Springer. Some datasets and  
packages are really support material for textbooks, and this appears  
to be one such case.
Read the help page?

Do this:

??CO2
#
Laura Smith wrote:
??nfnGroupedData (not nfnGroupdata) gives some information, and tells you,
that it is related to package nlme. This package is one of the most useful
and has a good documenting book (Pinheiro/Bates), but the groupedData
concept is more confusing than helpful. I only started to understand lme and
friend until I had noted that it works without grouped data.

So better consider CO2 a simple data frame of example data, with historical
decoration. I suggest you start with 

CO2 <- as.data.frame(CO2)

Dieter