powered by
This function is designed to emulate the Minitab function DESCRIBE. It gives simple descriptive statistics for a data frame
describe(x, varNames = NULL)
A matrix or data.frame with numeric entries. Different variables are represented by columns.
A vector of variable names for each of the columns
A data.frame containing the following elements:
The number of observations for each variable
The sample mean for each variable
The sample standard deviation
The standard error of the mean
The minimum
The lower quartile
The median
The upper quartile
The maximum
# NOT RUN { data(poissonTest.df) describe(poissonTest.df) # }
Run the code above in your browser using DataLab