# NOT RUN {
# Calculate V for all pairwise comparisons
v(star, reading ~ condition)
# Report only relative to regular-sized classrooms
v(star,
reading ~ condition,
ref_group = "reg")
# Report by ELL and FRL groups for each season, compare to non-ELL students
# who were not eligible for free or reduced price lunch in the fall (using
# the formula interface for reference group referencing).
# }
# NOT RUN {
v(benchmarks,
math ~ ell + frl + season,
ref_group = ~`Non-ELL` + `Non-FRL` + Fall)
# Same thing but with character vector supplied, rather than a formula
v(benchmarks,
math ~ ell + frl + season,
ref_group = c("Non-ELL", "Non-FRL", "Fall"))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab