View source: R/check_data_distribution.R
check_data_distribution | R Documentation |
This function checks if the data is normally distributed for each numeric column in a data frame.
check_data_distribution(df)
df |
A data frame |
This function does not return anything, it only prints messages to the console.
df <- data.frame(x = c("a", "b", "c"), y = c(4, 5, 6), z = c(7, 8, 9))
check_data_distribution(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.