The Comprehensive Guide to R Programming
Preface
Overview
0.0.1
base
graphics
0.0.2
ggplot2
graphics
0.0.3
lattice
graphics
Dynamic Visualization Libraries
1
Plotting with base R graphics
1.1
Scatter and Line plots
1.1.1
Changing plot type
1.1.2
Custom plot characters
1.1.3
Custom lines
1.2
Adding objects to an active plot
1.3
Adding shading and a grid
1.4
Specialty plots in base R
1.4.1
Bar plots
1.4.2
Pie Charts
2
Plotting with
ggplot2
graphics
2.1
Overview
2.2
Grammar of Graphics
2.3
The Basics
2.4
Aesthetic Mappings
2.5
Specifying Geometric Shapes
2.5.1
Statistical Transformations
2.5.2
Position Adjustments
2.6
Managing Scales
2.7
Coordinate Systems
2.8
Facets
2.9
Labels & Annotations
2.10
Additional Resources on
ggplot2
2.11
Comparing
ggplot2
and
base
graphics
2.11.1
Overview
2.11.2
Scatter Plots
2.11.3
Line Chart
2.11.4
Bar Chart
2.11.5
Histograms
2.11.6
Box Plot
2.11.7
Stem & Leaf Plot
3
Advanced Plots with ggplot
3.1
Histograms
3.1.1
Overview
3.1.2
Basic Histogram & Density Plot
3.1.3
Comparing Groups
3.1.4
Add Value Markers
3.1.5
Finishing Touches
3.1.6
Wrapping Up
3.2
Bar Charts
3.2.1
Basic Bar Chart
3.2.2
Comparing Groups
3.2.3
Add Value Markers
3.2.4
Finishing Touches
3.2.5
Wrapping Up
3.3
Cleveland Dot Plots
3.3.1
Overview
3.3.2
Basic Dot Plot
3.3.3
Comparing Multiple Points of Information
3.3.4
Adding Value Markers
3.3.5
Finishing Touches
3.3.6
Wrapping Up
3.4
Lollipop Charts
3.4.1
Overview
3.4.2
Basic Lollipop Chart
3.4.3
Comparing Multiple Points of Information
3.4.4
Adding Value Markers
3.4.5
Finishing Touches
3.4.6
Wrapping Up
Published with bookdown
The Comprehensive Guide To R Programming
Chapter 1
Plotting with base R graphics