R Studio

DPLYR is some kind of module that allows efficient data management.

library(dplyr)

 

This keeps rows that has a specified value:

filter(dataname,School=="Ad High School")

x <- filter(dataname,School=="Ad High School")

 

Leave a Reply