On 21 March 2010 13:13, Iurie Malai <iurie.ma...@gmail.com> wrote:
> To calculate Levene's Test for Homogeneity of Variance I use R Commander,
> and this is the output:
>
>> levene.test(Dataset$age, Dataset$sex)
> Levene's Test for Homogeneity of Variance
>      Df F value Pr(>F)
> group  1  0.8739 0.3567
>      33
>
> I am not sure what means "Pr(>F)"? Can anyone explain/translate this?


this is shorthand for:
> 1 - pf(0.8739, 1 ,33)
[1] 0.3567

see:
?pf

Philippe

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to