[R] Extracting the p of F statistics from lm
Michael Kubovy
kubovy at virginia.edu
Sat Mar 10 01:22:28 CET 2007
On Mar 9, 2007, at 11:18 AM, Cressoni, Massimo ((NIH/NHLBI)) [F] wrote:
> I need to extract the p value from a ANOVA done with lm model
>
> fitting <- lm(var ~ group)
> Sfitting <- summary(fitting)
>
> Sfitting[10][1] gives the F value and the degrees of freedom but I
> am not able to get the
> p value.
try
Sfitting[4]$coefficients[,4]
I'm not sure that this is the best way, but it works with the example
for lm()
> summary(lm.D9)[4]$coefficients[,4]
# (Intercept) groupTrt
# 9.547128e-15 2.490232e-01
_____________________________
Professor Michael Kubovy
University of Virginia
Department of Psychology
USPS: P.O.Box 400400 Charlottesville, VA 22904-4400
Parcels: Room 102 Gilmer Hall
McCormick Road Charlottesville, VA 22903
Office: B011 +1-434-982-4729
Lab: B019 +1-434-982-4751
Fax: +1-434-982-4766
WWW: http://www.people.virginia.edu/~mk9y/
More information about the R-help
mailing list