kolmogorov_smirnov | R Documentation |
Test a sample against the null hypothesis that it comes from a standard Normal distribution.
kolmogorov_smirnov(samples)
samples |
vector of values to be tested |
Wrapper function for corresponding functionality in stats
. Originally, from Kolmogorov (1933).
A list containing
name |
name of normality test applied i.e. 'Komogorov Smirnov' |
statistic |
scalar value of test statistics |
p.value |
corresponding p-value from test |
Kolmogorov (1933) via stats
.
sample <- rnorm(100)
kolmogorov_smirnov(sample)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.