R Data Analysis Cookbook(Second Edition)
上QQ阅读APP看书,第一时间看更新

Getting ready

Install the scales package and read the data-conversion.csv file from the book's data for this chapter into your R environment's working directory:

> install.packages("scales")
> library(scales)
> students <- read.csv("data-conversion.csv")