UnivariateOneWayAnovaTest Method (IReadOnlyCollectionIReadOnlyCollectionDouble) |
Performs a one-way analysis of variance (ANOVA).
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static OneWayAnovaResult OneWayAnovaTest(
IReadOnlyCollection<IReadOnlyCollection<double>> samples
)
Public Shared Function OneWayAnovaTest (
samples As IReadOnlyCollection(Of IReadOnlyCollection(Of Double))
) As OneWayAnovaResult
public:
static OneWayAnovaResult^ OneWayAnovaTest(
IReadOnlyCollection<IReadOnlyCollection<double>^>^ samples
)
static member OneWayAnovaTest :
samples : IReadOnlyCollection<IReadOnlyCollection<float>> -> OneWayAnovaResult
Parameters
- samples
- Type: System.Collections.GenericIReadOnlyCollectionIReadOnlyCollectionDouble
The samples to compare.
Return Value
Type:
OneWayAnovaResultANOVA data, including an F-test comparing the between-group variance to
the within-group variance.
Remarks See Also