...

/

Solution Review: Data Frames

Solution Review: Data Frames

In this review, we give a detailed analysis of the solution to this problem.

Solution: Using data.frame()

Press + to interact
R
Course <- c("Maths", "English", "Science")
LecturesTaken <- c("12", "49", "52")
Grade <- c('F', 'B', 'A')
studentDataframe <- data.frame(Course, LecturesTaken, Grade)
print(studentDataframe)

Explanation

The solution to this exercise is ...