Classes | |
class | ANOVAGroupsCollection |
A list of Group objects and the methods necessary to perform an analysis of variance. More... | |
class | BiostatisticsException |
A custom System.Exception for the StephenAshley.Biostatistics namespace. When the exception is triggered by another exception, that other is stored as the inner exception. More... | |
class | ChiSquaredArray |
An array of values comprising a contingency table for the Chi Squared (χ²) analysis. More... | |
struct | Outcome |
A trio of values representing a cell’s observed value, expected value, and the square of the difference between the two. More... | |
class | CochranQGroupsCollection |
A list of Group objects and the methods necessary to perform Cochran’s Q Test. More... | |
class | CorrelationRegressionGroupsCollection |
A list of Group objects and associated properties for the computation of statistics relating to linear regression and correlation. More... | |
class | DecMath |
Provides a set of static methods to perform numerical operations, mostly on Decimal values. More... | |
class | Distributions |
A set of static methods for calculating probabilities associated with the value of p for various statistics. | |
class | FisherExactArray |
An array of values comprising a contingency table for the Fisher Exact Test. More... | |
class | FriedmanGroupsCollection |
A list of Group objects and the methods necessary for performing Friedman’s Test. More... | |
struct | ChiAlpha |
class | Group |
A list of Decimal objects representing the members of a set of data. The class provides methods that compute various descriptive statistics. More... | |
class | ColumnData |
An object reporting the validity of a column of TextBox objects as a Group and the state of the column. More... | |
class | GroupsCollection |
An list of Group objects. More... | |
class | KruskalWallisGroupsCollection |
Data and methods for performing the Kruska-Wallis Test. More... | |
class | MannWhitneyGroupsCollection |
An list of Group objects and the methods necessary to perform the Mann-Whitney Test. More... | |
class | McNemarsGroupsCollection |
A list of Group objects and the associated methods for performing McNemar’s Test. More... | |
class | OddsRatioTest |
Data and methods for the performance of the Odds Ratio Test. More... | |
class | PairedT_TestGroupsCollection |
A list of two Group objects and methods for performing the Paired t-Test. More... | |
struct | Rank |
A struct designed to hold items that have been ranked. More... | |
class | RelativeRiskTest |
The data fields and methods for performing the Relative Risk Test. More... | |
class | RepeatedMeasuresANOVAGroupsCollection |
A list of Group objects and methods to perform the Repeated Measures Analysis of Variance. More... | |
class | SpearmanRankSumGroupsCollection |
A list of Group objects and associated methods for performing the Spearman Rank Sum Test. More... | |
class | Spearman |
class | T_TestGroupsCollection |
An list of two Group objects and the methods necessary to analyze the variance in the means of the two Group objects. More... | |
class | WilcoxonGroupsCollection |
A pair of Group objects and the methods necessary to perform the Wilcoxon Signed-Rank Test. More... | |
class | ZTest |
Data and methods for the performance of the z-Test. More... | |
Enumerations | |
enum | Status { OneElement, TwoElements, MoreThanTwoElements, Empty, FewerThanThree, OK, Undetermined } |
An enumeration of Int32 constants representing the state of a spreadsheet column. More... | |
Functions | |
delegate ColumnData | GroupValidatorDelegateClass (TextBox[] textBoxesArray, Int32 columnIndex) |
Delegate for a method that validates the data in a column and reports the state of the column. |
An enumeration of Int32 constants representing the state of a spreadsheet column.
OneElement |
The column has 1 element.
|
TwoElements |
The column has 2 elements.
|
MoreThanTwoElements |
The column has more than 2 elements.
|
Empty |
The column has no elements.
|
FewerThanThree |
The column has fewer than 3 elements.
|
OK |
The column has the appropriate number of elements to list together as a Group.
|
Undetermined |
The column’s status has not been determined.
|
delegate ColumnData StephenAshley.Biostatistics.GroupValidatorDelegateClass | ( | TextBox[] | textBoxesArray, | |
Int32 | columnIndex | |||
) |
Delegate for a method that validates the data in a column and reports the state of the column.
textBoxesArray | The array of TextBox objects to be examined. | |
columnIndex | The position of the column in the spreadsheet. |