This problem comes from easier problem which I managed to solve myself. So here is my original question.
In my data I have lots of categories, but i'm not interested in estimating coefficients for all of them, I just want to test the hypothesis, that there is no difference in categories. And calling summary
on my object produces most information that I don't need for my report.
set.seed(42)
dat <- data.frame(cat=factor(sample(1:10, 100, replace=T)), y=rnorm(100))
l1 <- lm(y~cat-1, data=dat)
summary(l1)
How do I extract only the last line from call to summary(l1)
?
In this particular case I can just used anova
function
anova(l1)
and got only the info that I needed, just in different formatting than summary(l1)
produces.
What if I have some kind of a summary on an object and I want to extract just particular part of summary(object)
how do I do that? For example, how do I get R
to print only the line of call summary(l1)
?
p.s. I am aware of summary(l1)$fstatistic
.