How to set all the column value by a single TRUE value in the data frame
Here is your data frame. You have to change all the values present in the column PassOrFail to TRUE
Student <- data.frame(RollNo = 1:10, Marks = c(10, 20, 30, 40, 50, 60, 70, 80, 90, 100), PassOrFail = c(F, F, F, F, F, T, T, T, T, T))