Re: [R] Help with reading information of "summary"-Object

2010-05-13 Thread Phil Spector
Tino - When you call summary for an lm object, the function that actually gets called is "summary.lm". This function has a help page, and, if you type ?summary.lm and look at the "Value" section, you'll see the following: coefficients: a p x 4 matrix with columns for the estimated

Re: [R] Help with reading information of "summary"-Object

2010-05-13 Thread Erik Iverson
Hello, Tino Schöllhorn wrote: Hi, I am quite new to R - but quite expierience in programming. Welcome to R! It's easiest if you give reproducible examples so we can help you. You can include code to create objects, or use the ?dput function. Nonetheles I have some problemes in access

[R] Help with reading information of "summary"-Object

2010-05-13 Thread Tino Schöllhorn
Hi, I am quite new to R - but quite expierience in programming. Nonetheless I have some problemes in accessing information of the "summary" object. Here is what I do: model <- lm ( y ~ myVariable ) "summary(model)" gives me an object which has a lot of information about the regression. Now