I have R code like this, that I cannot execute because I do not have rights to install the packages, so need some help understanding what it is doing.
raw_data<- read.csv("raw_data.csv")
attach(raw_data)
raw_data$new_col<- raw_data$Employee.Name
raw_data <- select(raw_data, - Employee.Name)
Am I correct that line 3 is creating a new field called new_col and assigning the value from the csv field Employee Name . The . is supposed to mask the space between Employee and Name
In the 4th line, we are just dropping the original column from the dataset?