View source: R/strand_list_plot.R
| strands_list_plot | R Documentation | 
Creates lists of students names stacked by rank in each of a given MAP assessments goal strands
strands_list_plot(mapvizier_obj, studentids, measurement_scale, season,
  year)
| mapvizier_obj | a  | 
| studentids | a set of student ids to subset to | 
| measurement_scale | the subject to subest to | 
| season | the season to use | 
| year | academic year | 
a ggplot object
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.