Package ubic.basecode.math.linearmodels
Class AnovaEffect
- java.lang.Object
-
- ubic.basecode.math.linearmodels.AnovaEffect
-
- All Implemented Interfaces:
Serializable
public class AnovaEffect extends Object implements Serializable
Represents one row of an ANOVA table- Author:
- paul
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AnovaEffect(String effectName, double pValue, double fStat, double dof, double ssQ, boolean isInteraction, boolean isResiduals)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDof()StringgetEffectName()doublegetFStat()doublegetMeanSq()doublegetPValue()doublegetSsQ()booleanisInteraction()booleanisResiduals()StringtoString()
-
-
-
Constructor Detail
-
AnovaEffect
public AnovaEffect(String effectName, double pValue, double fStat, double dof, double ssQ, boolean isInteraction, boolean isResiduals)
-
-
Method Detail
-
getDof
public double getDof()
- Returns:
- the degreesOfFreedom
-
getEffectName
public String getEffectName()
- Returns:
- the effectName
-
getFStat
public double getFStat()
- Returns:
- the fStatistic
-
getMeanSq
public double getMeanSq()
- Returns:
- the meanSq
-
getPValue
public double getPValue()
- Returns:
- the pValue
-
getSsQ
public double getSsQ()
- Returns:
- the ssQ
-
isInteraction
public boolean isInteraction()
- Returns:
- the isInteraction
-
isResiduals
public boolean isResiduals()
-
-