Public Member Functions | |
KruskalWallisGroupsCollection () | |
Constructs an empty KruskalWallisGroupsCollection. | |
KruskalWallisGroupsCollection (List< Group > groups) | |
Constructs a KruskalWallisGroupsCollection from a list of Group objects. | |
override void | Add (Group group) |
Adds a Group to the KruskalWallisGroupsCollection. | |
Int32 | N () |
Returns the number of elements in all the Group objects in the KruskalWallisGroupsCollection. | |
NUMBER | H () |
Returns the H statistic for the KruskalWallisGroupsCollection. | |
Int32 | DegreesOfFreedom () |
Returns the degrees of freedom for the KruskalWallisGroupsCollection. | |
NUMBER | p () |
Returns the probability p associated with the KruskalWallisGroupsCollection. | |
Public Attributes | |
NUMBER[] | R |
Array of values representing the sum of the ranks for each Group in the KruskalWallisGroupsCollection. |
See generally Stanton A. Glantz, Primer of Biostatistics ch. 10 (6th ed. 2005); Jerrold H. Zar, Biostatistical Analysis ch. 10 (5th ed. 2010 [sic]).
Definition at line 16 of file KruskalWallisGroupsCollection.cs.
StephenAshley.Biostatistics.KruskalWallisGroupsCollection.KruskalWallisGroupsCollection | ( | ) |
Constructs an empty KruskalWallisGroupsCollection.
Definition at line 21 of file KruskalWallisGroupsCollection.cs.
StephenAshley.Biostatistics.KruskalWallisGroupsCollection.KruskalWallisGroupsCollection | ( | List< Group > | groups | ) |
Constructs a KruskalWallisGroupsCollection from a list of Group objects.
groups | The list of Group objects. |
Definition at line 28 of file KruskalWallisGroupsCollection.cs.
override void StephenAshley.Biostatistics.KruskalWallisGroupsCollection.Add | ( | Group | group | ) | [virtual] |
Adds a Group to the KruskalWallisGroupsCollection.
group | The Group. |
BiostatisticsException | • the Group is a null reference, • addition of a Group for a full KruskalWallisGroupsCollection, or • the Group has no members. |
Reimplemented from StephenAshley.Biostatistics.GroupsCollection.
Definition at line 39 of file KruskalWallisGroupsCollection.cs.
Int32 StephenAshley.Biostatistics.KruskalWallisGroupsCollection.DegreesOfFreedom | ( | ) |
Returns the degrees of freedom for the KruskalWallisGroupsCollection.
Definition at line 152 of file KruskalWallisGroupsCollection.cs.
NUMBER StephenAshley.Biostatistics.KruskalWallisGroupsCollection.H | ( | ) |
Returns the H statistic for the KruskalWallisGroupsCollection.
Definition at line 146 of file KruskalWallisGroupsCollection.cs.
Int32 StephenAshley.Biostatistics.KruskalWallisGroupsCollection.N | ( | ) |
Returns the number of elements in all the Group objects in the KruskalWallisGroupsCollection.
Definition at line 140 of file KruskalWallisGroupsCollection.cs.
NUMBER StephenAshley.Biostatistics.KruskalWallisGroupsCollection.p | ( | ) |
Returns the probability p associated with the KruskalWallisGroupsCollection.
Definition at line 159 of file KruskalWallisGroupsCollection.cs.
Array of values representing the sum of the ranks for each Group in the KruskalWallisGroupsCollection.
Definition at line 174 of file KruskalWallisGroupsCollection.cs.