I want to extract the fstatistic value from summary(lm()). So far the only way I've found is
summary(lm(this_vector ~ that_vector))["fstatistic"][[1]][1]
Is there a less verbose way to get that cell value? The question is a bit pedantic but I thought the answer might provide some interesting info on how to use R lists.