2.8 Plotting
R has great plotting capabilities. Details about plotting functions and a discussion of when different representations are most appropriate are beyond the scope of these notes. This is just to provide you with a list of functions:
barplotcreates a barplot: notice that you first need to construct a so-called contingency table using the functiontable.histcreates an histogram;boxplotcreates a boxplot;plotcreates a scatterplot;
There are many functions to customize such plots, and again details can be found in the references given. A package which is often used to create nice data visualization is ggplot2.