|
MultinomialTest Constructor (Int32, Double)
|
Creates a new Multinomial test.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public MultinomialTest(
int[] sampleCounts,
double[] hypothesizedProportions
)
Public Sub New (
sampleCounts As Integer(),
hypothesizedProportions As Double()
)
Request Example
View SourceParameters
- sampleCounts
- Type: SystemInt32
The number of occurrences for each category in the sample. - hypothesizedProportions
- Type: SystemDouble
The hypothesized category proportions. Default is
to assume uniformly equal proportions.
See Also