Graphs
There are many ways of making the same kinds of graphs in R, each with its advantages and disadvantages. The focus here is on the ggplot2 package, which uses a "grammar of graphics" to design graphs, rather than the usual procedural methods.
Graphs with ggplot2
- Bar and line graphs (ggplot2)
- Plotting means and error bars (ggplot2)
- Plotting distributions (ggplot2) - Histograms, density curves, boxplots
- Scatterplots (ggplot2)
- Titles (ggplot2)
- Axes (ggplot2) - Control axis text, labels, and grid lines.
- Legends (ggplot2)
- Lines (ggplot2) - Add lines to a graph.
- Facets (ggplot2) - Slice up data and graph the subsets together in a grid.
- Multiple graphs on one page (ggplot2)
- Colors (ggplot2)
Miscellaneous
- Output to a file (PDF, PNG, TIFF)
- Shapes and line types - Set the shape of points and patterns used in lines.
- Antialiased bitmap output - If your plots look jagged or pixelated. (Not yet finished)