public static TestResult ShapiroFranciaTest(
this IReadOnlyList<double> sample
)
<ExtensionAttribute>
Public Shared Function ShapiroFranciaTest (
sample As IReadOnlyList(Of Double)
) As TestResult
public:
[ExtensionAttribute]
static TestResult^ ShapiroFranciaTest(
IReadOnlyList<double>^ sample
)
[<ExtensionAttribute>]
static member ShapiroFranciaTest :
sample : IReadOnlyList<float> -> TestResult
Our current implementation requires the sample to contain at least 16 values. While the Shapiro-Francia test is perfectly well-defined for smaller samples, the parameterization of the null distribution for such small samples requires special handling that we have not yet coded.
ArgumentNullException | sample is . |
InsufficientDataException | There are fewer than 16 values in the sample. |