I am having trouble separating the names in a data frame. Can anyone help me with that?
Here is the data frame code.
Classe1 <- c("class1", "class2", "class3","class1", "class2", "class3","class1", "class2", "class3")
Marks.class <- c(12,14,54,67,87,8,17,11,20)
Students <- c("Thom Eric", "Sandra Leaf", "Fanta derrick", "Nike Gael", "Dan JD","Thom Eric","Sandra Leaf", "Sandra Leaf","Sandra Leaf")
Class.perf <- data.frame(Classe1,Marks.class,Students)
And I Want to separate the names in the students's column.