SampleOneWayAnovaTest Method (IReadOnlyCollectionSample) |
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<Sample> samples
)
Public Shared Function OneWayAnovaTest (
samples As IReadOnlyCollection(Of Sample)
) As OneWayAnovaResult
public:
static OneWayAnovaResult^ OneWayAnovaTest(
IReadOnlyCollection<Sample^>^ samples
)
static member OneWayAnovaTest :
samples : IReadOnlyCollection<Sample> -> OneWayAnovaResult
Parameters
- samples
- Type: System.Collections.GenericIReadOnlyCollectionSample
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