Book Image

R Graph Essentials

Book Image

R Graph Essentials

Overview of this book

Table of Contents (11 chapters)
R Graph Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

About qplot


The qplot (quick plot) system is a subset of the ggplot2 (grammar of graphics) package, which you can use to create nice graphs easily. To use qplot, first install ggplot2 . On the R command line, enter the following command:

install.packages("ggplot2")

Then load ggplot2 using this command:

library(ggplot2)