Descriptives
Descriptives are statistics that briefly summarize data series. These examples show how to order descriptives for a variable called dependentVariable
in a dataset/dataframe called dat
.
SPSS
EXAMINE VARIABLES=dependentVariable
/PLOT = Boxplot Histogram.
R
examine(dat$dependentVariable);