- R Data Analysis Cookbook(Second Edition)
- Kuntal Ganguly
- 33字
- 2025-04-04 18:21:36
Getting ready
Read the data-conversion.csv file and store it in the working directory of your R environment. Install the dummies package. Then read the data:
> install.packages("dummies")
> library(dummies)
> students <- read.csv("data-conversion.csv")