Q. In R, how do you add a new column named Height to a data frame named my_data?
β
Correct Answer: (A)
my_data$Height <- c(160, 170, 155)
You must be Logged in to update hint/solution