Description Usage Arguments Value Examples
Normality test for a dataset
1 | normality.df(df, output = c("none", "figure", "message", "all"))
|
df |
: the data frame to be tested |
output |
: if "none", nothing is displayed, if "figure", a figure is displayed, if "message" a message is displayed, and if "all", a message and a figure are displayed |
A list with the following elements:
pvalues
a vector of the p-values obtained with the Shapiro Wilk test for all numerical variables in the data frame df
.
results
a text (printed onto the console, if wanted) describing the results of the performed tests.
1 2 3 4 5 | normality.df(iris, output = "all")
## install.packages("kohonen")
data(wines, package = "kohonen")
normality.df(wines, "all")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.