Package unifeat.util
Class CriticalValue
java.lang.Object
unifeat.util.CriticalValue
This java class is used to display various critical values of the table.
The critical values are provided for the 0.01, 0.05, and 0.10 significant
levels.
The critical values are provided for F(df1
, df2
),
where the values of df1
is in the interval [1,20] and the values
of df2
is in the interval [1,100].
- Author:
- Sina Tabakhi
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic double
FDistributionValue
(int df1, int df2, double sigValue) This method return the critical value of the table according to thedf1
anddf2
degrees of freedom for the significant levelsigValues
.
-
Constructor Details
-
CriticalValue
public CriticalValue()
-
-
Method Details
-
FDistributionValue
public static double FDistributionValue(int df1, int df2, double sigValue) This method return the critical value of the table according to thedf1
anddf2
degrees of freedom for the significant levelsigValues
.- Parameters:
df1
- the first degree of freedomdf2
- the second degree of freedomsigValue
- the significant level values- Returns:
- the critical value of the table
-