pFromF {rrMisc} | R Documentation |
Calculate p-values from F-statistics.
pFromF(f_value = 1.96, df1 = 10, df2 = 10, two.sided = FALSE)
f_value |
The f-statistics to be converted into a p-Value. |
df1, df2 |
Degrees of freedom in F-statistics. |
two.sided |
Indicator of the statistics be calculatede as two-sided (TURE) or one-sided (FALSE). |
utility function for conversion of p-values
corresponding p-Value from the t-, z- or F-statistics
Roland Rapold
Link{pFromT}
and Link{pFromZ}
pFromF(f_value=35.68, df1=2, df2=5) pFromF(f_value=35.68, df1=2, df2=5, two.sided=TRUE) pFromF(f_value= 1.96, df1=10, df2=10) pFromF(f_value= 1.96, df1=10, df2=100) pFromF(f_value= 1.96, df1=10, df2=1000) pFromF(f_value= 1.96, df1=10, df2=1000, two.sided=TRUE) pFromF(f_value= 1.96, df1=10, df2=1000, two.sided=TRUE)