
Public Member Functions | |
| GroupsCollection () | |
| Constructs an empty GroupsCollection. | |
| GroupsCollection (List< Group > lstGroups) | |
| Creates a GroupsCollection from a List of Groups. | |
| virtual void | Add (Group group) |
| Adds a Group to the GroupsCollection. | |
| virtual void | AddRange (List< Group > groups) |
| Adds a list of Group objects to the GroupsCollection. | |
| IEnumerator | GetEnumerator () |
| Returns an enumerator that iterates through the GroupsCollection. | |
| Int32 | k () |
| Returns the number of elements actually contained in the GroupsCollection. | |
| Int32 | nTotal () |
| Returns the total number of elements in all the Group objects in the GroupsCollection. | |
| NUMBER | MeanTotal () |
| Returns the mean of all the members of all the Group objects in the GroupsCollection. | |
| NUMBER | SumTotal () |
| Returns the sum of all the members of all the Group objects in the GroupsCollection. | |
Protected Attributes | |
| Group[] | groupsArray |
| Contains the Group objects that comprise the GroupsCollection. | |
Properties | |
| Group | this [int index] [get, set] |
| Gets or sets the value at the specified index. | |
Definition at line 13 of file GroupsCollection.cs.
| StephenAshley.Biostatistics.GroupsCollection.GroupsCollection | ( | ) |
| StephenAshley.Biostatistics.GroupsCollection.GroupsCollection | ( | List< Group > | lstGroups | ) |
Creates a GroupsCollection from a List of Groups.
| lstGroups | The Groups. |
| Biostatistics | lstGroups is null. |
Definition at line 52 of file GroupsCollection.cs.
| virtual void StephenAshley.Biostatistics.GroupsCollection.Add | ( | Group | group | ) | [virtual] |
Adds a Group to the GroupsCollection.
| group | A Group. |
| BiostatisticsException | group is a null reference. |
Reimplemented in StephenAshley.Biostatistics.ANOVAGroupsCollection, StephenAshley.Biostatistics.CochranQGroupsCollection, StephenAshley.Biostatistics.CorrelationRegressionGroupsCollection, StephenAshley.Biostatistics.FriedmanGroupsCollection, StephenAshley.Biostatistics.KruskalWallisGroupsCollection, StephenAshley.Biostatistics.MannWhitneyGroupsCollection, StephenAshley.Biostatistics.PairedT_TestGroupsCollection, StephenAshley.Biostatistics.RepeatedMeasuresANOVAGroupsCollection, StephenAshley.Biostatistics.SpearmanRankSumGroupsCollection, StephenAshley.Biostatistics.T_TestGroupsCollection, and StephenAshley.Biostatistics.WilcoxonGroupsCollection.
Definition at line 71 of file GroupsCollection.cs.
| virtual void StephenAshley.Biostatistics.GroupsCollection.AddRange | ( | List< Group > | groups | ) | [virtual] |
Adds a list of Group objects to the GroupsCollection.
| groups | A list of Group objects. |
| BiostatisticsException | groups is null. |
Reimplemented in StephenAshley.Biostatistics.ANOVAGroupsCollection, StephenAshley.Biostatistics.CorrelationRegressionGroupsCollection, StephenAshley.Biostatistics.MannWhitneyGroupsCollection, StephenAshley.Biostatistics.PairedT_TestGroupsCollection, StephenAshley.Biostatistics.RepeatedMeasuresANOVAGroupsCollection, StephenAshley.Biostatistics.SpearmanRankSumGroupsCollection, and StephenAshley.Biostatistics.T_TestGroupsCollection.
Definition at line 98 of file GroupsCollection.cs.
| IEnumerator StephenAshley.Biostatistics.GroupsCollection.GetEnumerator | ( | ) |
Returns an enumerator that iterates through the GroupsCollection.
Definition at line 116 of file GroupsCollection.cs.
| Int32 StephenAshley.Biostatistics.GroupsCollection.k | ( | ) |
Returns the number of elements actually contained in the GroupsCollection.
Definition at line 127 of file GroupsCollection.cs.
| NUMBER StephenAshley.Biostatistics.GroupsCollection.MeanTotal | ( | ) |
Returns the mean of all the members of all the Group objects in the GroupsCollection.
| BiostatisticsException | the GroupsCollection contains no elements. |
Definition at line 153 of file GroupsCollection.cs.
| Int32 StephenAshley.Biostatistics.GroupsCollection.nTotal | ( | ) |
Returns the total number of elements in all the Group objects in the GroupsCollection.
Definition at line 141 of file GroupsCollection.cs.
| NUMBER StephenAshley.Biostatistics.GroupsCollection.SumTotal | ( | ) |
Returns the sum of all the members of all the Group objects in the GroupsCollection.
Definition at line 160 of file GroupsCollection.cs.
Group [] StephenAshley.Biostatistics.GroupsCollection.groupsArray [protected] |
Contains the Group objects that comprise the GroupsCollection.
Definition at line 19 of file GroupsCollection.cs.
Group StephenAshley.Biostatistics.GroupsCollection.this[int index] [get, set] |
Gets or sets the value at the specified index.
| index | The zero-based index of the element to get or set. |
| BiostatisticsException | Parameter index is less than 0, or index is equal to or greater than n. |
Reimplemented in StephenAshley.Biostatistics.ANOVAGroupsCollection.
Definition at line 172 of file GroupsCollection.cs.
1.5.9