- 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))
- Basic summarization plots
plot(x,y): scatterplot of x and yboxplot(y~x): boxplot of y against levels of xhist(x): histogram of xdensity(X): kernel density plot of x