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")
My Statistical tools and consulting service
Statsitics, Research Methods, SAS, R, HLM, Rasch model
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")