check_data_distribution: Check the data distribution of a data frame

View source: R/check_data_distribution.R

check_data_distributionR Documentation

Check the data distribution of a data frame

Description

This function checks if the data is normally distributed for each numeric column in a data frame.

Usage

check_data_distribution(df)

Arguments

df

A data frame

Value

This function does not return anything, it only prints messages to the console.

Examples

df <- data.frame(x = c("a", "b", "c"), y = c(4, 5, 6), z = c(7, 8, 9))

check_data_distribution(df)


fixr documentation built on April 4, 2025, 12:30 a.m.