powered by
Prints summary statistics (mean, median, quartiles, range, etc.) for numeric variables.
print_numeric(x, digits = 1, width = 15)
A tibble with one row per numeric variable and the following columns:
Character specifying the variable name.
Character specifying the mean and standard deviation.
Character specifying the median and interquartile range.
Character specifying the first and third quartiles.
Character specifying the minimum and maximum values.
Numeric specifying the kurtosis coefficient.
Numeric specifying the skewness coefficient.
Character specifying the Shapiro-Wilk normality test significance code.
Integer specifying the number of zero values.
Integer specifying the number of missing values.
Data frame, matrix, or vector containing numerical variables.
Integer specifying the number of decimal places for the test statistic.
Integer specifying the maximum width for wrapping text.
x <- data.frame(A = rnorm(100), B = rnorm(100)) print_numeric(x) print_numeric(x, digits = 2, width = 5)
Run the code above in your browser using DataLab