strands_list_plot: Creates lists of students names stacked by rank in each of a...

View source: R/strand_list_plot.R

strands_list_plotR Documentation

Creates lists of students names stacked by rank in each of a given MAP assessments goal strands

Description

Creates lists of students names stacked by rank in each of a given MAP assessments goal strands

Usage

strands_list_plot(mapvizier_obj, studentids, measurement_scale, season,
  year)

Arguments

mapvizier_obj

a mapvizieR object

studentids

a set of student ids to subset to

measurement_scale

the subject to subest to

season

the season to use

year

academic year

Value

a ggplot object

Examples

## Not run: 
require(dplyr)

data("ex_CombinedStudentsBySchool")
data("ex_CombinedAssessmentResults")

map_mv <- mapvizieR(ex_CombinedAssessmentResults, ex_CombinedStudentsBySchool)

ids <- ex_CombinedStudentsBySchool %>% 
   dplyr::filter(
     Grade == 8,
     SchoolName == "Mt. Bachelor Middle School",
     TermName == "Spring 2013-2014") %>% 
   dplyr::select(StudentID) %>%
   unique()

strands_list_plot(map_mv, 
                 ids$StudentID, 
                 "Mathematics", 
                 "Fall", 
                 2013)

## End(Not run)

almartin82/mapvizieR documentation built on June 3, 2023, 10:53 a.m.