- Basic statistical summarization
mean(x)
: takes the mean of xsd(x)
: takes the standard deviation of xmedian(x)
: takes the median of xquantile(x)
: displays sample quantities of x. Default is min, IQR, maxrange(x)
: displays the range. Same as c(min(x), max(x))