Question: Consider the following dataset called How would you change the current column names to LAN, CON, PVP ( select all that apply )

Consider the following dataset called
How would you change the current column names to "LAN", "CON", "PVP"(select all
that apply)?
colnames(data[1:3])- c("LAN", "CON", "PVP")
colnames(data)- c("LAN", "CON", "PVP")
colnames("LAN", "CON", "PVP")
colnames(data)[1]- c("LAN")
colnames(data)[2]- c("CON")
colnames(data)[3]- c("PVP")
 Consider the following dataset called How would you change the current

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!