Package gov.nih.mipav.model.algorithms
Class StatisticsTable
java.lang.Object
gov.nih.mipav.model.algorithms.StatisticsTable
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionBuilds the t-statistic table, first numerical row is list of significant values, subsequent rows are the t-statistic values for incremental degrees of freedom.static DoublegetOneTailInvTStatsitic(int dof, double significance) Finds the value of the one-tail t-statistic that produces the given level of significance for the given number of degrees of freedom.static DoublegetTwoTailInvTStatsitic(int dof, double significance) Finds the value of the two-tail t-statistic that produces the given level of significance for the given number of degrees of freedom.
-
Field Details
-
tTable
t-statistics table
-
-
Constructor Details
-
StatisticsTable
public StatisticsTable()
-
-
Method Details
-
getTwoTailInvTStatsitic
Finds the value of the two-tail t-statistic that produces the given level of significance for the given number of degrees of freedom.- Parameters:
dof- degrees of freedomsignificance- sig level- Returns:
- t-statistic value
-
getOneTailInvTStatsitic
Finds the value of the one-tail t-statistic that produces the given level of significance for the given number of degrees of freedom.- Parameters:
dof- degrees of freedomsignificance- sig level- Returns:
- t-statistic value
-
buildTinvTable
Builds the t-statistic table, first numerical row is list of significant values, subsequent rows are the t-statistic values for incremental degrees of freedom.
-