Question: Use the function data.frame() to construct a data frame. Pass the vectors name, type, diameter, rotation and rings as arguments to data.frame(), in this order.

Use the function data.frame() to construct a data frame. Pass the vectors name, type, diameter, rotation and rings as arguments to data.frame(), in this order. Call the resulting data frame planets_df.

# Definition of vectors

name <- c("Mercury", "Venus", "Earth",

"Mars", "Jupiter", "Saturn",

"Uranus", "Neptune")

type <- c("Terrestrial planet",

"Terrestrial planet",

"Terrestrial planet",

"Terrestrial planet", "Gas giant",

"Gas giant", "Gas giant", "Gas giant")

diameter <- c(0.382, 0.949, 1, 0.532,

11.209, 9.449, 4.007, 3.883)

rotation <- c(58.64, -243.02, 1, 1.03,

0.41, 0.43, -0.72, 0.67)

rings <- c(FALSE, FALSE, FALSE, FALSE, TRUE, TRUE, TRUE, TRUE)

# Create a data frame from the vectors

planets_df <-

what do I write after planets_df<- ??????

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!