Research Question: What are the trends in student performance across 6th, 7th, and 8th graders on science benchmark assessments over the academic year? Which specific questions or standards show consistent struggles or growth across all three benchmarks?
This section ensures that all the required libraries for the analysis are loaded. Each library serves a specific purpose in handling different aspects of the data:
readxl
: Used to read Excel files containing
benchmark data.
purrr
: Enhances iteration and functional
programming.
dplyr
: Provides functions for data manipulation like
filtering, selecting, and summarizing data.
tidyr:
Helps in tidying data, such as pivoting and
reshaping datasets.
naniar
: Used for visualizing and handling missing
data in the dataset.
visdat
: Helps in creating heatmaps that visually
show missing values in the dataset.
ggplot2
: A powerful package for creating
visualizations like line plots and bar charts.
DT
: Allows the creation of interactive tables for
easier data exploration.
reshape2
: Used for reshaping data, especially in
transforming data between wide and long formats.
knitr
: Helps in knitting R Markdown files into
different formats like HTML, PDF, and Word.
corrplot
: Facilitates creating correlation plots,
useful in showing relationships between variables.
stringr
: Used for working with strings, such as
extracting or cleaning text data.
The libraries loaded in this section lay the groundwork for the data analysis and visualizations performed in the subsequent steps.
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
##
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
##
## smiths
## corrplot 0.92 loaded
## Warning: package 'gt' was built under R version 4.4.1
##
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
##
## last_plot
## The following object is masked from 'package:stats':
##
## filter
## The following object is masked from 'package:graphics':
##
## layout
The goal of this section is to import the raw data from the Excel file into R, laying the foundation for further data cleaning, manipulation, and analysis. After this, the data will be explored and prepared for deeper insight into student performance across benchmarks.
Reading 6th, 7th, and 8th Grade Benchmarks:
The read_excel()
function is used to load the data
for different grade levels and benchmarks. This includes data from three
assessments for each grade, allowing us to analyze performance trends
over time.
The benchmark sheets are labeled accordingly (e.g., “6th Grade Benchmark 1”, “7th Grade Benchmark 2”), and the data is read for each grade level separately.
Cleaning 7th Grade Data:
For the 7th-grade benchmark 1 data, specific columns (I, N, P, R, S, U) are removed. These columns represent hidden information that, I assume, is irrelevant for analysis.
## New names:
## New names:
## New names:
## New names:
## New names:
## New names:
## New names:
## New names:
## New names:
## • `` -> `...1`
## • `` -> `...25`
## • `` -> `...26`
In this section, we streamline the process of loading the benchmark data for all grades and assessments by placing them into a list structure. This helps to simplify future data manipulations and ensures consistency across the different datasets.
By organizing the data in a list, future analysis and transformations (such as combining or comparing benchmarks across different grades) become more manageable, making it easier to perform operations across the entire dataset.
## List of 9
## $ benchmark_6_1: tibble [28 × 26] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 600 : chr [1:28] "% Correct" "41" "62" "38" ...
## ..$ 601 : chr [1:28] "% Correct" "60" "63" "30" ...
## ..$ 602 : chr [1:28] "% Correct" "50" "50" "43" ...
## ..$ 603 : chr [1:28] "% Correct" "50" "50" "20" ...
## ..$ 604 : chr [1:28] "% Correct" "55" "48" "30" ...
## ..$ 605 : chr [1:28] "% Correct" "22" "17" "9" ...
## ..$ 606 : chr [1:28] "% Correct" "25" "33" "17" ...
## ..$ 607 : chr [1:28] "% Correct" "12" "24" "36" ...
## ..$ 608 : chr [1:28] "% Correct" "31" "65" "27" ...
## ..$ 609 : chr [1:28] "% Correct" "48" "50" "15" ...
## ..$ 610 : chr [1:28] "% Correct" "50" "49" "18" ...
## ..$ 611 : chr [1:28] "% Correct" "39" "39" "23" ...
## ..$ 612 : chr [1:28] "% Correct" "50" "50" "38" ...
## ..$ 613 : chr [1:28] "% Correct" "54" "50" "25" ...
## ..$ 614 : chr [1:28] "% Correct" "40" "43" "20" ...
## ..$ 615 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 616 : chr [1:28] "% Correct" "53" "40" "23" ...
## ..$ 617 : chr [1:28] "% Correct" "34" "62" "14" ...
## ..$ 618 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 619 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 620 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 621 : chr [1:28] "% Correct" "50" "50" "17" ...
## ..$ 676 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...25: chr [1:28] "Per Question Average" "42.4444444444444" "46.9444444444444" "24.6111111111111" ...
## ..$ ...26: chr [1:28] "Skills" "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" ...
## $ benchmark_6_2: tibble [28 × 27] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 600 : chr [1:28] "% Correct" "90" "90" "55" ...
## ..$ 601 : chr [1:28] "% Correct" "96" "86" "57" ...
## ..$ 602 : chr [1:28] "% Correct" "93" "81" "44" ...
## ..$ 603 : chr [1:28] "% Correct" "93" "60" "43" ...
## ..$ 604 : chr [1:28] "% Correct" "77" "54" "41" ...
## ..$ 605 : chr [1:28] "% Correct" "58" "46" "55" ...
## ..$ 606 : chr [1:28] "% Correct" "82" "46" "18" ...
## ..$ 607 : chr [1:28] "% Correct" "70" "50" "20" ...
## ..$ 608 : chr [1:28] "% Correct" "58" "26" "21" ...
## ..$ 609 : chr [1:28] "% Correct" "???" NA NA ...
## ..$ 610 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 611 : chr [1:28] "% Correct" "84" "40" "28" ...
## ..$ 612 : chr [1:28] "% Correct" "96" "52" "52" ...
## ..$ 613 : chr [1:28] "% Correct" "80" "48" "28" ...
## ..$ 614 : chr [1:28] "% Correct" "80" "32" "36" ...
## ..$ 615 : chr [1:28] "% Correct" "100" "55" "59" ...
## ..$ 616 : chr [1:28] "% Correct" "92" "62" "46" ...
## ..$ 617 : chr [1:28] "% Correct" "60" "32" "12" ...
## ..$ 618 : chr [1:28] "% Correct" "86" "35" "21" ...
## ..$ 619 : chr [1:28] "% Correct" "85" "44" "56" ...
## ..$ 620 : chr [1:28] "% Correct" "76" "35" "21" ...
## ..$ 621 : chr [1:28] "% Correct" "100" "33" "0" ...
## ..$ 622 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 676 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...26: chr [1:28] "Per Question Average" "81.8947368421053" "51.2631578947368" "37.5263157894737" ...
## ..$ ...27: chr [1:28] "Skills" "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" ...
## $ benchmark_6_3: tibble [28 × 25] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 600 : chr [1:28] "% Correct" "75" "93" "72" ...
## ..$ 601 : chr [1:28] "% Correct" "68" "92" "76" ...
## ..$ 602 : chr [1:28] "% Correct" "66" "87" "66" ...
## ..$ 603 : chr [1:28] "% Correct" "64" "94" "67" ...
## ..$ 604 : chr [1:28] "% Correct" "77" "54" "39" ...
## ..$ 605 : chr [1:28] "% Correct" "76" "50" "50" ...
## ..$ 606 : chr [1:28] "% Correct" "95" "55" "50" ...
## ..$ 607 : chr [1:28] "% Correct" "75" "60" "28" ...
## ..$ 608 : chr [1:28] "% Correct" "87" "34" "25" ...
## ..$ 611 : chr [1:28] "% Correct" "83" "58" "29" ...
## ..$ 612 : chr [1:28] "% Correct" "96" "87" "73" ...
## ..$ 613 : chr [1:28] "% Correct" "93" "54" "57" ...
## ..$ 614 : chr [1:28] "% Correct" "91" "39" "17" ...
## ..$ 615 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 616 : chr [1:28] "% Correct" "64" "76" "48" ...
## ..$ 617 : chr [1:28] "% Correct" "83" "66" "35" ...
## ..$ 618 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 619 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 620 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 621 : chr [1:28] "% Correct" "60" "0" "20" ...
## ..$ 622 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 676 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...24: chr [1:28] "Per Question Average" "78.3125" "62.4375" "47" ...
## ..$ ...25: chr [1:28] "Skills" "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" ...
## $ benchmark_7_1: tibble [28 × 22] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 700 : chr [1:28] "% Correct" "23" "52" "39" ...
## ..$ 701 : chr [1:28] "% Correct" "24" "36" "40" ...
## ..$ 702 : chr [1:28] "% Correct" "24" "48" "33" ...
## ..$ 703 : chr [1:28] "% Correct" "6" "38" "19" ...
## ..$ 704 : chr [1:28] "% Correct" "23" "36" "23" ...
## ..$ 705 : chr [1:28] "% Correct" "24" "34" "14" ...
## ..$ 706 : chr [1:28] "% Correct" "14" "32" "46" ...
## ..$ 707...10: chr [1:28] "% Correct" "18.5185185185185" "25.9259259259259" "25.9259259259259" ...
## ..$ 708 : chr [1:28] "% Correct" "21" "25" "39" ...
## ..$ 709 : chr [1:28] "% Correct" "14" "0" "14" ...
## ..$ 710 : chr [1:28] "% Correct" "10" "60" "0" ...
## ..$ 711...15: chr [1:28] "% Correct" "13.3333333333333" "36.6666666666667" "26.6666666666667" ...
## ..$ 712...17: chr [1:28] "% Correct" "20" "33.3333333333333" "36.6666666666667" ...
## ..$ 713...20: chr [1:28] "% Correct" "28.5714285714286" "46.4285714285714" "35.7142857142857" ...
## ..$ 714...22: chr [1:28] "% Correct" "3.57142857142857" "53.5714285714286" "28.5714285714286" ...
## ..$ 715 : chr [1:28] "% Correct" "30" "41" "30" ...
## ..$ 716 : chr [1:28] "% Correct" "32" "59" "32" ...
## ..$ 717 : chr [1:28] "% Correct" "21.4285714285714" "25" "46.4285714285714" ...
## ..$ 718 : chr [1:28] "% Correct" "46.1538461538462" "57.6923076923077" "26.9230769230769" ...
## ..$ 719 : chr [1:28] "% Correct" "22" "33" "22" ...
## ..$ ...28 : chr [1:28] "Per Question Average" "17.2529664068126" "32.2545474468551" "24.3421777652547" ...
## $ benchmark_7_2: tibble [28 × 22] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 700 : chr [1:28] "% Correct" "4" "35" "26" ...
## ..$ 701 : chr [1:28] "% Correct" "4" "48" "68" ...
## ..$ 702 : chr [1:28] "% Correct" "5" "10" "10" ...
## ..$ 703 : chr [1:28] "% Correct" "24" "47" "65" ...
## ..$ 704 : chr [1:28] "% Correct" "25" "50" "60" ...
## ..$ 705 : chr [1:28] "% Correct" "13" "39" "78" ...
## ..$ 706 : chr [1:28] "% Correct" "12" "32" "64" ...
## ..$ 707 : chr [1:28] "% Correct" "30" "52" "48" ...
## ..$ 708 : chr [1:28] "% Correct" "13" "35" "39" ...
## ..$ 709 : chr [1:28] "% Correct" "???" NA NA ...
## ..$ 710 : chr [1:28] "% Correct" "???" NA NA ...
## ..$ 711 : chr [1:28] "% Correct" "30" "11" "59" ...
## ..$ 712 : chr [1:28] "% Correct" "31" "34" "55" ...
## ..$ 713 : chr [1:28] "% Correct" "18" "36" "61" ...
## ..$ 714 : chr [1:28] "% Correct" "17" "38" "72" ...
## ..$ 715 : chr [1:28] "% Correct" "4" "20" "12" ...
## ..$ 716 : chr [1:28] "% Correct" "0" "24" "10" ...
## ..$ 717 : chr [1:28] "% Correct" "???" NA NA ...
## ..$ 718 : chr [1:28] "% Correct" "36" "43" "50" ...
## ..$ 719 : chr [1:28] "% Correct" "38" "46" "38" ...
## ..$ ...22: chr [1:28] "Per Question Average" "17.8823529411765" "35.2941176470588" "47.9411764705882" ...
## $ benchmark_7_3: tibble [28 × 22] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 700 : chr [1:28] "% Correct" "22" "39" "96" ...
## ..$ 701 : chr [1:28] "% Correct" "96" "88" "92" ...
## ..$ 702 : chr [1:28] "% Correct" "25" "5" "90" ...
## ..$ 703 : chr [1:28] "% Correct" "50" "38" "82" ...
## ..$ 704 : chr [1:28] "% Correct" "20" "34" "100" ...
## ..$ 705 : chr [1:28] "% Correct" "38" "34" "63" ...
## ..$ 706 : chr [1:28] "% Correct" "23" "31" "73" ...
## ..$ 707 : chr [1:28] "% Correct" "46" "31" "72" ...
## ..$ 708 : chr [1:28] "% Correct" "26" "31" "44" ...
## ..$ 709 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 710 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 711 : chr [1:28] "% Correct" "45" "24" "72" ...
## ..$ 712 : chr [1:28] "% Correct" "38" "7" "62" ...
## ..$ 713 : chr [1:28] "% Correct" "55" "55" "90" ...
## ..$ 714 : chr [1:28] "% Correct" "59" "34" "72" ...
## ..$ 715 : chr [1:28] "% Correct" "31" "15" "89" ...
## ..$ 716 : chr [1:28] "% Correct" "14" "18" "86" ...
## ..$ 717 : chr [1:28] "% Correct" "63" "63" "89" ...
## ..$ 718 : chr [1:28] "% Correct" "80" "84" "76" ...
## ..$ 719 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...22: chr [1:28] "Per Question Average" "43" "37.1176470588235" "79.2941176470588" ...
## $ benchmark_8_1: tibble [28 × 25] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 800 : chr [1:28] "% Correct" "55" "72" "62" ...
## ..$ 801 : chr [1:28] "% Correct" "69" "86" "59" ...
## ..$ 802 : chr [1:28] "% Correct" "60" "80" "53" ...
## ..$ 803 : chr [1:28] "% Correct" "50" "76" "57" ...
## ..$ 804 : chr [1:28] "% Correct" "55" "77" "66" ...
## ..$ 805 : chr [1:28] "% Correct" "39" "91" "34" ...
## ..$ 806 : chr [1:28] "% Correct" "28" "60" "68" ...
## ..$ 807 : chr [1:28] "% Correct" "26" "70" "26" ...
## ..$ 808 : chr [1:28] "% Correct" "17" "47" "26" ...
## ..$ 809 : chr [1:28] "% Correct" "9" "18" "9" ...
## ..$ 810 : chr [1:28] "% Correct" "22" "33" "33" ...
## ..$ 811 : chr [1:28] "% Correct" "28" "72" "32" ...
## ..$ 812 : chr [1:28] "% Correct" "52" "61" "44" ...
## ..$ 813 : chr [1:28] "% Correct" "50" "79" "71" ...
## ..$ 814 : chr [1:28] "% Correct" "38" "71" "38" ...
## ..$ 815 : chr [1:28] "% Correct" "76" "88" "50" ...
## ..$ 816 : chr [1:28] "% Correct" "59" "89" "63" ...
## ..$ 817 : chr [1:28] "% Correct" "23" "50" "35" ...
## ..$ 818 : chr [1:28] "% Correct" "31" "42" "23" ...
## ..$ 819 : chr [1:28] "% Correct" "15" "55" "35" ...
## ..$ 820 : num [1:28] 0 NA NA NA NA NA NA NA NA NA ...
## ..$ 821 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 822 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...25: chr [1:28] "Per Question Average" "40.1" "65.84999999999999" "44.2" ...
## $ benchmark_8_2: tibble [28 × 25] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 800 : chr [1:28] "% Correct" "96" "82" "67" ...
## ..$ 801 : chr [1:28] "% Correct" "96" "86" "64" ...
## ..$ 802 : chr [1:28] "% Correct" "73" "90" "66" ...
## ..$ 803 : chr [1:28] "% Correct" "50" "73.09999999999999" "84.59999999999999" ...
## ..$ 804 : chr [1:28] "% Correct" "60.7" "71.40000000000001" "78.59999999999999" ...
## ..$ 805 : chr [1:28] "% Correct" "79.2" "83.3" "70.8" ...
## ..$ 806 : chr [1:28] "% Correct" "39" "54" "62" ...
## ..$ 807 : chr [1:28] "% Correct" "52" "64" "48" ...
## ..$ 808 : chr [1:28] "% Correct" "27.3" "36.4" "54.5" ...
## ..$ 809 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 810 : chr [1:28] "% Correct" "???" NA NA ...
## ..$ 811 : chr [1:28] "% Correct" "27" "85" "54" ...
## ..$ 812 : chr [1:28] "% Correct" "46" "64" "64" ...
## ..$ 813 : chr [1:28] "% Correct" "52" "61" "44" ...
## ..$ 814 : chr [1:28] "% Correct" "32" "64" "46" ...
## ..$ 815 : chr [1:28] "% Correct" "50" "84.59999999999999" "65.40000000000001" ...
## ..$ 816 : chr [1:28] "% Correct" "96" "89" "82" ...
## ..$ 817 : chr [1:28] "% Correct" "43" "31" "46" ...
## ..$ 818 : chr [1:28] "% Correct" "62" "65" "62" ...
## ..$ 819 : chr [1:28] "% Correct" "30" "61" "57" ...
## ..$ 820 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 821 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 822 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...25: chr [1:28] "Per Question Average" "56.1777777777778" "69.15555555555559" "61.9944444444444" ...
## $ benchmark_8_3: tibble [28 × 25] (S3: tbl_df/tbl/data.frame)
## ..$ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## ..$ 800 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 801 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 802 : chr [1:28] "% Correct" "100" "100" "100" ...
## ..$ 803 : chr [1:28] "% Correct" "72" "84" "84" ...
## ..$ 804 : chr [1:28] "% Correct" "93" "97" "97" ...
## ..$ 805 : chr [1:28] "% Correct" "81" "86" "95" ...
## ..$ 806 : chr [1:28] "% Correct" "54" "77" "85" ...
## ..$ 807 : chr [1:28] "% Correct" "72" "86" "79" ...
## ..$ 808 : chr [1:28] "% Correct" "48" "81" "71" ...
## ..$ 809 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 810 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 811 : chr [1:28] "% Correct" "69" "81" "81" ...
## ..$ 812 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 813 : chr [1:28] "% Correct" "85" "90" "80" ...
## ..$ 814 : chr [1:28] "% Correct" "88" "88" "79" ...
## ..$ 815 : chr [1:28] "% Correct" "84" "100" "92" ...
## ..$ 816 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 817 : chr [1:28] "% Correct" "83" "90" "90" ...
## ..$ 818 : chr [1:28] "% Correct" "71" "88" "79" ...
## ..$ 819 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 820 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 821 : chr [1:28] "% Correct" NA NA NA ...
## ..$ 822 : chr [1:28] "% Correct" NA NA NA ...
## ..$ ...25: chr [1:28] "Per Question Average" "76.92307692307691" "88.30769230769231" "85.5384615384615" ...
In this section, we examine the structure of the datasets we have loaded to ensure they are in a suitable format for analysis.
Inspecting Data: We use the lapply()
function to apply
the head()
function to each dataset within the
benchmarks_list
. This allows us to view the first few rows
of each benchmark dataset, providing an overview of their contents and
structure.
## $benchmark_6_1
## # A tibble: 6 × 26
## ...1 `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610` `611`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 41 60 50 50 55 22 25 12 31 48 50 39
## 3 2 62 63 50 50 48 17 33 24 65 50 49 39
## 4 3 38 30 43 20 30 9 17 36 27 15 18 23
## 5 4 55 66 46 50 33 39 54 20 42 32 35 35
## 6 5 52 60 56 63 44 22 38 40 31 40 32 27
## # ℹ 13 more variables: `612` <chr>, `613` <chr>, `614` <chr>, `615` <chr>,
## # `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>, `620` <chr>,
## # `621` <chr>, `676` <chr>, ...25 <chr>, ...26 <chr>
##
## $benchmark_6_2
## # A tibble: 6 × 27
## ...1 `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610` `611`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 90 96 93 93 77 58 82 70 58 ??? <NA> 84
## 3 2 90 86 81 60 54 46 46 50 26 <NA> <NA> 40
## 4 3 55 57 44 43 41 55 18 20 21 <NA> <NA> 28
## 5 4 59 64 44 73 32 29 14 30 30 <NA> <NA> 72
## 6 5 76 86 67 83 77 21 36 45 83 <NA> <NA> 64
## # ℹ 14 more variables: `612` <chr>, `613` <chr>, `614` <chr>, `615` <chr>,
## # `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>, `620` <chr>,
## # `621` <chr>, `622` <chr>, `676` <chr>, ...26 <chr>, ...27 <chr>
##
## $benchmark_6_3
## # A tibble: 6 × 25
## ...1 `600` `601` `602` `603` `604` `605` `606` `607` `608` `611` `612` `613`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 75 68 66 64 77 76 95 75 87 83 96 93
## 3 2 93 92 87 94 54 50 55 60 34 58 87 54
## 4 3 72 76 66 67 39 50 50 28 25 29 73 57
## 5 4 86 80 59 94 58 39 65 47 34 54 65 57
## 6 5 86 96 90 94 66 50 50 40 42 67 57 82
## # ℹ 12 more variables: `614` <chr>, `615` <chr>, `616` <chr>, `617` <chr>,
## # `618` <chr>, `619` <chr>, `620` <chr>, `621` <chr>, `622` <chr>,
## # `676` <chr>, ...24 <chr>, ...25 <chr>
##
## $benchmark_7_1
## # A tibble: 6 × 22
## ...1 `700` `701` `702` `703` `704` `705` `706` `707...10` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Questi… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Correct % Co… % Co… % Co…
## 2 1 23 24 24 6 23 24 14 18.518518… 21 14 10
## 3 2 52 36 48 38 36 34 32 25.925925… 25 0 60
## 4 3 39 40 33 19 23 14 46 25.925925… 39 14 0
## 5 4 61 48 62 63 41 14 32 25.925925… 29 14 10
## 6 5 65 48 29 38 32 21 54 33.333333… 21 14 30
## # ℹ 10 more variables: `711...15` <chr>, `712...17` <chr>, `713...20` <chr>,
## # `714...22` <chr>, `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>,
## # `719` <chr>, ...28 <chr>
##
## $benchmark_7_2
## # A tibble: 6 × 22
## ...1 `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710` `711`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 4 4 5 24 25 13 12 30 13 ??? ??? 30
## 3 2 35 48 10 47 50 39 32 52 35 <NA> <NA> 11
## 4 3 26 68 10 65 60 78 64 48 39 <NA> <NA> 59
## 5 4 61 48 62 53 70 30 40 33 26 <NA> <NA> 56
## 6 5 52 68 29 47 25 22 44 19 39 <NA> <NA> 30
## # ℹ 9 more variables: `712` <chr>, `713` <chr>, `714` <chr>, `715` <chr>,
## # `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>, ...22 <chr>
##
## $benchmark_7_3
## # A tibble: 6 × 22
## ...1 `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710` `711`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 22 96 25 50 20 38 23 46 26 <NA> <NA> 45
## 3 2 39 88 5 38 34 34 31 31 31 <NA> <NA> 24
## 4 3 96 92 90 82 100 63 73 72 44 <NA> <NA> 72
## 5 4 70 92 80 75 39 38 50 28 35 <NA> <NA> 48
## 6 5 57 96 40 44 30 25 39 17 35 <NA> <NA> 41
## # ℹ 9 more variables: `712` <chr>, `713` <chr>, `714` <chr>, `715` <chr>,
## # `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>, ...22 <chr>
##
## $benchmark_8_1
## # A tibble: 6 × 25
## ...1 `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810` `811`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 55 69 60 50 55 39 28 26 17 9 22 28
## 3 2 72 86 80 76 77 91 60 70 47 18 33 72
## 4 3 62 59 53 57 66 34 68 26 26 9 33 32
## 5 4 24 38 20 23 25 21 40 35 43 0 44 28
## 6 5 86 72 80 80 88 82 68 74 30 73 22 56
## # ℹ 12 more variables: `812` <chr>, `813` <chr>, `814` <chr>, `815` <chr>,
## # `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>, `820` <dbl>,
## # `821` <chr>, `822` <chr>, ...25 <chr>
##
## $benchmark_8_2
## # A tibble: 6 × 25
## ...1 `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810` `811`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 96 96 73 50 60.7 79.2 39 52 27.3 <NA> ??? 27
## 3 2 82 86 90 73.0… 71.4… 83.3 54 64 36.4 <NA> <NA> 85
## 4 3 67 64 66 84.5… 78.5… 70.8 62 48 54.5 <NA> <NA> 54
## 5 4 41 54 50 38.5 53.6 50 35 48 36.4 <NA> <NA> 23
## 6 5 96 93 87 73.0… 78.5… 79.2 62 56 72.7 <NA> <NA> 65
## # ℹ 12 more variables: `812` <chr>, `813` <chr>, `814` <chr>, `815` <chr>,
## # `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>, `820` <chr>,
## # `821` <chr>, `822` <chr>, ...25 <chr>
##
## $benchmark_8_3
## # A tibble: 6 × 25
## ...1 `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810` `811`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Quest… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co… % Co…
## 2 1 <NA> <NA> 100 72 93 81 54 72 48 <NA> <NA> 69
## 3 2 <NA> <NA> 100 84 97 86 77 86 81 <NA> <NA> 81
## 4 3 <NA> <NA> 100 84 97 95 85 79 71 <NA> <NA> 81
## 5 4 <NA> <NA> 100 72 97 76 62 76 57 <NA> <NA> 81
## 6 5 <NA> <NA> 100 92 90 95 66 76 86 <NA> <NA> 88
## # ℹ 12 more variables: `812` <chr>, `813` <chr>, `814` <chr>, `815` <chr>,
## # `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>, `820` <chr>,
## # `821` <chr>, `822` <chr>, ...25 <chr>
## tibble [28 × 22] (S3: tbl_df/tbl/data.frame)
## $ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## $ 700 : chr [1:28] "% Correct" "23" "52" "39" ...
## $ 701 : chr [1:28] "% Correct" "24" "36" "40" ...
## $ 702 : chr [1:28] "% Correct" "24" "48" "33" ...
## $ 703 : chr [1:28] "% Correct" "6" "38" "19" ...
## $ 704 : chr [1:28] "% Correct" "23" "36" "23" ...
## $ 705 : chr [1:28] "% Correct" "24" "34" "14" ...
## $ 706 : chr [1:28] "% Correct" "14" "32" "46" ...
## $ 707...10: chr [1:28] "% Correct" "18.5185185185185" "25.9259259259259" "25.9259259259259" ...
## $ 708 : chr [1:28] "% Correct" "21" "25" "39" ...
## $ 709 : chr [1:28] "% Correct" "14" "0" "14" ...
## $ 710 : chr [1:28] "% Correct" "10" "60" "0" ...
## $ 711...15: chr [1:28] "% Correct" "13.3333333333333" "36.6666666666667" "26.6666666666667" ...
## $ 712...17: chr [1:28] "% Correct" "20" "33.3333333333333" "36.6666666666667" ...
## $ 713...20: chr [1:28] "% Correct" "28.5714285714286" "46.4285714285714" "35.7142857142857" ...
## $ 714...22: chr [1:28] "% Correct" "3.57142857142857" "53.5714285714286" "28.5714285714286" ...
## $ 715 : chr [1:28] "% Correct" "30" "41" "30" ...
## $ 716 : chr [1:28] "% Correct" "32" "59" "32" ...
## $ 717 : chr [1:28] "% Correct" "21.4285714285714" "25" "46.4285714285714" ...
## $ 718 : chr [1:28] "% Correct" "46.1538461538462" "57.6923076923077" "26.9230769230769" ...
## $ 719 : chr [1:28] "% Correct" "22" "33" "22" ...
## $ ...28 : chr [1:28] "Per Question Average" "17.2529664068126" "32.2545474468551" "24.3421777652547" ...
## tibble [28 × 22] (S3: tbl_df/tbl/data.frame)
## $ ...1 : chr [1:28] "Question" "1" "2" "3" ...
## $ 700 : chr [1:28] "% Correct" "23" "52" "39" ...
## $ 701 : chr [1:28] "% Correct" "24" "36" "40" ...
## $ 702 : chr [1:28] "% Correct" "24" "48" "33" ...
## $ 703 : chr [1:28] "% Correct" "6" "38" "19" ...
## $ 704 : chr [1:28] "% Correct" "23" "36" "23" ...
## $ 705 : chr [1:28] "% Correct" "24" "34" "14" ...
## $ 706 : chr [1:28] "% Correct" "14" "32" "46" ...
## $ 707 : chr [1:28] "% Correct" "18.5185185185185" "25.9259259259259" "25.9259259259259" ...
## $ 708 : chr [1:28] "% Correct" "21" "25" "39" ...
## $ 709 : chr [1:28] "% Correct" "14" "0" "14" ...
## $ 710 : chr [1:28] "% Correct" "10" "60" "0" ...
## $ 711 : chr [1:28] "% Correct" "13.3333333333333" "36.6666666666667" "26.6666666666667" ...
## $ 712 : chr [1:28] "% Correct" "20" "33.3333333333333" "36.6666666666667" ...
## $ 713 : chr [1:28] "% Correct" "28.5714285714286" "46.4285714285714" "35.7142857142857" ...
## $ 714 : chr [1:28] "% Correct" "3.57142857142857" "53.5714285714286" "28.5714285714286" ...
## $ 715 : chr [1:28] "% Correct" "30" "41" "30" ...
## $ 716 : chr [1:28] "% Correct" "32" "59" "32" ...
## $ 717 : chr [1:28] "% Correct" "21.4285714285714" "25" "46.4285714285714" ...
## $ 718 : chr [1:28] "% Correct" "46.1538461538462" "57.6923076923077" "26.9230769230769" ...
## $ 719 : chr [1:28] "% Correct" "22" "33" "22" ...
## $ ...28: chr [1:28] "Per Question Average" "17.2529664068126" "32.2545474468551" "24.3421777652547" ...
It looks like the row %correct
is a part of the data
which will mess up with any further analysis.I am going to take of that
on the section of Exploring each tab so I can be able to proceed with
visualizing and exploring the data.
Data Structure: Observing the output reveals the following key points:
Column Names: The first column, which is intended to represent question numbers, is currently lacking a meaningful header. This should be changed to “Questions” for clarity. A clear and informative column header enhances readability and understanding when analyzing the data.
Subheadings: The remaining columns are labeled “% Correct.” While this indicates the percentage of correct responses for each question, the uniformity of the header name across multiple columns can create confusion during analysis. It is crucial to rename these headers appropriately (e.g., “600” “817,” “715”) to avoid ambiguity and ensure accurate referencing in subsequent analysis.
Importance of Tidy Data: Tidy data principles dictate that each variable should have its own column, and each observation should have its own row. Ensuring that the structure adheres to these principles will facilitate more effective data manipulation and analysis later on, reducing the potential for errors and misunderstandings during interpretation.
In this section, we assess the quality of our data by examining the presence of missing values across the benchmark datasets. Understanding the extent and pattern of missing data is crucial for determining the reliability of our analysis.
Visualizing Missing Data: We utilize the vis_miss() function from the naniar package to create heatmaps for each benchmark dataset. This visualization provides a clear representation of missing values, where missing data is indicated by a distinct color, allowing for easy identification of patterns.
Findings:
7th Grade Benchmark 1: Notably, this benchmark dataset is complete with no missing values. This indicates a high-quality dataset, which is beneficial for further analysis.
6th Grade - Benchmark 1&3:The analysis indicates that five classes in these benchmarks have approximately 96% of their data missing. In contrast, the remaining classes exhibit around 4% missing data.This substantial amount of missing data raises concerns regarding data collection processes, possibly hinting at issues such as student attendance or incomplete assessments. It is important to recognize that such gaps may lead to skewed interpretations of the overall cohort’s performance on specific questions.
Impact on Analysis: High proportions of missing data can have serious implications for our analysis. They may lead to biases if not adequately addressed, and thus it’s essential to consider these gaps when drawing conclusions about student performance and trends. Careful handling of missing data, whether through imputation or exclusion, will be necessary as we proceed with our analysis to ensure our findings are valid and reflective of the actual student performance.
For the reasons mentioned above, removing columns with 100% missing values is generally a good approach. Here’s why:
No Information: These columns contain no usable data, so they don’t contribute any insights or values to my analysis.
Simplify the Dataset: Reducing the number of columns makes the dataset cleaner and easier to work with. It can also reduce the complexity of any data visualizations or statistical models I create.
Computational Efficiency: When performing computations on the dataset, removing completely empty columns can save on processing time and memory usage. The cleaning process will be taken care of in teh section “Cleaning the Data”
In this section, we focus on enhancing the structure of our data for effective analysis. Each benchmark dataset has its unique format and organization, and we aim to standardize these formats to facilitate easier manipulation and analysis.
Improving Data Structure: - We initiate the process by creating a loop to iterate through the first three benchmark datasets (6th Grade Benchmark 1, 6th Grade Benchmark 2, and 6th Grade Benchmark 3) from our benchmarks_list.
The main goal is to refine the data structure by:
Removing Redundant Rows: The first row of each dataset, which contains the header % Correct, is removed. This ensures that our main data begins with the relevant class scores, avoiding any confusion or errors in subsequent analyses.
Renaming Columns: The first column is renamed to “Questions” for clarity, as it now represents the specific question numbers. Furthermore, we rename the last two columns to “Per_Question_Average” and “Skills.” This naming convention will help maintain consistency across datasets and enhance readability.
## tibble [27 × 26] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 600 : chr [1:27] "41" "62" "38" "55" ...
## $ 601 : chr [1:27] "60" "63" "30" "66" ...
## $ 602 : chr [1:27] "50" "50" "43" "46" ...
## $ 603 : chr [1:27] "50" "50" "20" "50" ...
## $ 604 : chr [1:27] "55" "48" "30" "33" ...
## $ 605 : chr [1:27] "22" "17" "9" "39" ...
## $ 606 : chr [1:27] "25" "33" "17" "54" ...
## $ 607 : chr [1:27] "12" "24" "36" "20" ...
## $ 608 : chr [1:27] "31" "65" "27" "42" ...
## $ 609 : chr [1:27] "48" "50" "15" "32" ...
## $ 610 : chr [1:27] "50" "49" "18" "35" ...
## $ 611 : chr [1:27] "39" "39" "23" "35" ...
## $ 612 : chr [1:27] "50" "50" "38" "23" ...
## $ 613 : chr [1:27] "54" "50" "25" "33" ...
## $ 614 : chr [1:27] "40" "43" "20" "33" ...
## $ 615 : chr [1:27] NA NA NA NA ...
## $ 616 : chr [1:27] "53" "40" "23" "60" ...
## $ 617 : chr [1:27] "34" "62" "14" "45" ...
## $ 618 : chr [1:27] NA NA NA NA ...
## $ 619 : chr [1:27] NA NA NA NA ...
## $ 620 : chr [1:27] NA NA NA NA ...
## $ 621 : chr [1:27] "50" "50" "17" "33" ...
## $ 676 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "42.4444444444444" "46.9444444444444" "24.6111111111111" "40.7777777777778" ...
## $ Skills : chr [1:27] "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" "Plan and Carry Out Investigations" ...
In this extended section, we further refine our dataset by processing the next set of benchmark data for the 7th Grade assessments. This ensures that all relevant datasets are uniformly structured for effective analysis.
The loop performs the following tasks:
Conditional Row Removal: We first check if the first row contains the header % Correct. If this header exists, we remove the first row. This condition prevents unnecessary removal in cases where the header might not be present, maintaining the integrity of our data.
Column Renaming: The first column is renamed to “Questions,” indicating it now represents specific question identifiers. This clarity is crucial for later analyses. The last column is renamed to “Per_Question_Average,” indicating the average score per question across all classes. This column will be instrumental when assessing overall performance.
## tibble [27 × 22] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 700 : chr [1:27] "23" "52" "39" "61" ...
## $ 701 : chr [1:27] "24" "36" "40" "48" ...
## $ 702 : chr [1:27] "24" "48" "33" "62" ...
## $ 703 : chr [1:27] "6" "38" "19" "63" ...
## $ 704 : chr [1:27] "23" "36" "23" "41" ...
## $ 705 : chr [1:27] "24" "34" "14" "14" ...
## $ 706 : chr [1:27] "14" "32" "46" "32" ...
## $ 707 : chr [1:27] "18.5185185185185" "25.9259259259259" "25.9259259259259" "25.9259259259259" ...
## $ 708 : chr [1:27] "21" "25" "39" "29" ...
## $ 709 : chr [1:27] "14" "0" "14" "14" ...
## $ 710 : chr [1:27] "10" "60" "0" "10" ...
## $ 711 : chr [1:27] "13.3333333333333" "36.6666666666667" "26.6666666666667" "40" ...
## $ 712 : chr [1:27] "20" "33.3333333333333" "36.6666666666667" "36.6666666666667" ...
## $ 713 : chr [1:27] "28.5714285714286" "46.4285714285714" "35.7142857142857" "28.5714285714286" ...
## $ 714 : chr [1:27] "3.57142857142857" "53.5714285714286" "28.5714285714286" "46.4285714285714" ...
## $ 715 : chr [1:27] "30" "41" "30" "41" ...
## $ 716 : chr [1:27] "32" "59" "32" "36" ...
## $ 717 : chr [1:27] "21.4285714285714" "25" "46.4285714285714" "28.5714285714286" ...
## $ 718 : chr [1:27] "46.1538461538462" "57.6923076923077" "26.9230769230769" "3.84615384615385" ...
## $ 719 : chr [1:27] "22" "33" "22" "22" ...
## $ Per_Question_Average: chr [1:27] "17.2529664068126" "32.2545474468551" "24.3421777652547" "28.6542375003913" ...
In this concluding part of our data exploration, we complete the process of refining the datasets for the 8th Grade benchmarks. This ensures that all data across the various grade levels is consistent and ready for analysis. Here, I focuse on the last three benchmark datasets (8th Grade Benchmark 1, 8th Grade Benchmark 2, and 8th Grade Benchmark 3). The loop aims to ensure that these datasets are also formatted in a manner consistent with previous datasets.
## tibble [27 × 25] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 800 : chr [1:27] "55" "72" "62" "24" ...
## $ 801 : chr [1:27] "69" "86" "59" "38" ...
## $ 802 : chr [1:27] "60" "80" "53" "20" ...
## $ 803 : chr [1:27] "50" "76" "57" "23" ...
## $ 804 : chr [1:27] "55" "77" "66" "25" ...
## $ 805 : chr [1:27] "39" "91" "34" "21" ...
## $ 806 : chr [1:27] "28" "60" "68" "40" ...
## $ 807 : chr [1:27] "26" "70" "26" "35" ...
## $ 808 : chr [1:27] "17" "47" "26" "43" ...
## $ 809 : chr [1:27] "9" "18" "9" "0" ...
## $ 810 : chr [1:27] "22" "33" "33" "44" ...
## $ 811 : chr [1:27] "28" "72" "32" "28" ...
## $ 812 : chr [1:27] "52" "61" "44" "22" ...
## $ 813 : chr [1:27] "50" "79" "71" "42" ...
## $ 814 : chr [1:27] "38" "71" "38" "29" ...
## $ 815 : chr [1:27] "76" "88" "50" "42" ...
## $ 816 : chr [1:27] "59" "89" "63" "44" ...
## $ 817 : chr [1:27] "23" "50" "35" "15" ...
## $ 818 : chr [1:27] "31" "42" "23" "35" ...
## $ 819 : chr [1:27] "15" "55" "35" "15" ...
## $ 820 : num [1:27] NA NA NA NA NA NA NA NA NA NA ...
## $ 821 : chr [1:27] NA NA NA NA ...
## $ 822 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "40.1" "65.84999999999999" "44.2" "29.25" ...
After making these modifications, the updated data frame is saved back to the benchmarks_list at the appropriate index. This finalizes the clean-up process for all datasets included in our analysis.
The structure of the seventh dataset (8th Grade Benchmark 1) is checked using the str() and head() functions. This step serves as a confirmation that the column names and data types are correct and ready for further exploration and analysis.
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 55 69 60 50 55 39 28 26 17 9 22
## 2 2 72 86 80 76 77 91 60 70 47 18 33
## 3 3 62 59 53 57 66 34 68 26 26 9 33
## 4 4 24 38 20 23 25 21 40 35 43 0 44
## 5 5 86 72 80 80 88 82 68 74 30 73 22
## 6 6 83 90 80 69 92 69 56 78 60 55 33
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <dbl>, `821` <chr>, `822` <chr>, Per_Question_Average <chr>
Next, I implement a crucial step to ensure the integrity of our data before proceeding with further analysis: checking for any empty data frames within our benchmarks_list.
The primary goal is to identify any data frames that may not contain any rows (i.e., are empty). This is an important quality control step, as empty data frames could indicate issues with data loading or data extraction processes. These empty frames would not provide any useful information for our analysis and could lead to errors if not addressed.
## benchmark_6_1 benchmark_6_2 benchmark_6_3 benchmark_7_1 benchmark_7_2
## FALSE FALSE FALSE FALSE FALSE
## benchmark_7_3 benchmark_8_1 benchmark_8_2 benchmark_8_3
## FALSE FALSE FALSE FALSE
The output of the data above integrity check indicates that none of the benchmark data frames are empty. The output shows “FALSE” for all nine benchmarks, which means that every data frame contains rows of data. This is a positive outcome, as it confirms that the data has been successfully loaded for all benchmark assessments across the three grade levels.
The next exploration section plays a crucial role in both understanding the datasets and preparing for more detailed analyses. It highlights not only the overall performance trends but also areas where students may need additional support.
##
##
## ### Exploring Benchmark 1 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 26
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 41 60 50 50 55 22 25 12 31 48 50
## 2 2 62 63 50 50 48 17 33 24 65 50 49
## 3 3 38 30 43 20 30 9 17 36 27 15 18
## 4 4 55 66 46 50 33 39 54 20 42 32 35
## 5 5 52 60 56 63 44 22 38 40 31 40 32
## 6 6 21 26 33 30 33 22 42 24 38 10 17
## # ℹ 14 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `676` <chr>, Per_Question_Average <chr>,
## # Skills <chr>
##
## ### Structure of the Data ###
## tibble [27 × 26] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 600 : chr [1:27] "41" "62" "38" "55" ...
## $ 601 : chr [1:27] "60" "63" "30" "66" ...
## $ 602 : chr [1:27] "50" "50" "43" "46" ...
## $ 603 : chr [1:27] "50" "50" "20" "50" ...
## $ 604 : chr [1:27] "55" "48" "30" "33" ...
## $ 605 : chr [1:27] "22" "17" "9" "39" ...
## $ 606 : chr [1:27] "25" "33" "17" "54" ...
## $ 607 : chr [1:27] "12" "24" "36" "20" ...
## $ 608 : chr [1:27] "31" "65" "27" "42" ...
## $ 609 : chr [1:27] "48" "50" "15" "32" ...
## $ 610 : chr [1:27] "50" "49" "18" "35" ...
## $ 611 : chr [1:27] "39" "39" "23" "35" ...
## $ 612 : chr [1:27] "50" "50" "38" "23" ...
## $ 613 : chr [1:27] "54" "50" "25" "33" ...
## $ 614 : chr [1:27] "40" "43" "20" "33" ...
## $ 615 : chr [1:27] NA NA NA NA ...
## $ 616 : chr [1:27] "53" "40" "23" "60" ...
## $ 617 : chr [1:27] "34" "62" "14" "45" ...
## $ 618 : chr [1:27] NA NA NA NA ...
## $ 619 : chr [1:27] NA NA NA NA ...
## $ 620 : chr [1:27] NA NA NA NA ...
## $ 621 : chr [1:27] "50" "50" "17" "33" ...
## $ 676 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "42.4444444444444" "46.9444444444444" "24.6111111111111" "40.7777777777778" ...
## $ Skills : chr [1:27] "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" "Plan and Carry Out Investigations" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 600 601 602
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 603 604 605 606
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 607 608 609 610
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 611 612 613 614
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 615 616 617 618
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 619 620 621 676
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## Per_Question_Average Skills
## Length:27 Length:27
## Class :character Class :character
## Mode :character Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 2 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 27
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 90 96 93 93 77 58 82 70 58 ??? <NA>
## 2 2 90 86 81 60 54 46 46 50 26 <NA> <NA>
## 3 3 55 57 44 43 41 55 18 20 21 <NA> <NA>
## 4 4 59 64 44 73 32 29 14 30 30 <NA> <NA>
## 5 5 76 86 67 83 77 21 36 45 83 <NA> <NA>
## 6 6 31 7 22 33 14 42 23 60 17 <NA> <NA>
## # ℹ 15 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `622` <chr>, `676` <chr>,
## # Per_Question_Average <chr>, Skills <chr>
##
## ### Structure of the Data ###
## tibble [27 × 27] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 600 : chr [1:27] "90" "90" "55" "59" ...
## $ 601 : chr [1:27] "96" "86" "57" "64" ...
## $ 602 : chr [1:27] "93" "81" "44" "44" ...
## $ 603 : chr [1:27] "93" "60" "43" "73" ...
## $ 604 : chr [1:27] "77" "54" "41" "32" ...
## $ 605 : chr [1:27] "58" "46" "55" "29" ...
## $ 606 : chr [1:27] "82" "46" "18" "14" ...
## $ 607 : chr [1:27] "70" "50" "20" "30" ...
## $ 608 : chr [1:27] "58" "26" "21" "30" ...
## $ 609 : chr [1:27] "???" NA NA NA ...
## $ 610 : chr [1:27] NA NA NA NA ...
## $ 611 : chr [1:27] "84" "40" "28" "72" ...
## $ 612 : chr [1:27] "96" "52" "52" "76" ...
## $ 613 : chr [1:27] "80" "48" "28" "44" ...
## $ 614 : chr [1:27] "80" "32" "36" "40" ...
## $ 615 : chr [1:27] "100" "55" "59" "48" ...
## $ 616 : chr [1:27] "92" "62" "46" "73" ...
## $ 617 : chr [1:27] "60" "32" "12" "36" ...
## $ 618 : chr [1:27] "86" "35" "21" "28" ...
## $ 619 : chr [1:27] "85" "44" "56" "37" ...
## $ 620 : chr [1:27] "76" "35" "21" "31" ...
## $ 621 : chr [1:27] "100" "33" "0" "50" ...
## $ 622 : chr [1:27] NA NA NA NA ...
## $ 676 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "81.8947368421053" "51.2631578947368" "37.5263157894737" "45.2631578947368" ...
## $ Skills : chr [1:27] "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" "Plan and Carry Out Investigations" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 600 601 602
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 603 604 605 606
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 607 608 609 610
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 611 612 613 614
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 615 616 617 618
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 619 620 621 622
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 676 Per_Question_Average Skills
## Length:27 Length:27 Length:27
## Class :character Class :character Class :character
## Mode :character Mode :character Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 3 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 25
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `611` `612`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 75 68 66 64 77 76 95 75 87 83 96
## 2 2 93 92 87 94 54 50 55 60 34 58 87
## 3 3 72 76 66 67 39 50 50 28 25 29 73
## 4 4 86 80 59 94 58 39 65 47 34 54 65
## 5 5 86 96 90 94 66 50 50 40 42 67 57
## 6 6 58 44 63 74 39 31 35 20 34 42 44
## # ℹ 13 more variables: `613` <chr>, `614` <chr>, `615` <chr>, `616` <chr>,
## # `617` <chr>, `618` <chr>, `619` <chr>, `620` <chr>, `621` <chr>,
## # `622` <chr>, `676` <chr>, Per_Question_Average <chr>, Skills <chr>
##
## ### Structure of the Data ###
## tibble [27 × 25] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 600 : chr [1:27] "75" "93" "72" "86" ...
## $ 601 : chr [1:27] "68" "92" "76" "80" ...
## $ 602 : chr [1:27] "66" "87" "66" "59" ...
## $ 603 : chr [1:27] "64" "94" "67" "94" ...
## $ 604 : chr [1:27] "77" "54" "39" "58" ...
## $ 605 : chr [1:27] "76" "50" "50" "39" ...
## $ 606 : chr [1:27] "95" "55" "50" "65" ...
## $ 607 : chr [1:27] "75" "60" "28" "47" ...
## $ 608 : chr [1:27] "87" "34" "25" "34" ...
## $ 611 : chr [1:27] "83" "58" "29" "54" ...
## $ 612 : chr [1:27] "96" "87" "73" "65" ...
## $ 613 : chr [1:27] "93" "54" "57" "57" ...
## $ 614 : chr [1:27] "91" "39" "17" "75" ...
## $ 615 : chr [1:27] NA NA NA NA ...
## $ 616 : chr [1:27] "64" "76" "48" "68" ...
## $ 617 : chr [1:27] "83" "66" "35" "41" ...
## $ 618 : chr [1:27] NA NA NA NA ...
## $ 619 : chr [1:27] NA NA NA NA ...
## $ 620 : chr [1:27] NA NA NA NA ...
## $ 621 : chr [1:27] "60" "0" "20" "20" ...
## $ 622 : chr [1:27] NA NA NA NA ...
## $ 676 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "78.3125" "62.4375" "47" "58.875" ...
## $ Skills : chr [1:27] "Question and Problem" "Analyze and Interpret Data/ Cause and Effect" "Plan and Carry Out Investigations/ Cause and Effect" "Plan and Carry Out Investigations" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 600 601 602
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 603 604 605 606
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 607 608 611 612
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 613 614 615 616
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 617 618 619 620
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 621 622 676 Per_Question_Average
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## Skills
## Length:27
## Class :character
## Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 4 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 23 24 24 6 23 24 14 18.5185… 21 14 10
## 2 2 52 36 48 38 36 34 32 25.9259… 25 0 60
## 3 3 39 40 33 19 23 14 46 25.9259… 39 14 0
## 4 4 61 48 62 63 41 14 32 25.9259… 29 14 10
## 5 5 65 48 29 38 32 21 54 33.3333… 21 14 30
## 6 6 57 36 29 50 23 24 14 18.5185… 21 14 10
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 22] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 700 : chr [1:27] "23" "52" "39" "61" ...
## $ 701 : chr [1:27] "24" "36" "40" "48" ...
## $ 702 : chr [1:27] "24" "48" "33" "62" ...
## $ 703 : chr [1:27] "6" "38" "19" "63" ...
## $ 704 : chr [1:27] "23" "36" "23" "41" ...
## $ 705 : chr [1:27] "24" "34" "14" "14" ...
## $ 706 : chr [1:27] "14" "32" "46" "32" ...
## $ 707 : chr [1:27] "18.5185185185185" "25.9259259259259" "25.9259259259259" "25.9259259259259" ...
## $ 708 : chr [1:27] "21" "25" "39" "29" ...
## $ 709 : chr [1:27] "14" "0" "14" "14" ...
## $ 710 : chr [1:27] "10" "60" "0" "10" ...
## $ 711 : chr [1:27] "13.3333333333333" "36.6666666666667" "26.6666666666667" "40" ...
## $ 712 : chr [1:27] "20" "33.3333333333333" "36.6666666666667" "36.6666666666667" ...
## $ 713 : chr [1:27] "28.5714285714286" "46.4285714285714" "35.7142857142857" "28.5714285714286" ...
## $ 714 : chr [1:27] "3.57142857142857" "53.5714285714286" "28.5714285714286" "46.4285714285714" ...
## $ 715 : chr [1:27] "30" "41" "30" "41" ...
## $ 716 : chr [1:27] "32" "59" "32" "36" ...
## $ 717 : chr [1:27] "21.4285714285714" "25" "46.4285714285714" "28.5714285714286" ...
## $ 718 : chr [1:27] "46.1538461538462" "57.6923076923077" "26.9230769230769" "3.84615384615385" ...
## $ 719 : chr [1:27] "22" "33" "22" "22" ...
## $ Per_Question_Average: chr [1:27] "17.2529664068126" "32.2545474468551" "24.3421777652547" "28.6542375003913" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 700 701 702
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 703 704 705 706
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 707 708 709 710
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 711 712 713 714
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 715 716 717 718
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 719 Per_Question_Average
## Length:27 Length:27
## Class :character Class :character
## Mode :character Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 5 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 4 4 5 24 25 13 12 30 13 ??? ???
## 2 2 35 48 10 47 50 39 32 52 35 <NA> <NA>
## 3 3 26 68 10 65 60 78 64 48 39 <NA> <NA>
## 4 4 61 48 62 53 70 30 40 33 26 <NA> <NA>
## 5 5 52 68 29 47 25 22 44 19 39 <NA> <NA>
## 6 6 65 32 43 47 40 26 32 41 30 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 22] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 700 : chr [1:27] "4" "35" "26" "61" ...
## $ 701 : chr [1:27] "4" "48" "68" "48" ...
## $ 702 : chr [1:27] "5" "10" "10" "62" ...
## $ 703 : chr [1:27] "24" "47" "65" "53" ...
## $ 704 : chr [1:27] "25" "50" "60" "70" ...
## $ 705 : chr [1:27] "13" "39" "78" "30" ...
## $ 706 : chr [1:27] "12" "32" "64" "40" ...
## $ 707 : chr [1:27] "30" "52" "48" "33" ...
## $ 708 : chr [1:27] "13" "35" "39" "26" ...
## $ 709 : chr [1:27] "???" NA NA NA ...
## $ 710 : chr [1:27] "???" NA NA NA ...
## $ 711 : chr [1:27] "30" "11" "59" "56" ...
## $ 712 : chr [1:27] "31" "34" "55" "55" ...
## $ 713 : chr [1:27] "18" "36" "61" "50" ...
## $ 714 : chr [1:27] "17" "38" "72" "59" ...
## $ 715 : chr [1:27] "4" "20" "12" "72" ...
## $ 716 : chr [1:27] "0" "24" "10" "62" ...
## $ 717 : chr [1:27] "???" NA NA NA ...
## $ 718 : chr [1:27] "36" "43" "50" "22" ...
## $ 719 : chr [1:27] "38" "46" "38" "31" ...
## $ Per_Question_Average: chr [1:27] "17.8823529411765" "35.2941176470588" "47.9411764705882" "48.8235294117647" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 700 701 702
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 703 704 705 706
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 707 708 709 710
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 711 712 713 714
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 715 716 717 718
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 719 Per_Question_Average
## Length:27 Length:27
## Class :character Class :character
## Mode :character Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 6 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 22 96 25 50 20 38 23 46 26 <NA> <NA>
## 2 2 39 88 5 38 34 34 31 31 31 <NA> <NA>
## 3 3 96 92 90 82 100 63 73 72 44 <NA> <NA>
## 4 4 70 92 80 75 39 38 50 28 35 <NA> <NA>
## 5 5 57 96 40 44 30 25 39 17 35 <NA> <NA>
## 6 6 78 88 65 50 58 55 43 34 31 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 22] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 700 : chr [1:27] "22" "39" "96" "70" ...
## $ 701 : chr [1:27] "96" "88" "92" "92" ...
## $ 702 : chr [1:27] "25" "5" "90" "80" ...
## $ 703 : chr [1:27] "50" "38" "82" "75" ...
## $ 704 : chr [1:27] "20" "34" "100" "39" ...
## $ 705 : chr [1:27] "38" "34" "63" "38" ...
## $ 706 : chr [1:27] "23" "31" "73" "50" ...
## $ 707 : chr [1:27] "46" "31" "72" "28" ...
## $ 708 : chr [1:27] "26" "31" "44" "35" ...
## $ 709 : chr [1:27] NA NA NA NA ...
## $ 710 : chr [1:27] NA NA NA NA ...
## $ 711 : chr [1:27] "45" "24" "72" "48" ...
## $ 712 : chr [1:27] "38" "7" "62" "45" ...
## $ 713 : chr [1:27] "55" "55" "90" "62" ...
## $ 714 : chr [1:27] "59" "34" "72" "55" ...
## $ 715 : chr [1:27] "31" "15" "89" "62" ...
## $ 716 : chr [1:27] "14" "18" "86" "64" ...
## $ 717 : chr [1:27] "63" "63" "89" "81" ...
## $ 718 : chr [1:27] "80" "84" "76" "88" ...
## $ 719 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "43" "37.1176470588235" "79.2941176470588" "59.5294117647059" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 700 701 702
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 703 704 705 706
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 707 708 709 710
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 711 712 713 714
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 715 716 717 718
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 719 Per_Question_Average
## Length:27 Length:27
## Class :character Class :character
## Mode :character Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 7 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 55 69 60 50 55 39 28 26 17 9 22
## 2 2 72 86 80 76 77 91 60 70 47 18 33
## 3 3 62 59 53 57 66 34 68 26 26 9 33
## 4 4 24 38 20 23 25 21 40 35 43 0 44
## 5 5 86 72 80 80 88 82 68 74 30 73 22
## 6 6 83 90 80 69 92 69 56 78 60 55 33
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <dbl>, `821` <chr>, `822` <chr>, Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 25] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 800 : chr [1:27] "55" "72" "62" "24" ...
## $ 801 : chr [1:27] "69" "86" "59" "38" ...
## $ 802 : chr [1:27] "60" "80" "53" "20" ...
## $ 803 : chr [1:27] "50" "76" "57" "23" ...
## $ 804 : chr [1:27] "55" "77" "66" "25" ...
## $ 805 : chr [1:27] "39" "91" "34" "21" ...
## $ 806 : chr [1:27] "28" "60" "68" "40" ...
## $ 807 : chr [1:27] "26" "70" "26" "35" ...
## $ 808 : chr [1:27] "17" "47" "26" "43" ...
## $ 809 : chr [1:27] "9" "18" "9" "0" ...
## $ 810 : chr [1:27] "22" "33" "33" "44" ...
## $ 811 : chr [1:27] "28" "72" "32" "28" ...
## $ 812 : chr [1:27] "52" "61" "44" "22" ...
## $ 813 : chr [1:27] "50" "79" "71" "42" ...
## $ 814 : chr [1:27] "38" "71" "38" "29" ...
## $ 815 : chr [1:27] "76" "88" "50" "42" ...
## $ 816 : chr [1:27] "59" "89" "63" "44" ...
## $ 817 : chr [1:27] "23" "50" "35" "15" ...
## $ 818 : chr [1:27] "31" "42" "23" "35" ...
## $ 819 : chr [1:27] "15" "55" "35" "15" ...
## $ 820 : num [1:27] NA NA NA NA NA NA NA NA NA NA ...
## $ 821 : chr [1:27] NA NA NA NA ...
## $ 822 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "40.1" "65.84999999999999" "44.2" "29.25" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 800 801 802
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## 803 804 805 806
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## 807 808 809 810
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## 811 812 813 814
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## 815 816 817 818
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## 819 820 821 822
## Length:27 Min. : NA Length:27 Length:27
## Class :character 1st Qu.: NA Class :character Class :character
## Mode :character Median : NA Mode :character Mode :character
## Mean :NaN
## 3rd Qu.: NA
## Max. : NA
## NA's :27
## Per_Question_Average
## Length:27
## Class :character
## Mode :character
##
##
##
##
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 8 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 96 96 73 50 60.7 79.2 39 52 27.3 <NA> ???
## 2 2 82 86 90 73.0999… 71.4… 83.3 54 64 36.4 <NA> <NA>
## 3 3 67 64 66 84.5999… 78.5… 70.8 62 48 54.5 <NA> <NA>
## 4 4 41 54 50 38.5 53.6 50 35 48 36.4 <NA> <NA>
## 5 5 96 93 87 73.0999… 78.5… 79.2 62 56 72.7 <NA> <NA>
## 6 6 82 89 97 88.5 89.3 70.8 66 60 77.3 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 25] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 800 : chr [1:27] "96" "82" "67" "41" ...
## $ 801 : chr [1:27] "96" "86" "64" "54" ...
## $ 802 : chr [1:27] "73" "90" "66" "50" ...
## $ 803 : chr [1:27] "50" "73.09999999999999" "84.59999999999999" "38.5" ...
## $ 804 : chr [1:27] "60.7" "71.40000000000001" "78.59999999999999" "53.6" ...
## $ 805 : chr [1:27] "79.2" "83.3" "70.8" "50" ...
## $ 806 : chr [1:27] "39" "54" "62" "35" ...
## $ 807 : chr [1:27] "52" "64" "48" "48" ...
## $ 808 : chr [1:27] "27.3" "36.4" "54.5" "36.4" ...
## $ 809 : chr [1:27] NA NA NA NA ...
## $ 810 : chr [1:27] "???" NA NA NA ...
## $ 811 : chr [1:27] "27" "85" "54" "23" ...
## $ 812 : chr [1:27] "46" "64" "64" "36" ...
## $ 813 : chr [1:27] "52" "61" "44" "52" ...
## $ 814 : chr [1:27] "32" "64" "46" "41" ...
## $ 815 : chr [1:27] "50" "84.59999999999999" "65.40000000000001" "34.6" ...
## $ 816 : chr [1:27] "96" "89" "82" "44" ...
## $ 817 : chr [1:27] "43" "31" "46" "50" ...
## $ 818 : chr [1:27] "62" "65" "62" "62" ...
## $ 819 : chr [1:27] "30" "61" "57" "30" ...
## $ 820 : chr [1:27] NA NA NA NA ...
## $ 821 : chr [1:27] NA NA NA NA ...
## $ 822 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "56.1777777777778" "69.15555555555559" "61.9944444444444" "43.2833333333333" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 800 801 802
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 803 804 805 806
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 807 808 809 810
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 811 812 813 814
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 815 816 817 818
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 819 820 821 822
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## Per_Question_Average
## Length:27
## Class :character
## Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
##
##
## ### Exploring Benchmark 9 ###
## ### First Few Rows of the Data ###
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 <NA> <NA> 100 72 93 81 54 72 48 <NA> <NA>
## 2 2 <NA> <NA> 100 84 97 86 77 86 81 <NA> <NA>
## 3 3 <NA> <NA> 100 84 97 95 85 79 71 <NA> <NA>
## 4 4 <NA> <NA> 100 72 97 76 62 76 57 <NA> <NA>
## 5 5 <NA> <NA> 100 92 90 95 66 76 86 <NA> <NA>
## 6 6 <NA> <NA> 100 84 97 100 73 72 57 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <chr>
##
## ### Structure of the Data ###
## tibble [27 × 25] (S3: tbl_df/tbl/data.frame)
## $ Questions : chr [1:27] "1" "2" "3" "4" ...
## $ 800 : chr [1:27] NA NA NA NA ...
## $ 801 : chr [1:27] NA NA NA NA ...
## $ 802 : chr [1:27] "100" "100" "100" "100" ...
## $ 803 : chr [1:27] "72" "84" "84" "72" ...
## $ 804 : chr [1:27] "93" "97" "97" "97" ...
## $ 805 : chr [1:27] "81" "86" "95" "76" ...
## $ 806 : chr [1:27] "54" "77" "85" "62" ...
## $ 807 : chr [1:27] "72" "86" "79" "76" ...
## $ 808 : chr [1:27] "48" "81" "71" "57" ...
## $ 809 : chr [1:27] NA NA NA NA ...
## $ 810 : chr [1:27] NA NA NA NA ...
## $ 811 : chr [1:27] "69" "81" "81" "81" ...
## $ 812 : chr [1:27] NA NA NA NA ...
## $ 813 : chr [1:27] "85" "90" "80" "85" ...
## $ 814 : chr [1:27] "88" "88" "79" "88" ...
## $ 815 : chr [1:27] "84" "100" "92" "92" ...
## $ 816 : chr [1:27] NA NA NA NA ...
## $ 817 : chr [1:27] "83" "90" "90" "80" ...
## $ 818 : chr [1:27] "71" "88" "79" "88" ...
## $ 819 : chr [1:27] NA NA NA NA ...
## $ 820 : chr [1:27] NA NA NA NA ...
## $ 821 : chr [1:27] NA NA NA NA ...
## $ 822 : chr [1:27] NA NA NA NA ...
## $ Per_Question_Average: chr [1:27] "76.92307692307691" "88.30769230769231" "85.5384615384615" "81.07692307692309" ...
## NULL
##
## ### Summary Statistics of the Data ###
## Questions 800 801 802
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 803 804 805 806
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 807 808 809 810
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 811 812 813 814
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 815 816 817 818
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## 819 820 821 822
## Length:27 Length:27 Length:27 Length:27
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
## Per_Question_Average
## Length:27
## Class :character
## Mode :character
## Warning in explore_data(benchmarks_list[[i]]): NAs introduced by coercion
##
## ### Histogram of Per_Question_Average ###
## Warning: Removed 1 row containing non-finite outside the scale range
## (`stat_bin()`).
##
## ### Bar Plot of Per_Question_Average by Question ###
The histogram (blue graphs) helps to see the overall spread of average scores across all questions by showing how frequently each score range appears. This the question that is answered by the histogram: How often do different average scores appear?
The bar plot (green plots) provides a direct comparison of individual question scores, helping identify which questions scored higher or lower on average. This is the question that is answered by the bar plot: What is the average score for each question?
6th Grade Benchmark 1: Bimodal Distribution, The histogram shows two prominent peaks (tall bars) at different ranges: one around 33 to 37 and another around 23 to 27. This indicates that there are two groups of questions that were scored significantly differently, suggesting that some questions were more accessible than others.In other words, This bimodal nature suggests varied levels of understanding among students, with certain questions being much more challenging than others. The presence of low-scoring averages indicates that many students struggled overall.
6th Grade Benchmark 2: Right-Skewed Distribution, The tallest bar is found in the range of 57 to 63, with several shorter bars extending towards lower scores. The frequency of questions decreases as you move towards the lower score ranges (27 to 33), indicating that most students performed better on this benchmark compared to the first. This right-skewed distribution implies that while there was some improvement, there are still questions that posed difficulties for students. The data suggest a gradual increase in understanding, with some students still lagging in certain areas.
6th Grade Benchmark 3: Unimodal Distribution, The tallest bar, representing 8 questions, is located between 63 and 67, with fewer questions showing lower average scores. Most questions cluster around this higher range, indicating that students are performing better overall.This unimodal distribution suggests that there is a more unified performance level across the questions. The peak indicates an overall increase in students’ understanding and mastery of the material covered in this benchmark.
7th Grade Benchmarks:
Benchmark 1 shows a left-skewed distribution, suggesting that a majority of questions were challenging for students, with a cluster of lower scores.
Benchmark 2 transitions into a multimodal distribution, showing improvements but still with a broad range of performance, indicating uneven understanding of the material.
Benchmark 3 presents a bimodal distribution, where the peaks at both mid-range and higher scores suggest that some students demonstrated mastery while others still struggled, especially with certain concepts.
8th Grade Benchmark
Benchmark 1 shows a multimodal distribution, indicating varied student performance with several peaks. There are clusters of scores around the middle, suggesting that some students excelled on specific sets of questions while others struggled, leading to an uneven performance pattern.
Benchmark 2 shifts to a right-skewed distribution, indicating overall improvement. More students scored higher on this benchmark, with the majority of averages falling in the upper ranges.
Benchmark 3 continues the right-skewed pattern, with students clustering around higher scores, implying sustained improvement and mastery of many of the concepts tested.
After these plots, it is a good idea to have a quick overview of
missing values in the dataset. Knowing where and how much data is
missing helps ensure that your analysis of Per_Question_Average and
Questions is based on complete or mostly complete data. I am going to
use the function vis_miss
which will help identify some
abnormalities (for example question 7 on 6th grade benchmark 1 has a
high average which gets lower in the 2nd benchmark) seeing missing data
for that question can give context to those values. In other words, we
will be able to identify if these averages are due to missing values.
Moreover, detecting missing values early can guide any further cleaning
steps I might need to take. If certain questions have high amounts of
missing data, I can decide whether to fill in, omit, or address those
missing values before proceeding with more detailed analysis.
In this step, we inspected the dataset to confirm the presence of the necessary columns. The dataset contains the following columns:
## [1] "Columns before selection: Questions, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, Per_Question_Average"
By reviewing this structure, we ensure that all the necessary columns
are available for further analysis, which includes comparing performance
across different benchmarks and identifying trends in student
performance for each question using the
Per_Question_Average
.
## $benchmark_6_1
## $benchmark_6_1$Questions
## [1] "Class Average"
##
## $benchmark_6_1$`600`
## character(0)
##
## $benchmark_6_1$`601`
## character(0)
##
## $benchmark_6_1$`602`
## character(0)
##
## $benchmark_6_1$`603`
## character(0)
##
## $benchmark_6_1$`604`
## character(0)
##
## $benchmark_6_1$`605`
## character(0)
##
## $benchmark_6_1$`606`
## character(0)
##
## $benchmark_6_1$`607`
## character(0)
##
## $benchmark_6_1$`608`
## character(0)
##
## $benchmark_6_1$`609`
## character(0)
##
## $benchmark_6_1$`610`
## character(0)
##
## $benchmark_6_1$`611`
## character(0)
##
## $benchmark_6_1$`612`
## character(0)
##
## $benchmark_6_1$`613`
## character(0)
##
## $benchmark_6_1$`614`
## character(0)
##
## $benchmark_6_1$`615`
## character(0)
##
## $benchmark_6_1$`616`
## character(0)
##
## $benchmark_6_1$`617`
## character(0)
##
## $benchmark_6_1$`618`
## character(0)
##
## $benchmark_6_1$`619`
## character(0)
##
## $benchmark_6_1$`620`
## character(0)
##
## $benchmark_6_1$`621`
## [1] "Class has 6 students"
##
## $benchmark_6_1$`676`
## character(0)
##
## $benchmark_6_1$Per_Question_Average
## [1] "Grade Average"
##
## $benchmark_6_1$Skills
## [1] "Question and Problem"
## [2] "Analyze and Interpret Data/ Cause and Effect"
## [3] "Plan and Carry Out Investigations/ Cause and Effect"
## [4] "Plan and Carry Out Investigations"
## [5] "Analyze and Interpret Data"
## [6] "Construct an Explanations and Design Solutions"
## [7] "Developing and Using Models/ System and System Models"
## [8] "Construct an Explanations and Design Solutions/ Stability and Change"
## [9] "Analyze and Interpret Data/ Patterns"
## [10] "Developing and Using Models/ Patterns"
## [11] "Developing and Using Models/ Cause and Effect"
## [12] "Developing and Using Models"
## [13] "Construct an Explanations and Design Solutions/ Cause and Effect"
##
##
## $benchmark_6_2
## $benchmark_6_2$Questions
## [1] "Class Average"
##
## $benchmark_6_2$`600`
## character(0)
##
## $benchmark_6_2$`601`
## character(0)
##
## $benchmark_6_2$`602`
## character(0)
##
## $benchmark_6_2$`603`
## character(0)
##
## $benchmark_6_2$`604`
## character(0)
##
## $benchmark_6_2$`605`
## character(0)
##
## $benchmark_6_2$`606`
## character(0)
##
## $benchmark_6_2$`607`
## character(0)
##
## $benchmark_6_2$`608`
## character(0)
##
## $benchmark_6_2$`609`
## [1] "???"
##
## $benchmark_6_2$`610`
## character(0)
##
## $benchmark_6_2$`611`
## character(0)
##
## $benchmark_6_2$`612`
## character(0)
##
## $benchmark_6_2$`613`
## character(0)
##
## $benchmark_6_2$`614`
## character(0)
##
## $benchmark_6_2$`615`
## character(0)
##
## $benchmark_6_2$`616`
## character(0)
##
## $benchmark_6_2$`617`
## character(0)
##
## $benchmark_6_2$`618`
## character(0)
##
## $benchmark_6_2$`619`
## character(0)
##
## $benchmark_6_2$`620`
## character(0)
##
## $benchmark_6_2$`621`
## character(0)
##
## $benchmark_6_2$`622`
## character(0)
##
## $benchmark_6_2$`676`
## character(0)
##
## $benchmark_6_2$Per_Question_Average
## [1] "Grade Average"
##
## $benchmark_6_2$Skills
## [1] "Question and Problem"
## [2] "Analyze and Interpret Data/ Cause and Effect"
## [3] "Plan and Carry Out Investigations/ Cause and Effect"
## [4] "Plan and Carry Out Investigations"
## [5] "Analyze and Interpret Data"
## [6] "Construct an Explanations and Design Solutions"
## [7] "Developing and Using Models/ System and System Models"
## [8] "Construct an Explanations and Design Solutions/ Stability and Change"
## [9] "Analyze and Interpret Data/ Patterns"
## [10] "Developing and Using Models/ Patterns"
## [11] "Developing and Using Models/ Cause and Effect"
## [12] "Developing and Using Models"
## [13] "Construct an Explanations and Design Solutions/ Cause and Effect"
##
##
## $benchmark_6_3
## $benchmark_6_3$Questions
## [1] "Class Average"
##
## $benchmark_6_3$`600`
## character(0)
##
## $benchmark_6_3$`601`
## character(0)
##
## $benchmark_6_3$`602`
## character(0)
##
## $benchmark_6_3$`603`
## character(0)
##
## $benchmark_6_3$`604`
## character(0)
##
## $benchmark_6_3$`605`
## character(0)
##
## $benchmark_6_3$`606`
## character(0)
##
## $benchmark_6_3$`607`
## character(0)
##
## $benchmark_6_3$`608`
## character(0)
##
## $benchmark_6_3$`611`
## character(0)
##
## $benchmark_6_3$`612`
## character(0)
##
## $benchmark_6_3$`613`
## character(0)
##
## $benchmark_6_3$`614`
## character(0)
##
## $benchmark_6_3$`615`
## character(0)
##
## $benchmark_6_3$`616`
## character(0)
##
## $benchmark_6_3$`617`
## character(0)
##
## $benchmark_6_3$`618`
## character(0)
##
## $benchmark_6_3$`619`
## character(0)
##
## $benchmark_6_3$`620`
## character(0)
##
## $benchmark_6_3$`621`
## character(0)
##
## $benchmark_6_3$`622`
## character(0)
##
## $benchmark_6_3$`676`
## character(0)
##
## $benchmark_6_3$Per_Question_Average
## [1] "Grade Average"
##
## $benchmark_6_3$Skills
## [1] "Question and Problem"
## [2] "Analyze and Interpret Data/ Cause and Effect"
## [3] "Plan and Carry Out Investigations/ Cause and Effect"
## [4] "Plan and Carry Out Investigations"
## [5] "Analyze and Interpret Data"
## [6] "Construct an Explanations and Design Solutions"
## [7] "Developing and Using Models/ System and System Models"
## [8] "Construct an Explanations and Design Solutions/ Stability and Change"
## [9] "Analyze and Interpret Data/ Patterns"
## [10] "Developing and Using Models/ Patterns"
## [11] "Developing and Using Models/ Cause and Effect"
## [12] "Developing and Using Models"
## [13] "Construct an Explanations and Design Solutions/ Cause and Effect"
##
##
## $benchmark_7_1
## $benchmark_7_1$Questions
## [1] "Class Average"
##
## $benchmark_7_1$`700`
## character(0)
##
## $benchmark_7_1$`701`
## character(0)
##
## $benchmark_7_1$`702`
## character(0)
##
## $benchmark_7_1$`703`
## character(0)
##
## $benchmark_7_1$`704`
## character(0)
##
## $benchmark_7_1$`705`
## character(0)
##
## $benchmark_7_1$`706`
## character(0)
##
## $benchmark_7_1$`707`
## character(0)
##
## $benchmark_7_1$`708`
## character(0)
##
## $benchmark_7_1$`709`
## character(0)
##
## $benchmark_7_1$`710`
## character(0)
##
## $benchmark_7_1$`711`
## character(0)
##
## $benchmark_7_1$`712`
## character(0)
##
## $benchmark_7_1$`713`
## character(0)
##
## $benchmark_7_1$`714`
## character(0)
##
## $benchmark_7_1$`715`
## character(0)
##
## $benchmark_7_1$`716`
## character(0)
##
## $benchmark_7_1$`717`
## character(0)
##
## $benchmark_7_1$`718`
## character(0)
##
## $benchmark_7_1$`719`
## character(0)
##
## $benchmark_7_1$Per_Question_Average
## [1] "Grade Average"
##
##
## $benchmark_7_2
## $benchmark_7_2$Questions
## [1] "Class Average"
##
## $benchmark_7_2$`700`
## character(0)
##
## $benchmark_7_2$`701`
## character(0)
##
## $benchmark_7_2$`702`
## character(0)
##
## $benchmark_7_2$`703`
## character(0)
##
## $benchmark_7_2$`704`
## character(0)
##
## $benchmark_7_2$`705`
## character(0)
##
## $benchmark_7_2$`706`
## character(0)
##
## $benchmark_7_2$`707`
## character(0)
##
## $benchmark_7_2$`708`
## character(0)
##
## $benchmark_7_2$`709`
## [1] "???"
##
## $benchmark_7_2$`710`
## [1] "???"
##
## $benchmark_7_2$`711`
## character(0)
##
## $benchmark_7_2$`712`
## character(0)
##
## $benchmark_7_2$`713`
## character(0)
##
## $benchmark_7_2$`714`
## character(0)
##
## $benchmark_7_2$`715`
## character(0)
##
## $benchmark_7_2$`716`
## character(0)
##
## $benchmark_7_2$`717`
## [1] "???"
##
## $benchmark_7_2$`718`
## character(0)
##
## $benchmark_7_2$`719`
## character(0)
##
## $benchmark_7_2$Per_Question_Average
## [1] "Grade Average"
##
##
## $benchmark_7_3
## $benchmark_7_3$Questions
## [1] "Class Average"
##
## $benchmark_7_3$`700`
## character(0)
##
## $benchmark_7_3$`701`
## character(0)
##
## $benchmark_7_3$`702`
## character(0)
##
## $benchmark_7_3$`703`
## character(0)
##
## $benchmark_7_3$`704`
## character(0)
##
## $benchmark_7_3$`705`
## character(0)
##
## $benchmark_7_3$`706`
## character(0)
##
## $benchmark_7_3$`707`
## character(0)
##
## $benchmark_7_3$`708`
## character(0)
##
## $benchmark_7_3$`709`
## character(0)
##
## $benchmark_7_3$`710`
## character(0)
##
## $benchmark_7_3$`711`
## character(0)
##
## $benchmark_7_3$`712`
## character(0)
##
## $benchmark_7_3$`713`
## character(0)
##
## $benchmark_7_3$`714`
## character(0)
##
## $benchmark_7_3$`715`
## character(0)
##
## $benchmark_7_3$`716`
## character(0)
##
## $benchmark_7_3$`717`
## character(0)
##
## $benchmark_7_3$`718`
## character(0)
##
## $benchmark_7_3$`719`
## character(0)
##
## $benchmark_7_3$Per_Question_Average
## [1] "Grade Average"
##
##
## $benchmark_8_1
## $benchmark_8_1$Questions
## [1] "Class Average"
##
## $benchmark_8_1$`800`
## character(0)
##
## $benchmark_8_1$`801`
## character(0)
##
## $benchmark_8_1$`802`
## character(0)
##
## $benchmark_8_1$`803`
## character(0)
##
## $benchmark_8_1$`804`
## character(0)
##
## $benchmark_8_1$`805`
## character(0)
##
## $benchmark_8_1$`806`
## character(0)
##
## $benchmark_8_1$`807`
## character(0)
##
## $benchmark_8_1$`808`
## character(0)
##
## $benchmark_8_1$`809`
## character(0)
##
## $benchmark_8_1$`810`
## character(0)
##
## $benchmark_8_1$`811`
## character(0)
##
## $benchmark_8_1$`812`
## character(0)
##
## $benchmark_8_1$`813`
## character(0)
##
## $benchmark_8_1$`814`
## character(0)
##
## $benchmark_8_1$`815`
## character(0)
##
## $benchmark_8_1$`816`
## character(0)
##
## $benchmark_8_1$`817`
## character(0)
##
## $benchmark_8_1$`818`
## character(0)
##
## $benchmark_8_1$`819`
## character(0)
##
## $benchmark_8_1$`820`
## NULL
##
## $benchmark_8_1$`821`
## character(0)
##
## $benchmark_8_1$`822`
## character(0)
##
## $benchmark_8_1$Per_Question_Average
## [1] "Grade Average"
##
##
## $benchmark_8_2
## $benchmark_8_2$Questions
## [1] "Class Average"
##
## $benchmark_8_2$`800`
## character(0)
##
## $benchmark_8_2$`801`
## character(0)
##
## $benchmark_8_2$`802`
## character(0)
##
## $benchmark_8_2$`803`
## character(0)
##
## $benchmark_8_2$`804`
## character(0)
##
## $benchmark_8_2$`805`
## character(0)
##
## $benchmark_8_2$`806`
## character(0)
##
## $benchmark_8_2$`807`
## character(0)
##
## $benchmark_8_2$`808`
## character(0)
##
## $benchmark_8_2$`809`
## character(0)
##
## $benchmark_8_2$`810`
## [1] "???"
##
## $benchmark_8_2$`811`
## character(0)
##
## $benchmark_8_2$`812`
## character(0)
##
## $benchmark_8_2$`813`
## character(0)
##
## $benchmark_8_2$`814`
## character(0)
##
## $benchmark_8_2$`815`
## character(0)
##
## $benchmark_8_2$`816`
## character(0)
##
## $benchmark_8_2$`817`
## character(0)
##
## $benchmark_8_2$`818`
## character(0)
##
## $benchmark_8_2$`819`
## character(0)
##
## $benchmark_8_2$`820`
## character(0)
##
## $benchmark_8_2$`821`
## character(0)
##
## $benchmark_8_2$`822`
## character(0)
##
## $benchmark_8_2$Per_Question_Average
## [1] "Grade Average"
##
##
## $benchmark_8_3
## $benchmark_8_3$Questions
## [1] "Class Average"
##
## $benchmark_8_3$`800`
## character(0)
##
## $benchmark_8_3$`801`
## character(0)
##
## $benchmark_8_3$`802`
## character(0)
##
## $benchmark_8_3$`803`
## character(0)
##
## $benchmark_8_3$`804`
## character(0)
##
## $benchmark_8_3$`805`
## character(0)
##
## $benchmark_8_3$`806`
## character(0)
##
## $benchmark_8_3$`807`
## character(0)
##
## $benchmark_8_3$`808`
## character(0)
##
## $benchmark_8_3$`809`
## character(0)
##
## $benchmark_8_3$`810`
## character(0)
##
## $benchmark_8_3$`811`
## character(0)
##
## $benchmark_8_3$`812`
## character(0)
##
## $benchmark_8_3$`813`
## character(0)
##
## $benchmark_8_3$`814`
## character(0)
##
## $benchmark_8_3$`815`
## character(0)
##
## $benchmark_8_3$`816`
## character(0)
##
## $benchmark_8_3$`817`
## character(0)
##
## $benchmark_8_3$`818`
## character(0)
##
## $benchmark_8_3$`819`
## character(0)
##
## $benchmark_8_3$`820`
## character(0)
##
## $benchmark_8_3$`821`
## character(0)
##
## $benchmark_8_3$`822`
## character(0)
##
## $benchmark_8_3$Per_Question_Average
## [1] "Grade Average"
The output from the code above reveals that there are several non-numeric entries in the Questions and Per_Question_Average columns. In particular, we have values like “Class Average” and “Grade Average” in the Questions column, and various skills-related text in some other columns, such as Skills.
To clean up these non-numeric entries, I am going to Convert Per_Question_Average to Numeric in Each Data Frame. This will ensure that the Per_Question_Average column in each benchmark data frame is numeric before combining them.
## [1] 42.444444 46.944444 24.611111 40.777778 41.444444 25.833333 59.000000
## [8] 31.944444 44.111111 35.111111 23.166667 20.833333 46.944444 53.111111
## [15] 36.333333 35.111111 32.833333 41.055556 22.722222 29.722222 36.277778
## [22] 8.944444 18.000000 31.444444 8.888889 33.504444 NA
Why was this step necessary? Data in R might be stored as characters or factors, especially if there were non-numeric values or formatting inconsistencies. This would cause issues when performing numerical analysis, such as calculating averages, identifying trends, or generating plots. Thus, converting the Per_Question_Average column to numeric ensures that I can work with the data properly for statistical purposes.
This step aims to clean up the dataset by handling missing values, converting columns to numeric types, and ensuring consistency across different benchmark tabs.
## Before cleaning: benchmark_6_1
## # A tibble: 6 × 26
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 41 60 50 50 55 22 25 12 31 48 50
## 2 2 62 63 50 50 48 17 33 24 65 50 49
## 3 3 38 30 43 20 30 9 17 36 27 15 18
## 4 4 55 66 46 50 33 39 54 20 42 32 35
## 5 5 52 60 56 63 44 22 38 40 31 40 32
## 6 6 21 26 33 30 33 22 42 24 38 10 17
## # ℹ 14 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `676` <chr>, Per_Question_Average <dbl>,
## # Skills <chr>
## After replacing '???': benchmark_6_1
## # A tibble: 6 × 26
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 41 60 50 50 55 22 25 12 31 48 50
## 2 2 62 63 50 50 48 17 33 24 65 50 49
## 3 3 38 30 43 20 30 9 17 36 27 15 18
## 4 4 55 66 46 50 33 39 54 20 42 32 35
## 5 5 52 60 56 63 44 22 38 40 31 40 32
## 6 6 21 26 33 30 33 22 42 24 38 10 17
## # ℹ 14 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `676` <chr>, Per_Question_Average <dbl>,
## # Skills <chr>
## After conversion: benchmark_6_1
## # A tibble: 6 × 26
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 41 60 50 50 55 22 25 12 31 48 50
## 2 2 62 63 50 50 48 17 33 24 65 50 49
## 3 3 38 30 43 20 30 9 17 36 27 15 18
## 4 4 55 66 46 50 33 39 54 20 42 32 35
## 5 5 52 60 56 63 44 22 38 40 31 40 32
## 6 6 21 26 33 30 33 22 42 24 38 10 17
## # ℹ 14 more variables: `611` <dbl>, `612` <dbl>, `613` <dbl>, `614` <dbl>,
## # `615` <dbl>, `616` <dbl>, `617` <dbl>, `618` <dbl>, `619` <dbl>,
## # `620` <dbl>, `621` <dbl>, `676` <dbl>, Per_Question_Average <dbl>,
## # Skills <chr>
## Before cleaning: benchmark_6_2
## # A tibble: 6 × 27
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 90 96 93 93 77 58 82 70 58 ??? <NA>
## 2 2 90 86 81 60 54 46 46 50 26 <NA> <NA>
## 3 3 55 57 44 43 41 55 18 20 21 <NA> <NA>
## 4 4 59 64 44 73 32 29 14 30 30 <NA> <NA>
## 5 5 76 86 67 83 77 21 36 45 83 <NA> <NA>
## 6 6 31 7 22 33 14 42 23 60 17 <NA> <NA>
## # ℹ 15 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `622` <chr>, `676` <chr>,
## # Per_Question_Average <dbl>, Skills <chr>
## After replacing '???': benchmark_6_2
## # A tibble: 6 × 27
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 90 96 93 93 77 58 82 70 58 <NA> <NA>
## 2 2 90 86 81 60 54 46 46 50 26 <NA> <NA>
## 3 3 55 57 44 43 41 55 18 20 21 <NA> <NA>
## 4 4 59 64 44 73 32 29 14 30 30 <NA> <NA>
## 5 5 76 86 67 83 77 21 36 45 83 <NA> <NA>
## 6 6 31 7 22 33 14 42 23 60 17 <NA> <NA>
## # ℹ 15 more variables: `611` <chr>, `612` <chr>, `613` <chr>, `614` <chr>,
## # `615` <chr>, `616` <chr>, `617` <chr>, `618` <chr>, `619` <chr>,
## # `620` <chr>, `621` <chr>, `622` <chr>, `676` <chr>,
## # Per_Question_Average <dbl>, Skills <chr>
## After conversion: benchmark_6_2
## # A tibble: 6 × 27
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `609` `610`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 90 96 93 93 77 58 82 70 58 NA NA
## 2 2 90 86 81 60 54 46 46 50 26 NA NA
## 3 3 55 57 44 43 41 55 18 20 21 NA NA
## 4 4 59 64 44 73 32 29 14 30 30 NA NA
## 5 5 76 86 67 83 77 21 36 45 83 NA NA
## 6 6 31 7 22 33 14 42 23 60 17 NA NA
## # ℹ 15 more variables: `611` <dbl>, `612` <dbl>, `613` <dbl>, `614` <dbl>,
## # `615` <dbl>, `616` <dbl>, `617` <dbl>, `618` <dbl>, `619` <dbl>,
## # `620` <dbl>, `621` <dbl>, `622` <dbl>, `676` <dbl>,
## # Per_Question_Average <dbl>, Skills <chr>
## Before cleaning: benchmark_6_3
## # A tibble: 6 × 25
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `611` `612`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 75 68 66 64 77 76 95 75 87 83 96
## 2 2 93 92 87 94 54 50 55 60 34 58 87
## 3 3 72 76 66 67 39 50 50 28 25 29 73
## 4 4 86 80 59 94 58 39 65 47 34 54 65
## 5 5 86 96 90 94 66 50 50 40 42 67 57
## 6 6 58 44 63 74 39 31 35 20 34 42 44
## # ℹ 13 more variables: `613` <chr>, `614` <chr>, `615` <chr>, `616` <chr>,
## # `617` <chr>, `618` <chr>, `619` <chr>, `620` <chr>, `621` <chr>,
## # `622` <chr>, `676` <chr>, Per_Question_Average <dbl>, Skills <chr>
## After replacing '???': benchmark_6_3
## # A tibble: 6 × 25
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `611` `612`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 75 68 66 64 77 76 95 75 87 83 96
## 2 2 93 92 87 94 54 50 55 60 34 58 87
## 3 3 72 76 66 67 39 50 50 28 25 29 73
## 4 4 86 80 59 94 58 39 65 47 34 54 65
## 5 5 86 96 90 94 66 50 50 40 42 67 57
## 6 6 58 44 63 74 39 31 35 20 34 42 44
## # ℹ 13 more variables: `613` <chr>, `614` <chr>, `615` <chr>, `616` <chr>,
## # `617` <chr>, `618` <chr>, `619` <chr>, `620` <chr>, `621` <chr>,
## # `622` <chr>, `676` <chr>, Per_Question_Average <dbl>, Skills <chr>
## After conversion: benchmark_6_3
## # A tibble: 6 × 25
## Questions `600` `601` `602` `603` `604` `605` `606` `607` `608` `611` `612`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 75 68 66 64 77 76 95 75 87 83 96
## 2 2 93 92 87 94 54 50 55 60 34 58 87
## 3 3 72 76 66 67 39 50 50 28 25 29 73
## 4 4 86 80 59 94 58 39 65 47 34 54 65
## 5 5 86 96 90 94 66 50 50 40 42 67 57
## 6 6 58 44 63 74 39 31 35 20 34 42 44
## # ℹ 13 more variables: `613` <dbl>, `614` <dbl>, `615` <dbl>, `616` <dbl>,
## # `617` <dbl>, `618` <dbl>, `619` <dbl>, `620` <dbl>, `621` <dbl>,
## # `622` <dbl>, `676` <dbl>, Per_Question_Average <dbl>, Skills <chr>
## Before cleaning: benchmark_7_1
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 23 24 24 6 23 24 14 18.5185… 21 14 10
## 2 2 52 36 48 38 36 34 32 25.9259… 25 0 60
## 3 3 39 40 33 19 23 14 46 25.9259… 39 14 0
## 4 4 61 48 62 63 41 14 32 25.9259… 29 14 10
## 5 5 65 48 29 38 32 21 54 33.3333… 21 14 30
## 6 6 57 36 29 50 23 24 14 18.5185… 21 14 10
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After replacing '???': benchmark_7_1
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 23 24 24 6 23 24 14 18.5185… 21 14 10
## 2 2 52 36 48 38 36 34 32 25.9259… 25 0 60
## 3 3 39 40 33 19 23 14 46 25.9259… 39 14 0
## 4 4 61 48 62 63 41 14 32 25.9259… 29 14 10
## 5 5 65 48 29 38 32 21 54 33.3333… 21 14 30
## 6 6 57 36 29 50 23 24 14 18.5185… 21 14 10
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After conversion: benchmark_7_1
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 23 24 24 6 23 24 14 18.5 21 14 10
## 2 2 52 36 48 38 36 34 32 25.9 25 0 60
## 3 3 39 40 33 19 23 14 46 25.9 39 14 0
## 4 4 61 48 62 63 41 14 32 25.9 29 14 10
## 5 5 65 48 29 38 32 21 54 33.3 21 14 30
## 6 6 57 36 29 50 23 24 14 18.5 21 14 10
## # ℹ 10 more variables: `711` <dbl>, `712` <dbl>, `713` <dbl>, `714` <dbl>,
## # `715` <dbl>, `716` <dbl>, `717` <dbl>, `718` <dbl>, `719` <dbl>,
## # Per_Question_Average <dbl>
## Before cleaning: benchmark_7_2
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 4 4 5 24 25 13 12 30 13 ??? ???
## 2 2 35 48 10 47 50 39 32 52 35 <NA> <NA>
## 3 3 26 68 10 65 60 78 64 48 39 <NA> <NA>
## 4 4 61 48 62 53 70 30 40 33 26 <NA> <NA>
## 5 5 52 68 29 47 25 22 44 19 39 <NA> <NA>
## 6 6 65 32 43 47 40 26 32 41 30 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After replacing '???': benchmark_7_2
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 4 4 5 24 25 13 12 30 13 <NA> <NA>
## 2 2 35 48 10 47 50 39 32 52 35 <NA> <NA>
## 3 3 26 68 10 65 60 78 64 48 39 <NA> <NA>
## 4 4 61 48 62 53 70 30 40 33 26 <NA> <NA>
## 5 5 52 68 29 47 25 22 44 19 39 <NA> <NA>
## 6 6 65 32 43 47 40 26 32 41 30 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After conversion: benchmark_7_2
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 4 4 5 24 25 13 12 30 13 NA NA
## 2 2 35 48 10 47 50 39 32 52 35 NA NA
## 3 3 26 68 10 65 60 78 64 48 39 NA NA
## 4 4 61 48 62 53 70 30 40 33 26 NA NA
## 5 5 52 68 29 47 25 22 44 19 39 NA NA
## 6 6 65 32 43 47 40 26 32 41 30 NA NA
## # ℹ 10 more variables: `711` <dbl>, `712` <dbl>, `713` <dbl>, `714` <dbl>,
## # `715` <dbl>, `716` <dbl>, `717` <dbl>, `718` <dbl>, `719` <dbl>,
## # Per_Question_Average <dbl>
## Before cleaning: benchmark_7_3
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 22 96 25 50 20 38 23 46 26 <NA> <NA>
## 2 2 39 88 5 38 34 34 31 31 31 <NA> <NA>
## 3 3 96 92 90 82 100 63 73 72 44 <NA> <NA>
## 4 4 70 92 80 75 39 38 50 28 35 <NA> <NA>
## 5 5 57 96 40 44 30 25 39 17 35 <NA> <NA>
## 6 6 78 88 65 50 58 55 43 34 31 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After replacing '???': benchmark_7_3
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 22 96 25 50 20 38 23 46 26 <NA> <NA>
## 2 2 39 88 5 38 34 34 31 31 31 <NA> <NA>
## 3 3 96 92 90 82 100 63 73 72 44 <NA> <NA>
## 4 4 70 92 80 75 39 38 50 28 35 <NA> <NA>
## 5 5 57 96 40 44 30 25 39 17 35 <NA> <NA>
## 6 6 78 88 65 50 58 55 43 34 31 <NA> <NA>
## # ℹ 10 more variables: `711` <chr>, `712` <chr>, `713` <chr>, `714` <chr>,
## # `715` <chr>, `716` <chr>, `717` <chr>, `718` <chr>, `719` <chr>,
## # Per_Question_Average <dbl>
## After conversion: benchmark_7_3
## # A tibble: 6 × 22
## Questions `700` `701` `702` `703` `704` `705` `706` `707` `708` `709` `710`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 22 96 25 50 20 38 23 46 26 NA NA
## 2 2 39 88 5 38 34 34 31 31 31 NA NA
## 3 3 96 92 90 82 100 63 73 72 44 NA NA
## 4 4 70 92 80 75 39 38 50 28 35 NA NA
## 5 5 57 96 40 44 30 25 39 17 35 NA NA
## 6 6 78 88 65 50 58 55 43 34 31 NA NA
## # ℹ 10 more variables: `711` <dbl>, `712` <dbl>, `713` <dbl>, `714` <dbl>,
## # `715` <dbl>, `716` <dbl>, `717` <dbl>, `718` <dbl>, `719` <dbl>,
## # Per_Question_Average <dbl>
## Before cleaning: benchmark_8_1
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 55 69 60 50 55 39 28 26 17 9 22
## 2 2 72 86 80 76 77 91 60 70 47 18 33
## 3 3 62 59 53 57 66 34 68 26 26 9 33
## 4 4 24 38 20 23 25 21 40 35 43 0 44
## 5 5 86 72 80 80 88 82 68 74 30 73 22
## 6 6 83 90 80 69 92 69 56 78 60 55 33
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <dbl>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After replacing '???': benchmark_8_1
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 55 69 60 50 55 39 28 26 17 9 22
## 2 2 72 86 80 76 77 91 60 70 47 18 33
## 3 3 62 59 53 57 66 34 68 26 26 9 33
## 4 4 24 38 20 23 25 21 40 35 43 0 44
## 5 5 86 72 80 80 88 82 68 74 30 73 22
## 6 6 83 90 80 69 92 69 56 78 60 55 33
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <dbl>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After conversion: benchmark_8_1
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 55 69 60 50 55 39 28 26 17 9 22
## 2 2 72 86 80 76 77 91 60 70 47 18 33
## 3 3 62 59 53 57 66 34 68 26 26 9 33
## 4 4 24 38 20 23 25 21 40 35 43 0 44
## 5 5 86 72 80 80 88 82 68 74 30 73 22
## 6 6 83 90 80 69 92 69 56 78 60 55 33
## # ℹ 13 more variables: `811` <dbl>, `812` <dbl>, `813` <dbl>, `814` <dbl>,
## # `815` <dbl>, `816` <dbl>, `817` <dbl>, `818` <dbl>, `819` <dbl>,
## # `820` <dbl>, `821` <dbl>, `822` <dbl>, Per_Question_Average <dbl>
## Before cleaning: benchmark_8_2
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 96 96 73 50 60.7 79.2 39 52 27.3 <NA> ???
## 2 2 82 86 90 73.0999… 71.4… 83.3 54 64 36.4 <NA> <NA>
## 3 3 67 64 66 84.5999… 78.5… 70.8 62 48 54.5 <NA> <NA>
## 4 4 41 54 50 38.5 53.6 50 35 48 36.4 <NA> <NA>
## 5 5 96 93 87 73.0999… 78.5… 79.2 62 56 72.7 <NA> <NA>
## 6 6 82 89 97 88.5 89.3 70.8 66 60 77.3 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After replacing '???': benchmark_8_2
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 96 96 73 50 60.7 79.2 39 52 27.3 <NA> <NA>
## 2 2 82 86 90 73.0999… 71.4… 83.3 54 64 36.4 <NA> <NA>
## 3 3 67 64 66 84.5999… 78.5… 70.8 62 48 54.5 <NA> <NA>
## 4 4 41 54 50 38.5 53.6 50 35 48 36.4 <NA> <NA>
## 5 5 96 93 87 73.0999… 78.5… 79.2 62 56 72.7 <NA> <NA>
## 6 6 82 89 97 88.5 89.3 70.8 66 60 77.3 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After conversion: benchmark_8_2
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 96 96 73 50 60.7 79.2 39 52 27.3 NA NA
## 2 2 82 86 90 73.1 71.4 83.3 54 64 36.4 NA NA
## 3 3 67 64 66 84.6 78.6 70.8 62 48 54.5 NA NA
## 4 4 41 54 50 38.5 53.6 50 35 48 36.4 NA NA
## 5 5 96 93 87 73.1 78.6 79.2 62 56 72.7 NA NA
## 6 6 82 89 97 88.5 89.3 70.8 66 60 77.3 NA NA
## # ℹ 13 more variables: `811` <dbl>, `812` <dbl>, `813` <dbl>, `814` <dbl>,
## # `815` <dbl>, `816` <dbl>, `817` <dbl>, `818` <dbl>, `819` <dbl>,
## # `820` <dbl>, `821` <dbl>, `822` <dbl>, Per_Question_Average <dbl>
## Before cleaning: benchmark_8_3
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 <NA> <NA> 100 72 93 81 54 72 48 <NA> <NA>
## 2 2 <NA> <NA> 100 84 97 86 77 86 81 <NA> <NA>
## 3 3 <NA> <NA> 100 84 97 95 85 79 71 <NA> <NA>
## 4 4 <NA> <NA> 100 72 97 76 62 76 57 <NA> <NA>
## 5 5 <NA> <NA> 100 92 90 95 66 76 86 <NA> <NA>
## 6 6 <NA> <NA> 100 84 97 100 73 72 57 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After replacing '???': benchmark_8_3
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 1 <NA> <NA> 100 72 93 81 54 72 48 <NA> <NA>
## 2 2 <NA> <NA> 100 84 97 86 77 86 81 <NA> <NA>
## 3 3 <NA> <NA> 100 84 97 95 85 79 71 <NA> <NA>
## 4 4 <NA> <NA> 100 72 97 76 62 76 57 <NA> <NA>
## 5 5 <NA> <NA> 100 92 90 95 66 76 86 <NA> <NA>
## 6 6 <NA> <NA> 100 84 97 100 73 72 57 <NA> <NA>
## # ℹ 13 more variables: `811` <chr>, `812` <chr>, `813` <chr>, `814` <chr>,
## # `815` <chr>, `816` <chr>, `817` <chr>, `818` <chr>, `819` <chr>,
## # `820` <chr>, `821` <chr>, `822` <chr>, Per_Question_Average <dbl>
## After conversion: benchmark_8_3
## # A tibble: 6 × 25
## Questions `800` `801` `802` `803` `804` `805` `806` `807` `808` `809` `810`
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 NA NA 100 72 93 81 54 72 48 NA NA
## 2 2 NA NA 100 84 97 86 77 86 81 NA NA
## 3 3 NA NA 100 84 97 95 85 79 71 NA NA
## 4 4 NA NA 100 72 97 76 62 76 57 NA NA
## 5 5 NA NA 100 92 90 95 66 76 86 NA NA
## 6 6 NA NA 100 84 97 100 73 72 57 NA NA
## # ℹ 13 more variables: `811` <dbl>, `812` <dbl>, `813` <dbl>, `814` <dbl>,
## # `815` <dbl>, `816` <dbl>, `817` <dbl>, `818` <dbl>, `819` <dbl>,
## # `820` <dbl>, `821` <dbl>, `822` <dbl>, Per_Question_Average <dbl>
## NULL
Before Cleaning: Each debug message labeled “Before cleaning” shows the initial state of the data in each benchmark tab. It allows us to see if there are any anomalies, such as the presence of ??? or inconsistent formats before cleaning.
After Replacing ‘???’: Each “After replacing ‘???’” message shows that any placeholder ??? values have been successfully replaced by NA. This ensures missing data is handled correctly.
After Conversion: Each “After conversion” message confirms that character columns have been converted to numeric where applicable, ensuring that you can perform calculations and analysis without errors due to character data types.
For example, the debug message:
After conversion: 6th Grade Benchmark 1
indicates that the
conversion process was applied, and columns now contain numeric values
(or NA for non-convertible entries).
When combining the data frames, check that the bind_rows function is receiving properly formatted data frames. If the data frames were cleaned to the point where they only contain NA or empty rows, the combined data will also reflect that.
## $benchmark_6_1
## [1] FALSE
##
## $benchmark_6_2
## [1] FALSE
##
## $benchmark_6_3
## [1] FALSE
##
## $benchmark_7_1
## [1] FALSE
##
## $benchmark_7_2
## [1] FALSE
##
## $benchmark_7_3
## [1] FALSE
##
## $benchmark_8_1
## [1] FALSE
##
## $benchmark_8_2
## [1] FALSE
##
## $benchmark_8_3
## [1] FALSE
No Empty Data Frames:
Since every result is FALSE, it means that none of the benchmarks lost all their data during the cleaning process. This is a positive outcome, confirming that the cleaning steps—such as replacing ???, handling missing values, and converting columns to numeric—did not remove so much data that any benchmark tab became completely empty.
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "609" "610"
## [13] "611" "612" "613"
## [16] "614" "615" "616"
## [19] "617" "618" "619"
## [22] "620" "621" "676"
## [25] "Per_Question_Average" "Skills"
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "609" "610"
## [13] "611" "612" "613"
## [16] "614" "615" "616"
## [19] "617" "618" "619"
## [22] "620" "621" "622"
## [25] "676" "Per_Question_Average" "Skills"
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "611" "612"
## [13] "613" "614" "615"
## [16] "616" "617" "618"
## [19] "619" "620" "621"
## [22] "622" "676" "Per_Question_Average"
## [25] "Skills"
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
## [[1]]
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "609" "610"
## [13] "611" "612" "613"
## [16] "614" "615" "616"
## [19] "617" "618" "619"
## [22] "620" "621" "676"
## [25] "Per_Question_Average" "Skills"
##
## [[2]]
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "609" "610"
## [13] "611" "612" "613"
## [16] "614" "615" "616"
## [19] "617" "618" "619"
## [22] "620" "621" "622"
## [25] "676" "Per_Question_Average" "Skills"
##
## [[3]]
## [1] "Questions" "600" "601"
## [4] "602" "603" "604"
## [7] "605" "606" "607"
## [10] "608" "611" "612"
## [13] "613" "614" "615"
## [16] "616" "617" "618"
## [19] "619" "620" "621"
## [22] "622" "676" "Per_Question_Average"
## [25] "Skills"
##
## [[4]]
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
##
## [[5]]
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
##
## [[6]]
## [1] "Questions" "700" "701"
## [4] "702" "703" "704"
## [7] "705" "706" "707"
## [10] "708" "709" "710"
## [13] "711" "712" "713"
## [16] "714" "715" "716"
## [19] "717" "718" "719"
## [22] "Per_Question_Average"
##
## [[7]]
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
##
## [[8]]
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
##
## [[9]]
## [1] "Questions" "800" "801"
## [4] "802" "803" "804"
## [7] "805" "806" "807"
## [10] "808" "809" "810"
## [13] "811" "812" "813"
## [16] "814" "815" "816"
## [19] "817" "818" "819"
## [22] "820" "821" "822"
## [25] "Per_Question_Average"
## Processing benchmark: benchmark_6_1
## Extracted grade: 6
## Processing benchmark: benchmark_6_2
## Extracted grade: 6
## Processing benchmark: benchmark_6_3
## Extracted grade: 6
## Processing benchmark: benchmark_7_1
## Extracted grade: 7
## Processing benchmark: benchmark_7_2
## Extracted grade: 7
## Processing benchmark: benchmark_7_3
## Extracted grade: 7
## Processing benchmark: benchmark_8_1
## Extracted grade: 8
## Processing benchmark: benchmark_8_2
## Extracted grade: 8
## Processing benchmark: benchmark_8_3
## Extracted grade: 8
## Combined data frame rows: 243
## # A tibble: 6 × 5
## Questions Per_Question_Average Benchmark Grade Benchmark_Number
## <dbl> <dbl> <chr> <dbl> <dbl>
## 1 1 42.4 benchmark_6_1 6 1
## 2 2 46.9 benchmark_6_1 6 1
## 3 3 24.6 benchmark_6_1 6 1
## 4 4 40.8 benchmark_6_1 6 1
## 5 5 41.4 benchmark_6_1 6 1
## 6 6 25.8 benchmark_6_1 6 1
In this step, I successfully combined the benchmark data for all grades into one data frame, cleaned the data further, and ensured that only valid rows are included for analysis.
Each data frame (representing a specific benchmark) was combined into one single combined_benchmarks data frame.
Only the Questions and Per_Question_Average columns, which are common across all benchmarks, were selected.
A new column Benchmark was added to keep track of the specific benchmark (e.g., “6th Grade Benchmark 1”).
Rows with missing (NA) values in the Per_Question_Average column were identified and printed for debugging purposes.
9 rows were found where Per_Question_Average was NA. These rows came from all grades and benchmarks.
All rows with NA in Per_Question_Average were removed from the data frame.
After removal, the number of rows in combined_benchmarks was reduced to 234.
There was a specific issue where “6th Grade Benchmark 3” had extra whitespace. This was cleaned up by renaming the affected rows.
The Benchmark column was split into two new columns:
- Grade: Extracted from the first digit of the benchmark name (e.g., "6" for "6th Grade").
- Benchmark_Number: Extracted from the last digit of the benchmark name (e.g., "1" for "Benchmark 1").
- The original Benchmark column was then dropped.
I printed the first few rows of the final cleaned and combined data frame to verify the structure. This shows that the data is now neatly organized with columns for Questions, Per_Question_Average, Grade, and Benchmark_Number, which will allow us to easily analyze trends across different grades and benchmarks.
This step calculates how student performance on individual questions changes (grows or declines) across three benchmarks. It provides insights into whether students are improving or struggling as they progress through the assessments.
The data is grouped by Questions and Grade to calculate performance metrics for each question across the benchmarks.
## Warning: Returning more (or less) than 1 row per `summarise()` group was deprecated in
## dplyr 1.1.0.
## ℹ Please use `reframe()` instead.
## ℹ When switching from `summarise()` to `reframe()`, remember that `reframe()`
## always returns an ungrouped data frame and adjust accordingly.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## # A tibble: 81 × 7
## Questions Grade Benchmark_1 Benchmark_2 Benchmark_3 Growth_1_to_2
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 6 42.4 81.9 78.3 39.4
## 2 1 7 17.2 17.9 43 0.630
## 3 1 8 40.1 56.2 76.9 16.1
## 4 2 6 46.9 51.3 62.4 4.32
## 5 2 7 32.2 35.3 37.1 3.04
## 6 2 8 65.8 69.2 88.3 3.31
## 7 3 6 24.6 37.5 47 12.9
## 8 3 7 24.3 47.9 79.3 23.6
## 9 3 8 44.2 62.0 85.5 17.8
## 10 4 6 40.8 45.3 58.9 4.48
## # ℹ 71 more rows
## # ℹ 1 more variable: Growth_2_to_3 <dbl>
For each question and grade combination: Benchmark_1, Benchmark_2, and Benchmark_3 represent the average performance (from the Per_Question_Average column) on the first, second, and third benchmarks, respectively.
Growth_1_to_2: The difference between performance on Benchmark 2 and Benchmark 1 (Benchmark_2 - Benchmark_1). Positive values indicate improvement, while negative values show a decline.
Growth_2_to_3: The difference between performance on Benchmark 3 and Benchmark 2 (Benchmark_3 - Benchmark_2), which similarly shows improvement or decline between these benchmarks.
For Example:
Question 1, Grade 6: Performance improved from 42.44 on Benchmark 1 to 81.89 on Benchmark 2 (with a growth of 39.45), but dropped slightly to 78.31 on Benchmark 3 (showing a small decay of -3.58).
Question 1, Grade 7: There was minimal growth from Benchmark 1 to Benchmark 2 (0.63), but a significant improvement from Benchmark 2 to Benchmark 3 (25.12).
Question 2, Grade 6: Performance steadily improved across all benchmarks, with positive growth from Benchmark 1 to Benchmark 2 (4.32) and Benchmark 2 to Benchmark 3 (11.18).
Question-Specific Trends: This analysis helps identify specific questions where students are consistently improving or struggling over time. For example, Question 1 in Grade 6 shows strong growth from the first to the second benchmark but a slight decay afterward, suggesting that the topic might need reinforcement before the third benchmark.
Grade-Level Differences: It also highlights differences in performance growth across grades, which can help tailor teaching strategies for different student groups.
The line graph visualizes student performance trends across questions for each grade (6th, 7th, and 8th), showing how their average performance changed across the three benchmarks. Here’s a breakdown of the key observations:
Red Line (Benchmark 1): Represents the average performance on the first benchmark.
Green Line (Benchmark 2): Represents the average performance on the second benchmark.
Blue Line (Benchmark 3): Represents the average performance on the third benchmark.
In all grades (6th, 7th, and 8th), the blue line (Benchmark 3) is consistently above the green line (Benchmark 2), which in turn is a little above the red line (Benchmark 1). This shows a positive trend, where student performance generally improves from the first to the third benchmark. The steady increase between benchmarks suggests that students are learning and retaining information better over time.
8th Grade: The lines are consistently higher in the 8th-grade graph compared to 6th and 7th grades, indicating that 8th-grade students have a higher average performance overall. This could suggest that older students perform better on the benchmark assessments, potentially due to increased experience or familiarity with the subject matter as they progress through the grades.
The lines fluctuate across questions for all grades, following a similar trend. For instance, in 6th grade, between questions 1-5, the lines start high, dip, and then rise again. The fluctuations suggest that certain questions are more difficult for students than others, leading to dips in performance. However, the fact that the lines follow a similar trend across benchmarks indicates that the same questions are challenging throughout, but students show overall improvement on those questions.
The warnings above, which state “Removed 1 row containing missing values or values outside the scale range,” indicate that there is at least one row in your dataset that has NA values or values that fall outside the range of what is being plotted. This can happen if:
Let’s check for outliers:
## Questions Grade Benchmark_1 Benchmark_2 Benchmark_3
## Min. : 1 Min. :6 Min. : 8.89 Min. :17.88 Min. :24.76
## 1st Qu.: 7 1st Qu.:6 1st Qu.:27.39 1st Qu.:42.54 1st Qu.:59.04
## Median :13 Median :7 Median :35.97 Median :56.00 Median :67.25
## Mean :13 Mean :7 Mean :38.15 Mean :54.39 Mean :66.83
## 3rd Qu.:19 3rd Qu.:8 3rd Qu.:46.92 3rd Qu.:67.03 3rd Qu.:79.11
## Max. :25 Max. :8 Max. :72.75 Max. :83.89 Max. :90.31
## NA's :6 NA's :3 NA's :3 NA's :3
## Growth_1_to_2 Growth_2_to_3
## Min. : 0.35 Min. :-10.080
## 1st Qu.:10.03 1st Qu.: 7.945
## Median :14.90 Median : 11.180
## Mean :16.23 Mean : 12.439
## 3rd Qu.:20.16 3rd Qu.: 16.545
## Max. :75.00 Max. : 37.800
## NA's :3 NA's :3
There is no outlier in benchmark 1 and the distribution is normal, which suggests that Benchmark_1 scores are fairly normally distributed.
1st Quartile (Q1, 25th percentile): Around 27.39, meaning 25% of students scored below this.
Median (50th percentile): The median score is approximately 35.97, showing that half of the students scored below this.
3rd Quartile (Q3, 75th percentile): Around 46.92, indicating that 75% of students scored below this value.
Interquartile Range (IQR): The range between the 1st and 3rd quartiles shows the spread of the middle 50% of the data, which spans from about 27 to 47.
Let’s check for missing values in the new dataset we created for analysis:
## # A tibble: 3 × 7
## Questions Grade Benchmark_1 Benchmark_2 Benchmark_3 Growth_1_to_2
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 NA 6 NA NA NA NA
## 2 NA 7 NA NA NA NA
## 3 NA 8 NA NA NA NA
## # ℹ 1 more variable: Growth_2_to_3 <dbl>
The output of your missing values check indicates that there are no missing values in the Benchmark_1, Benchmark_2, or Benchmark_3 columns. This confirms that the dataset is complete with respect to these three columns, and we can proceed confidently without having to worry about missing data affecting our analysis of growth.
The bar plots provide a clear visual representation of growth trends between the benchmarks for each question,
Growth 2 to 3 (Blue) vs Growth 1 to 2 (Red) (for example question 15 for 6th grade): Most questions show positive growth between the second and third benchmarks (blue bars on the bottom), followed by positive growth between the first and second benchmarks (red bars on top). This suggests that students improved consistently from the first benchmark to the third.
Only Blue Bars (question 5 for 8th grade): Some questions have only blue bars (Growth 2 to 3) with no red bars (Growth 1 to 2). This indicates that these questions showed improvement only between the second and third benchmarks, but not between the first and second benchmarks. This could imply that students initially struggled with these questions but eventually caught up later in the year.
Negative Growth (Blue Bars Below Zero) (questions 1 and 25 in 6th grade): two questions have blue bars below zero, meaning that there was a decline in performance between the second and third benchmarks. However, red bars (Growth 1 to 2) for these questions are still positive, suggesting an initial improvement that later decayed.
Possible Interpretations:
Consistent Growth: The majority of questions show steady improvement across all benchmarks, which indicates successful teaching strategies and student learning progress.
Late Improvement: The questions with only blue bars (Growth 2 to 3) may have required additional reinforcement or reteaching between the second and third benchmarks.
Challenges in Later Benchmarks: The questions with negative blue bars (Growth 2 to 3) suggest that students either found the content more challenging during later assessments or there may have been external factors affecting their performance on these questions.
The interactive table allows us to dynamically explore the data by filtering, sorting, and searching through the various columns. Here’s what you’re seeing in the output:
Key Columns:
Questions: The question number (from 1 to 25).
Grade: The grade level (6, 7, or 8).
Benchmark_1, Benchmark_2, Benchmark_3: These columns display the average scores for each question in the respective benchmark assessments.
Growth_1_to_2: The difference in performance between Benchmark 1 and Benchmark 2 (positive values indicate improvement).
Growth_2_to_3: The difference in performance between Benchmark 2 and Benchmark 3 (positive values indicate improvement, and negative values indicate a drop in performance).
Insights of the above table:
Interactive Filtering: You can quickly filter for a specific grade, question, or benchmarks to focus on areas that require attention (e.g., negative growth or large performance changes).
Dynamic Sorting: Sorting the table by Growth_1_to_2 or Growth_2_to_3 will help identify the highest and lowest growth questions, making it easier to pinpoint which areas need reteaching or reinforcement.
This table enhances the ability to drill down into specific performance trends and helps guide instructional decisions.
This step involves creating a suggestion table based on students’ performance across the three benchmarks, which helps identify areas for intervention and improvement. Here’s an interpretation of the analysis:
Struggling Students: If the score on Benchmark 3 is below 40, it indicates that students are struggling with that particular question. This suggests the need for more focused practice or instruction to help them improve.
Growth Indicated: If there is a growth of 10 points or more from Benchmark 1 to Benchmark 3, it indicates that students are showing significant improvement on that question. This is a positive outcome and may suggest that previous teaching methods or interventions were effective.
No Significant Change: For questions where the performance does not fit into either of the above categories, the suggestion states “No significant change.” This implies that students’ performance has remained stable, but it might also indicate that no further action is needed unless the scores are deemed unsatisfactory.
Question Performance and Suggestions by Grade | |||||
Grade | Questions | Benchmark_1 | Benchmark_2 | Benchmark_3 | Suggestion |
---|---|---|---|---|---|
6 | 1 | 42.44 | 81.89 | 78.31 | Students show growth on this question. |
7 | 1 | 17.25 | 17.88 | 43.00 | Students show growth on this question. |
8 | 1 | 40.10 | 56.18 | 76.92 | Students show growth on this question. |
6 | 2 | 46.94 | 51.26 | 62.44 | Students show growth on this question. |
7 | 2 | 32.25 | 35.29 | 37.12 | Students are struggling, they need more practice on this question. |
8 | 2 | 65.85 | 69.16 | 88.31 | Students show growth on this question. |
6 | 3 | 24.61 | 37.53 | 47.00 | Students show growth on this question. |
7 | 3 | 24.34 | 47.94 | 79.29 | Students show growth on this question. |
8 | 3 | 44.20 | 61.99 | 85.54 | Students show growth on this question. |
6 | 4 | 40.78 | 45.26 | 58.88 | Students show growth on this question. |
7 | 4 | 28.65 | 48.82 | 59.53 | Students show growth on this question. |
8 | 4 | 29.25 | 43.28 | 81.08 | Students show growth on this question. |
6 | 5 | 41.44 | 57.58 | 63.19 | Students show growth on this question. |
7 | 5 | 28.95 | 38.06 | 49.53 | Students show growth on this question. |
8 | 5 | 66.25 | 74.94 | 87.77 | Students show growth on this question. |
6 | 6 | 25.83 | 28.16 | 43.19 | Students show growth on this question. |
7 | 6 | 22.77 | 38.71 | 56.00 | Students show growth on this question. |
8 | 6 | 67.90 | 78.76 | 86.54 | Students show growth on this question. |
6 | 7 | 59.00 | 79.11 | 82.19 | Students show growth on this question. |
7 | 7 | 36.59 | 61.71 | 70.47 | Students show growth on this question. |
8 | 7 | 31.75 | 50.74 | 75.85 | Students show growth on this question. |
6 | 8 | 31.94 | 33.11 | 42.88 | Students show growth on this question. |
7 | 8 | 31.14 | 42.47 | 52.59 | Students show growth on this question. |
8 | 8 | 68.65 | 78.27 | 85.92 | Students show growth on this question. |
6 | 9 | 44.11 | 58.68 | 67.31 | Students show growth on this question. |
7 | 9 | 21.53 | 28.18 | 45.06 | Students show growth on this question. |
8 | 9 | 43.00 | 58.16 | 75.23 | Students show growth on this question. |
6 | 10 | 35.11 | 48.74 | 57.12 | Students show growth on this question. |
7 | 10 | 40.17 | 64.06 | 75.24 | Students show growth on this question. |
8 | 10 | 47.45 | 63.21 | 72.77 | Students show growth on this question. |
6 | 11 | 23.17 | 27.53 | 40.56 | Students show growth on this question. |
7 | 11 | 17.74 | 42.76 | 63.53 | Students show growth on this question. |
8 | 11 | 49.70 | 68.84 | 88.85 | Students show growth on this question. |
6 | 12 | 20.83 | 31.42 | 38.38 | Students are struggling, they need more practice on this question. |
7 | 12 | 26.11 | 40.00 | 49.65 | Students show growth on this question. |
8 | 12 | 25.25 | 33.92 | 65.85 | Students show growth on this question. |
6 | 13 | 46.94 | 54.00 | 63.12 | Students show growth on this question. |
7 | 13 | 32.63 | 46.00 | 60.82 | Students show growth on this question. |
8 | 13 | 66.60 | 77.74 | 84.46 | Students show growth on this question. |
6 | 14 | 53.11 | 70.26 | 77.25 | Students show growth on this question. |
7 | 14 | 48.90 | 81.65 | 84.06 | Students show growth on this question. |
8 | 14 | 69.90 | 82.46 | 90.31 | Students show growth on this question. |
6 | 15 | 36.33 | 57.74 | 66.38 | Students show growth on this question. |
7 | 15 | 18.57 | 20.24 | 24.76 | Students are struggling, they need more practice on this question. |
8 | 15 | 52.20 | 67.54 | 85.31 | Students show growth on this question. |
6 | 16 | 35.11 | 62.58 | 67.19 | Students show growth on this question. |
7 | 16 | 46.88 | 62.18 | 79.29 | Students show growth on this question. |
8 | 16 | 58.25 | 71.58 | 77.38 | Students show growth on this question. |
6 | 17 | 32.83 | 45.58 | 61.12 | Students show growth on this question. |
7 | 17 | 30.36 | 57.71 | 65.94 | Students show growth on this question. |
8 | 17 | 53.35 | 62.52 | 77.77 | Students show growth on this question. |
6 | 18 | 41.06 | 62.26 | 69.69 | Students show growth on this question. |
7 | 18 | 24.29 | 38.12 | 69.82 | Students show growth on this question. |
8 | 18 | 67.35 | 81.41 | 82.69 | Students show growth on this question. |
6 | 19 | 22.72 | 39.42 | 52.69 | Students show growth on this question. |
7 | 19 | 30.79 | 46.41 | 66.47 | Students show growth on this question. |
8 | 19 | 72.75 | 82.59 | 87.62 | Students show growth on this question. |
6 | 20 | 29.72 | 58.68 | 66.44 | Students show growth on this question. |
7 | 20 | 28.58 | 31.76 | 46.29 | Students show growth on this question. |
8 | 20 | 49.95 | 69.82 | 82.31 | Students show growth on this question. |
6 | 21 | 36.28 | 54.89 | 64.38 | Students show growth on this question. |
7 | 21 | 45.01 | 69.29 | 80.18 | Students show growth on this question. |
8 | 21 | 40.55 | 65.12 | 78.46 | Students show growth on this question. |
6 | 22 | 8.94 | 50.05 | 63.62 | Students show growth on this question. |
7 | 22 | 20.72 | 33.29 | 44.18 | Students show growth on this question. |
8 | 22 | 35.65 | 49.26 | 67.77 | Students show growth on this question. |
6 | 23 | 18.00 | 27.47 | 39.56 | Students are struggling, they need more practice on this question. |
7 | 23 | 27.00 | 27.35 | 42.12 | Students show growth on this question. |
8 | 23 | 37.70 | 69.14 | 80.46 | Students show growth on this question. |
6 | 24 | 31.44 | 55.26 | 60.31 | Students show growth on this question. |
7 | 24 | 26.45 | 57.06 | 67.18 | Students show growth on this question. |
8 | 24 | 46.05 | 67.51 | 76.85 | Students show growth on this question. |
6 | 25 | 8.89 | 83.89 | 73.81 | Students show growth on this question. |
7 | 25 | 42.48 | 61.65 | 79.35 | Students show growth on this question. |
8 | 25 | 44.15 | 55.82 | 73.38 | Students show growth on this question. |
6 | NA | 33.50 | 50.13 | 60.28 | Students show growth on this question. |
6 | NA | NA | NA | NA | No significant change. |
7 | NA | 30.01 | 45.54 | 59.66 | Students show growth on this question. |
7 | NA | NA | NA | NA | No significant change. |
8 | NA | 50.95 | 65.60 | 78.56 | Students show growth on this question. |
8 | NA | NA | NA | NA | No significant change. |
This suggestion table serves as a valuable tool for educators to identify areas of struggle and growth, guiding their instructional strategies effectively. It highlights the importance of data-driven decision-making in education, helping to ensure that students receive the support they need to succeed.
Having analyzed and visualized trends across all benchmarks and grade levels, we now turn our focus to examining performance trends by class. This visualization allows us to identify specific patterns and struggles unique to each class, helping teachers target their instructional strategies more effectively. By understanding the areas where students face challenges, we can tailor support and interventions to improve learning outcomes for each group.
## # A tibble: 25 × 8
## Questions Class Benchmark_1 Benchmark_2 Benchmark_3 Growth_1_to_2
## <int> <fct> <dbl> <dbl> <dbl> <dbl>
## 1 1 600 41 90 75 49
## 2 2 600 62 90 93 28
## 3 3 600 38 55 72 17
## 4 4 600 55 59 86 4
## 5 5 600 52 76 86 24
## 6 6 600 21 31 58 10
## 7 7 600 76 90 97 14
## 8 8 600 45 55 75 10
## 9 9 600 79 76 86 -3
## 10 10 600 76 62 83 -14
## # ℹ 15 more rows
## # ℹ 2 more variables: Growth_2_to_3 <dbl>, Suggestion <chr>
## # A tibble: 1,550 × 6
## Class Questions Benchmark_1 Benchmark_2 Benchmark_3 Suggestion
## <fct> <int> <dbl> <dbl> <dbl> <chr>
## 1 600 1 41 90 75 Students show growth on …
## 2 601 1 60 96 68 No significant change.
## 3 602 1 50 93 66 Students show growth on …
## 4 603 1 50 93 64 Students show growth on …
## 5 604 1 55 77 77 Students show growth on …
## 6 605 1 22 58 76 Students show growth on …
## 7 606 1 25 82 95 Students show growth on …
## 8 607 1 12 70 75 Students show growth on …
## 9 608 1 31 58 87 Students show growth on …
## 10 609 1 48 NA NA No significant change.
## # ℹ 1,540 more rows
##
## Attaching package: 'scales'
## The following object is masked from 'package:purrr':
##
## discard
## Warning: Since gt v0.3.0, `columns = vars(...)` has been deprecated.
## • Please use `columns = c(...)` instead.
## Warning: Some values were outside the color scale and will be treated as NA
## Warning: Since gt v0.3.0, `columns = vars(...)` has been deprecated.
## • Please use `columns = c(...)` instead.
Class | Questions | Benchmark_1 | Benchmark_2 | Benchmark_3 | Suggestion |
---|---|---|---|---|---|
600 | 1 | 41.00 | 90.0 | 75 | Students show growth on this question. |
601 | 1 | 60.00 | 96.0 | 68 | No significant change. |
602 | 1 | 50.00 | 93.0 | 66 | Students show growth on this question. |
603 | 1 | 50.00 | 93.0 | 64 | Students show growth on this question. |
604 | 1 | 55.00 | 77.0 | 77 | Students show growth on this question. |
605 | 1 | 22.00 | 58.0 | 76 | Students show growth on this question. |
606 | 1 | 25.00 | 82.0 | 95 | Students show growth on this question. |
607 | 1 | 12.00 | 70.0 | 75 | Students show growth on this question. |
608 | 1 | 31.00 | 58.0 | 87 | Students show growth on this question. |
609 | 1 | 48.00 | NA | NA | No significant change. |
610 | 1 | 50.00 | NA | NA | No significant change. |
611 | 1 | 39.00 | 84.0 | 83 | Students show growth on this question. |
612 | 1 | 50.00 | 96.0 | 96 | Students show growth on this question. |
613 | 1 | 54.00 | 80.0 | 93 | Students show growth on this question. |
614 | 1 | 40.00 | 80.0 | 91 | Students show growth on this question. |
615 | 1 | NA | 100.0 | NA | No significant change. |
616 | 1 | 53.00 | 92.0 | 64 | Students show growth on this question. |
617 | 1 | 34.00 | 60.0 | 83 | Students show growth on this question. |
618 | 1 | NA | 86.0 | NA | No significant change. |
619 | 1 | NA | 85.0 | NA | No significant change. |
620 | 1 | NA | 76.0 | NA | No significant change. |
621 | 1 | 50.00 | 100.0 | 60 | Students show growth on this question. |
700 | 1 | 23.00 | 4.0 | 22 | Students are struggling, they need more practice on this question. |
701 | 1 | 24.00 | 4.0 | 96 | Students show growth on this question. |
702 | 1 | 24.00 | 5.0 | 25 | Students are struggling, they need more practice on this question. |
703 | 1 | 6.00 | 24.0 | 50 | Students show growth on this question. |
704 | 1 | 23.00 | 25.0 | 20 | Students are struggling, they need more practice on this question. |
705 | 1 | 24.00 | 13.0 | 38 | Students are struggling, they need more practice on this question. |
706 | 1 | 14.00 | 12.0 | 23 | Students are struggling, they need more practice on this question. |
707 | 1 | 18.52 | 30.0 | 46 | Students show growth on this question. |
708 | 1 | 21.00 | 13.0 | 26 | Students are struggling, they need more practice on this question. |
709 | 1 | 14.00 | NA | NA | No significant change. |
710 | 1 | 10.00 | NA | NA | No significant change. |
711 | 1 | 13.33 | 30.0 | 45 | Students show growth on this question. |
712 | 1 | 20.00 | 31.0 | 38 | Students are struggling, they need more practice on this question. |
713 | 1 | 28.57 | 18.0 | 55 | Students show growth on this question. |
714 | 1 | 3.57 | 17.0 | 59 | Students show growth on this question. |
715 | 1 | 30.00 | 4.0 | 31 | Students are struggling, they need more practice on this question. |
716 | 1 | 32.00 | 0.0 | 14 | Students are struggling, they need more practice on this question. |
717 | 1 | 21.43 | NA | 63 | Students show growth on this question. |
718 | 1 | 46.15 | 36.0 | 80 | Students show growth on this question. |
719 | 1 | 22.00 | 38.0 | NA | No significant change. |
800 | 1 | 55.00 | 96.0 | NA | No significant change. |
801 | 1 | 69.00 | 96.0 | NA | No significant change. |
802 | 1 | 60.00 | 73.0 | 100 | Students show growth on this question. |
803 | 1 | 50.00 | 50.0 | 72 | Students show growth on this question. |
804 | 1 | 55.00 | 60.7 | 93 | Students show growth on this question. |
805 | 1 | 39.00 | 79.2 | 81 | Students show growth on this question. |
806 | 1 | 28.00 | 39.0 | 54 | Students show growth on this question. |
807 | 1 | 26.00 | 52.0 | 72 | Students show growth on this question. |
808 | 1 | 17.00 | 27.3 | 48 | Students show growth on this question. |
809 | 1 | 9.00 | NA | NA | No significant change. |
810 | 1 | 22.00 | NA | NA | No significant change. |
811 | 1 | 28.00 | 27.0 | 69 | Students show growth on this question. |
812 | 1 | 52.00 | 46.0 | NA | No significant change. |
813 | 1 | 50.00 | 52.0 | 85 | Students show growth on this question. |
814 | 1 | 38.00 | 32.0 | 88 | Students show growth on this question. |
815 | 1 | 76.00 | 50.0 | 84 | No significant change. |
816 | 1 | 59.00 | 96.0 | NA | No significant change. |
817 | 1 | 23.00 | 43.0 | 83 | Students show growth on this question. |
818 | 1 | 31.00 | 62.0 | 71 | Students show growth on this question. |
819 | 1 | 15.00 | 30.0 | NA | No significant change. |
600 | 2 | 62.00 | 90.0 | 93 | Students show growth on this question. |
601 | 2 | 63.00 | 86.0 | 92 | Students show growth on this question. |
602 | 2 | 50.00 | 81.0 | 87 | Students show growth on this question. |
603 | 2 | 50.00 | 60.0 | 94 | Students show growth on this question. |
604 | 2 | 48.00 | 54.0 | 54 | No significant change. |
605 | 2 | 17.00 | 46.0 | 50 | Students show growth on this question. |
606 | 2 | 33.00 | 46.0 | 55 | Students show growth on this question. |
607 | 2 | 24.00 | 50.0 | 60 | Students show growth on this question. |
608 | 2 | 65.00 | 26.0 | 34 | Students are struggling, they need more practice on this question. |
609 | 2 | 50.00 | NA | NA | No significant change. |
610 | 2 | 49.00 | NA | NA | No significant change. |
611 | 2 | 39.00 | 40.0 | 58 | Students show growth on this question. |
612 | 2 | 50.00 | 52.0 | 87 | Students show growth on this question. |
613 | 2 | 50.00 | 48.0 | 54 | No significant change. |
614 | 2 | 43.00 | 32.0 | 39 | Students are struggling, they need more practice on this question. |
615 | 2 | NA | 55.0 | NA | No significant change. |
616 | 2 | 40.00 | 62.0 | 76 | Students show growth on this question. |
617 | 2 | 62.00 | 32.0 | 66 | No significant change. |
618 | 2 | NA | 35.0 | NA | No significant change. |
619 | 2 | NA | 44.0 | NA | No significant change. |
620 | 2 | NA | 35.0 | NA | No significant change. |
621 | 2 | 50.00 | 33.0 | 0 | Students are struggling, they need more practice on this question. |
700 | 2 | 52.00 | 35.0 | 39 | Students are struggling, they need more practice on this question. |
701 | 2 | 36.00 | 48.0 | 88 | Students show growth on this question. |
702 | 2 | 48.00 | 10.0 | 5 | Students are struggling, they need more practice on this question. |
703 | 2 | 38.00 | 47.0 | 38 | Students are struggling, they need more practice on this question. |
704 | 2 | 36.00 | 50.0 | 34 | Students are struggling, they need more practice on this question. |
705 | 2 | 34.00 | 39.0 | 34 | Students are struggling, they need more practice on this question. |
706 | 2 | 32.00 | 32.0 | 31 | Students are struggling, they need more practice on this question. |
707 | 2 | 25.93 | 52.0 | 31 | Students are struggling, they need more practice on this question. |
708 | 2 | 25.00 | 35.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 2 | 0.00 | NA | NA | No significant change. |
710 | 2 | 60.00 | NA | NA | No significant change. |
711 | 2 | 36.67 | 11.0 | 24 | Students are struggling, they need more practice on this question. |
712 | 2 | 33.33 | 34.0 | 7 | Students are struggling, they need more practice on this question. |
713 | 2 | 46.43 | 36.0 | 55 | No significant change. |
714 | 2 | 53.57 | 38.0 | 34 | Students are struggling, they need more practice on this question. |
715 | 2 | 41.00 | 20.0 | 15 | Students are struggling, they need more practice on this question. |
716 | 2 | 59.00 | 24.0 | 18 | Students are struggling, they need more practice on this question. |
717 | 2 | 25.00 | NA | 63 | Students show growth on this question. |
718 | 2 | 57.69 | 43.0 | 84 | Students show growth on this question. |
719 | 2 | 33.00 | 46.0 | NA | No significant change. |
800 | 2 | 72.00 | 82.0 | NA | No significant change. |
801 | 2 | 86.00 | 86.0 | NA | No significant change. |
802 | 2 | 80.00 | 90.0 | 100 | Students show growth on this question. |
803 | 2 | 76.00 | 73.1 | 84 | No significant change. |
804 | 2 | 77.00 | 71.4 | 97 | Students show growth on this question. |
805 | 2 | 91.00 | 83.3 | 86 | No significant change. |
806 | 2 | 60.00 | 54.0 | 77 | Students show growth on this question. |
807 | 2 | 70.00 | 64.0 | 86 | Students show growth on this question. |
808 | 2 | 47.00 | 36.4 | 81 | Students show growth on this question. |
809 | 2 | 18.00 | NA | NA | No significant change. |
810 | 2 | 33.00 | NA | NA | No significant change. |
811 | 2 | 72.00 | 85.0 | 81 | No significant change. |
812 | 2 | 61.00 | 64.0 | NA | No significant change. |
813 | 2 | 79.00 | 61.0 | 90 | Students show growth on this question. |
814 | 2 | 71.00 | 64.0 | 88 | Students show growth on this question. |
815 | 2 | 88.00 | 84.6 | 100 | Students show growth on this question. |
816 | 2 | 89.00 | 89.0 | NA | No significant change. |
817 | 2 | 50.00 | 31.0 | 90 | Students show growth on this question. |
818 | 2 | 42.00 | 65.0 | 88 | Students show growth on this question. |
819 | 2 | 55.00 | 61.0 | NA | No significant change. |
600 | 3 | 38.00 | 55.0 | 72 | Students show growth on this question. |
601 | 3 | 30.00 | 57.0 | 76 | Students show growth on this question. |
602 | 3 | 43.00 | 44.0 | 66 | Students show growth on this question. |
603 | 3 | 20.00 | 43.0 | 67 | Students show growth on this question. |
604 | 3 | 30.00 | 41.0 | 39 | Students are struggling, they need more practice on this question. |
605 | 3 | 9.00 | 55.0 | 50 | Students show growth on this question. |
606 | 3 | 17.00 | 18.0 | 50 | Students show growth on this question. |
607 | 3 | 36.00 | 20.0 | 28 | Students are struggling, they need more practice on this question. |
608 | 3 | 27.00 | 21.0 | 25 | Students are struggling, they need more practice on this question. |
609 | 3 | 15.00 | NA | NA | No significant change. |
610 | 3 | 18.00 | NA | NA | No significant change. |
611 | 3 | 23.00 | 28.0 | 29 | Students are struggling, they need more practice on this question. |
612 | 3 | 38.00 | 52.0 | 73 | Students show growth on this question. |
613 | 3 | 25.00 | 28.0 | 57 | Students show growth on this question. |
614 | 3 | 20.00 | 36.0 | 17 | Students are struggling, they need more practice on this question. |
615 | 3 | NA | 59.0 | NA | No significant change. |
616 | 3 | 23.00 | 46.0 | 48 | Students show growth on this question. |
617 | 3 | 14.00 | 12.0 | 35 | Students are struggling, they need more practice on this question. |
618 | 3 | NA | 21.0 | NA | No significant change. |
619 | 3 | NA | 56.0 | NA | No significant change. |
620 | 3 | NA | 21.0 | NA | No significant change. |
621 | 3 | 17.00 | 0.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 3 | 39.00 | 26.0 | 96 | Students show growth on this question. |
701 | 3 | 40.00 | 68.0 | 92 | Students show growth on this question. |
702 | 3 | 33.00 | 10.0 | 90 | Students show growth on this question. |
703 | 3 | 19.00 | 65.0 | 82 | Students show growth on this question. |
704 | 3 | 23.00 | 60.0 | 100 | Students show growth on this question. |
705 | 3 | 14.00 | 78.0 | 63 | Students show growth on this question. |
706 | 3 | 46.00 | 64.0 | 73 | Students show growth on this question. |
707 | 3 | 25.93 | 48.0 | 72 | Students show growth on this question. |
708 | 3 | 39.00 | 39.0 | 44 | No significant change. |
709 | 3 | 14.00 | NA | NA | No significant change. |
710 | 3 | 0.00 | NA | NA | No significant change. |
711 | 3 | 26.67 | 59.0 | 72 | Students show growth on this question. |
712 | 3 | 36.67 | 55.0 | 62 | Students show growth on this question. |
713 | 3 | 35.71 | 61.0 | 90 | Students show growth on this question. |
714 | 3 | 28.57 | 72.0 | 72 | Students show growth on this question. |
715 | 3 | 30.00 | 12.0 | 89 | Students show growth on this question. |
716 | 3 | 32.00 | 10.0 | 86 | Students show growth on this question. |
717 | 3 | 46.43 | NA | 89 | Students show growth on this question. |
718 | 3 | 26.92 | 50.0 | 76 | Students show growth on this question. |
719 | 3 | 22.00 | 38.0 | NA | No significant change. |
800 | 3 | 62.00 | 67.0 | NA | No significant change. |
801 | 3 | 59.00 | 64.0 | NA | No significant change. |
802 | 3 | 53.00 | 66.0 | 100 | Students show growth on this question. |
803 | 3 | 57.00 | 84.6 | 84 | Students show growth on this question. |
804 | 3 | 66.00 | 78.6 | 97 | Students show growth on this question. |
805 | 3 | 34.00 | 70.8 | 95 | Students show growth on this question. |
806 | 3 | 68.00 | 62.0 | 85 | Students show growth on this question. |
807 | 3 | 26.00 | 48.0 | 79 | Students show growth on this question. |
808 | 3 | 26.00 | 54.5 | 71 | Students show growth on this question. |
809 | 3 | 9.00 | NA | NA | No significant change. |
810 | 3 | 33.00 | NA | NA | No significant change. |
811 | 3 | 32.00 | 54.0 | 81 | Students show growth on this question. |
812 | 3 | 44.00 | 64.0 | NA | No significant change. |
813 | 3 | 71.00 | 44.0 | 80 | No significant change. |
814 | 3 | 38.00 | 46.0 | 79 | Students show growth on this question. |
815 | 3 | 50.00 | 65.4 | 92 | Students show growth on this question. |
816 | 3 | 63.00 | 82.0 | NA | No significant change. |
817 | 3 | 35.00 | 46.0 | 90 | Students show growth on this question. |
818 | 3 | 23.00 | 62.0 | 79 | Students show growth on this question. |
819 | 3 | 35.00 | 57.0 | NA | No significant change. |
600 | 4 | 55.00 | 59.0 | 86 | Students show growth on this question. |
601 | 4 | 66.00 | 64.0 | 80 | Students show growth on this question. |
602 | 4 | 46.00 | 44.0 | 59 | Students show growth on this question. |
603 | 4 | 50.00 | 73.0 | 94 | Students show growth on this question. |
604 | 4 | 33.00 | 32.0 | 58 | Students show growth on this question. |
605 | 4 | 39.00 | 29.0 | 39 | Students are struggling, they need more practice on this question. |
606 | 4 | 54.00 | 14.0 | 65 | Students show growth on this question. |
607 | 4 | 20.00 | 30.0 | 47 | Students show growth on this question. |
608 | 4 | 42.00 | 30.0 | 34 | Students are struggling, they need more practice on this question. |
609 | 4 | 32.00 | NA | NA | No significant change. |
610 | 4 | 35.00 | NA | NA | No significant change. |
611 | 4 | 35.00 | 72.0 | 54 | Students show growth on this question. |
612 | 4 | 23.00 | 76.0 | 65 | Students show growth on this question. |
613 | 4 | 33.00 | 44.0 | 57 | Students show growth on this question. |
614 | 4 | 33.00 | 40.0 | 75 | Students show growth on this question. |
615 | 4 | NA | 48.0 | NA | No significant change. |
616 | 4 | 60.00 | 73.0 | 68 | No significant change. |
617 | 4 | 45.00 | 36.0 | 41 | No significant change. |
618 | 4 | NA | 28.0 | NA | No significant change. |
619 | 4 | NA | 37.0 | NA | No significant change. |
620 | 4 | NA | 31.0 | NA | No significant change. |
621 | 4 | 33.00 | 50.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 4 | 61.00 | 61.0 | 70 | No significant change. |
701 | 4 | 48.00 | 48.0 | 92 | Students show growth on this question. |
702 | 4 | 62.00 | 62.0 | 80 | Students show growth on this question. |
703 | 4 | 63.00 | 53.0 | 75 | Students show growth on this question. |
704 | 4 | 41.00 | 70.0 | 39 | Students are struggling, they need more practice on this question. |
705 | 4 | 14.00 | 30.0 | 38 | Students are struggling, they need more practice on this question. |
706 | 4 | 32.00 | 40.0 | 50 | Students show growth on this question. |
707 | 4 | 25.93 | 33.0 | 28 | Students are struggling, they need more practice on this question. |
708 | 4 | 29.00 | 26.0 | 35 | Students are struggling, they need more practice on this question. |
709 | 4 | 14.00 | NA | NA | No significant change. |
710 | 4 | 10.00 | NA | NA | No significant change. |
711 | 4 | 40.00 | 56.0 | 48 | No significant change. |
712 | 4 | 36.67 | 55.0 | 45 | No significant change. |
713 | 4 | 28.57 | 50.0 | 62 | Students show growth on this question. |
714 | 4 | 46.43 | 59.0 | 55 | No significant change. |
715 | 4 | 41.00 | 72.0 | 62 | Students show growth on this question. |
716 | 4 | 36.00 | 62.0 | 64 | Students show growth on this question. |
717 | 4 | 28.57 | NA | 81 | Students show growth on this question. |
718 | 4 | 3.85 | 22.0 | 88 | Students show growth on this question. |
719 | 4 | 22.00 | 31.0 | NA | No significant change. |
800 | 4 | 24.00 | 41.0 | NA | No significant change. |
801 | 4 | 38.00 | 54.0 | NA | No significant change. |
802 | 4 | 20.00 | 50.0 | 100 | Students show growth on this question. |
803 | 4 | 23.00 | 38.5 | 72 | Students show growth on this question. |
804 | 4 | 25.00 | 53.6 | 97 | Students show growth on this question. |
805 | 4 | 21.00 | 50.0 | 76 | Students show growth on this question. |
806 | 4 | 40.00 | 35.0 | 62 | Students show growth on this question. |
807 | 4 | 35.00 | 48.0 | 76 | Students show growth on this question. |
808 | 4 | 43.00 | 36.4 | 57 | Students show growth on this question. |
809 | 4 | 0.00 | NA | NA | No significant change. |
810 | 4 | 44.00 | NA | NA | No significant change. |
811 | 4 | 28.00 | 23.0 | 81 | Students show growth on this question. |
812 | 4 | 22.00 | 36.0 | NA | No significant change. |
813 | 4 | 42.00 | 52.0 | 85 | Students show growth on this question. |
814 | 4 | 29.00 | 41.0 | 88 | Students show growth on this question. |
815 | 4 | 42.00 | 34.6 | 92 | Students show growth on this question. |
816 | 4 | 44.00 | 44.0 | NA | No significant change. |
817 | 4 | 15.00 | 50.0 | 80 | Students show growth on this question. |
818 | 4 | 35.00 | 62.0 | 88 | Students show growth on this question. |
819 | 4 | 15.00 | 30.0 | NA | No significant change. |
600 | 5 | 52.00 | 76.0 | 86 | Students show growth on this question. |
601 | 5 | 60.00 | 86.0 | 96 | Students show growth on this question. |
602 | 5 | 56.00 | 67.0 | 90 | Students show growth on this question. |
603 | 5 | 63.00 | 83.0 | 94 | Students show growth on this question. |
604 | 5 | 44.00 | 77.0 | 66 | Students show growth on this question. |
605 | 5 | 22.00 | 21.0 | 50 | Students show growth on this question. |
606 | 5 | 38.00 | 36.0 | 50 | Students show growth on this question. |
607 | 5 | 40.00 | 45.0 | 40 | No significant change. |
608 | 5 | 31.00 | 83.0 | 42 | Students show growth on this question. |
609 | 5 | 40.00 | NA | NA | No significant change. |
610 | 5 | 32.00 | NA | NA | No significant change. |
611 | 5 | 27.00 | 64.0 | 67 | Students show growth on this question. |
612 | 5 | 46.00 | 48.0 | 57 | Students show growth on this question. |
613 | 5 | 25.00 | 60.0 | 82 | Students show growth on this question. |
614 | 5 | 40.00 | 48.0 | 44 | No significant change. |
615 | 5 | NA | 55.0 | NA | No significant change. |
616 | 5 | 63.00 | 73.0 | 76 | Students show growth on this question. |
617 | 5 | 17.00 | 28.0 | 31 | Students are struggling, they need more practice on this question. |
618 | 5 | NA | 62.0 | NA | No significant change. |
619 | 5 | NA | 44.0 | NA | No significant change. |
620 | 5 | NA | 38.0 | NA | No significant change. |
621 | 5 | 50.00 | 0.0 | 40 | No significant change. |
700 | 5 | 65.00 | 52.0 | 57 | No significant change. |
701 | 5 | 48.00 | 68.0 | 96 | Students show growth on this question. |
702 | 5 | 29.00 | 29.0 | 40 | Students show growth on this question. |
703 | 5 | 38.00 | 47.0 | 44 | No significant change. |
704 | 5 | 32.00 | 25.0 | 30 | Students are struggling, they need more practice on this question. |
705 | 5 | 21.00 | 22.0 | 25 | Students are struggling, they need more practice on this question. |
706 | 5 | 54.00 | 44.0 | 39 | Students are struggling, they need more practice on this question. |
707 | 5 | 33.33 | 19.0 | 17 | Students are struggling, they need more practice on this question. |
708 | 5 | 21.00 | 39.0 | 35 | Students are struggling, they need more practice on this question. |
709 | 5 | 14.00 | NA | NA | No significant change. |
710 | 5 | 30.00 | NA | NA | No significant change. |
711 | 5 | 36.67 | 30.0 | 41 | No significant change. |
712 | 5 | 43.33 | 24.0 | 34 | Students are struggling, they need more practice on this question. |
713 | 5 | 39.29 | 57.0 | 59 | Students show growth on this question. |
714 | 5 | 32.14 | 45.0 | 48 | Students show growth on this question. |
715 | 5 | 48.00 | 48.0 | 73 | Students show growth on this question. |
716 | 5 | 5.00 | 57.0 | 50 | Students show growth on this question. |
717 | 5 | 17.86 | NA | 74 | Students show growth on this question. |
718 | 5 | 46.15 | 18.0 | 80 | Students show growth on this question. |
719 | 5 | 33.00 | 23.0 | NA | No significant change. |
800 | 5 | 86.00 | 96.0 | NA | No significant change. |
801 | 5 | 72.00 | 93.0 | NA | No significant change. |
802 | 5 | 80.00 | 87.0 | 100 | Students show growth on this question. |
803 | 5 | 80.00 | 73.1 | 92 | Students show growth on this question. |
804 | 5 | 88.00 | 78.6 | 90 | No significant change. |
805 | 5 | 82.00 | 79.2 | 95 | Students show growth on this question. |
806 | 5 | 68.00 | 62.0 | 66 | No significant change. |
807 | 5 | 74.00 | 56.0 | 76 | No significant change. |
808 | 5 | 30.00 | 72.7 | 86 | Students show growth on this question. |
809 | 5 | 73.00 | NA | NA | No significant change. |
810 | 5 | 22.00 | NA | NA | No significant change. |
811 | 5 | 56.00 | 65.0 | 88 | Students show growth on this question. |
812 | 5 | 70.00 | 86.0 | NA | No significant change. |
813 | 5 | 75.00 | 83.0 | 90 | Students show growth on this question. |
814 | 5 | 63.00 | 64.0 | 96 | Students show growth on this question. |
815 | 5 | 76.00 | 42.3 | 96 | Students show growth on this question. |
816 | 5 | 78.00 | 93.0 | NA | No significant change. |
817 | 5 | 46.00 | 46.0 | 83 | Students show growth on this question. |
818 | 5 | 46.00 | 81.0 | 83 | Students show growth on this question. |
819 | 5 | 60.00 | 91.0 | NA | No significant change. |
600 | 6 | 21.00 | 31.0 | 58 | Students show growth on this question. |
601 | 6 | 26.00 | 7.0 | 44 | Students show growth on this question. |
602 | 6 | 33.00 | 22.0 | 63 | Students show growth on this question. |
603 | 6 | 30.00 | 33.0 | 74 | Students show growth on this question. |
604 | 6 | 33.00 | 14.0 | 39 | Students are struggling, they need more practice on this question. |
605 | 6 | 22.00 | 42.0 | 31 | Students are struggling, they need more practice on this question. |
606 | 6 | 42.00 | 23.0 | 35 | Students are struggling, they need more practice on this question. |
607 | 6 | 24.00 | 60.0 | 20 | Students are struggling, they need more practice on this question. |
608 | 6 | 38.00 | 17.0 | 34 | Students are struggling, they need more practice on this question. |
609 | 6 | 10.00 | NA | NA | No significant change. |
610 | 6 | 17.00 | NA | NA | No significant change. |
611 | 6 | 19.00 | 36.0 | 42 | Students show growth on this question. |
612 | 6 | 27.00 | 24.0 | 44 | Students show growth on this question. |
613 | 6 | 16.00 | 32.0 | 61 | Students show growth on this question. |
614 | 6 | 17.00 | 16.0 | 39 | Students are struggling, they need more practice on this question. |
615 | 6 | NA | 45.0 | NA | No significant change. |
616 | 6 | 40.00 | 31.0 | 56 | Students show growth on this question. |
617 | 6 | 17.00 | 16.0 | 31 | Students are struggling, they need more practice on this question. |
618 | 6 | NA | 28.0 | NA | No significant change. |
619 | 6 | NA | 30.0 | NA | No significant change. |
620 | 6 | NA | 28.0 | NA | No significant change. |
621 | 6 | 33.00 | 50.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 6 | 57.00 | 65.0 | 78 | Students show growth on this question. |
701 | 6 | 36.00 | 32.0 | 88 | Students show growth on this question. |
702 | 6 | 29.00 | 43.0 | 65 | Students show growth on this question. |
703 | 6 | 50.00 | 47.0 | 50 | No significant change. |
704 | 6 | 23.00 | 40.0 | 58 | Students show growth on this question. |
705 | 6 | 24.00 | 26.0 | 55 | Students show growth on this question. |
706 | 6 | 14.00 | 32.0 | 43 | Students show growth on this question. |
707 | 6 | 18.52 | 41.0 | 34 | Students are struggling, they need more practice on this question. |
708 | 6 | 21.00 | 30.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 6 | 14.00 | NA | NA | No significant change. |
710 | 6 | 10.00 | NA | NA | No significant change. |
711 | 6 | 16.67 | 48.0 | 41 | Students show growth on this question. |
712 | 6 | 33.33 | 34.0 | 31 | Students are struggling, they need more practice on this question. |
713 | 6 | 25.00 | 36.0 | 69 | Students show growth on this question. |
714 | 6 | 28.57 | 24.0 | 55 | Students show growth on this question. |
715 | 6 | 37.00 | 56.0 | 58 | Students show growth on this question. |
716 | 6 | 36.00 | 33.0 | 27 | Students are struggling, they need more practice on this question. |
717 | 6 | 25.00 | NA | 85 | Students show growth on this question. |
718 | 6 | 26.92 | 25.0 | 84 | Students show growth on this question. |
719 | 6 | 22.00 | 46.0 | NA | No significant change. |
800 | 6 | 83.00 | 82.0 | NA | No significant change. |
801 | 6 | 90.00 | 89.0 | NA | No significant change. |
802 | 6 | 80.00 | 97.0 | 100 | Students show growth on this question. |
803 | 6 | 69.00 | 88.5 | 84 | Students show growth on this question. |
804 | 6 | 92.00 | 89.3 | 97 | No significant change. |
805 | 6 | 69.00 | 70.8 | 100 | Students show growth on this question. |
806 | 6 | 56.00 | 66.0 | 73 | Students show growth on this question. |
807 | 6 | 78.00 | 60.0 | 72 | No significant change. |
808 | 6 | 60.00 | 77.3 | 57 | No significant change. |
809 | 6 | 55.00 | NA | NA | No significant change. |
810 | 6 | 33.00 | NA | NA | No significant change. |
811 | 6 | 48.00 | 65.0 | 88 | Students show growth on this question. |
812 | 6 | 65.00 | 77.0 | NA | No significant change. |
813 | 6 | 71.00 | 83.0 | 80 | No significant change. |
814 | 6 | 83.00 | 64.0 | 100 | Students show growth on this question. |
815 | 6 | 84.00 | 80.8 | 96 | Students show growth on this question. |
816 | 6 | 85.00 | 96.0 | NA | No significant change. |
817 | 6 | 31.00 | 81.0 | 90 | Students show growth on this question. |
818 | 6 | 46.00 | 73.0 | 88 | Students show growth on this question. |
819 | 6 | 80.00 | 78.0 | NA | No significant change. |
600 | 7 | 76.00 | 90.0 | 97 | Students show growth on this question. |
601 | 7 | 76.00 | 93.0 | 92 | Students show growth on this question. |
602 | 7 | 80.00 | 93.0 | 97 | Students show growth on this question. |
603 | 7 | 70.00 | 87.0 | 87 | Students show growth on this question. |
604 | 7 | 66.00 | 96.0 | 92 | Students show growth on this question. |
605 | 7 | 23.00 | 83.0 | 92 | Students show growth on this question. |
606 | 7 | 46.00 | 73.0 | 75 | Students show growth on this question. |
607 | 7 | 48.00 | 45.0 | 54 | No significant change. |
608 | 7 | 27.00 | 74.0 | 84 | Students show growth on this question. |
609 | 7 | 52.00 | NA | NA | No significant change. |
610 | 7 | 66.00 | NA | NA | No significant change. |
611 | 7 | 54.00 | 84.0 | 83 | Students show growth on this question. |
612 | 7 | 62.00 | 88.0 | 78 | Students show growth on this question. |
613 | 7 | 67.00 | 80.0 | 75 | No significant change. |
614 | 7 | 53.00 | 76.0 | 74 | Students show growth on this question. |
615 | 7 | NA | 76.0 | NA | No significant change. |
616 | 7 | 63.00 | 77.0 | 92 | Students show growth on this question. |
617 | 7 | 67.00 | 52.0 | 83 | Students show growth on this question. |
618 | 7 | NA | 83.0 | NA | No significant change. |
619 | 7 | NA | 81.0 | NA | No significant change. |
620 | 7 | NA | 72.0 | NA | No significant change. |
621 | 7 | 66.00 | 50.0 | 60 | No significant change. |
700 | 7 | 17.00 | 74.0 | 87 | Students show growth on this question. |
701 | 7 | 68.00 | 56.0 | 88 | Students show growth on this question. |
702 | 7 | 14.00 | 57.0 | 70 | Students show growth on this question. |
703 | 7 | 44.00 | 77.0 | 69 | Students show growth on this question. |
704 | 7 | 41.00 | 65.0 | 67 | Students show growth on this question. |
705 | 7 | 59.00 | 52.0 | 46 | No significant change. |
706 | 7 | 46.00 | 76.0 | 70 | Students show growth on this question. |
707 | 7 | 44.44 | 56.0 | 59 | Students show growth on this question. |
708 | 7 | 39.00 | 48.0 | 48 | No significant change. |
709 | 7 | 57.00 | NA | NA | No significant change. |
710 | 7 | 30.00 | NA | NA | No significant change. |
711 | 7 | 66.67 | 63.0 | 59 | No significant change. |
712 | 7 | 70.00 | 55.0 | 72 | No significant change. |
713 | 7 | 46.43 | 68.0 | 62 | Students show growth on this question. |
714 | 7 | 42.86 | 59.0 | 76 | Students show growth on this question. |
715 | 7 | 15.00 | 60.0 | 89 | Students show growth on this question. |
716 | 7 | 18.00 | 76.0 | 82 | Students show growth on this question. |
717 | 7 | 32.14 | NA | 78 | Students show growth on this question. |
718 | 7 | 57.69 | 57.0 | 76 | Students show growth on this question. |
719 | 7 | 44.00 | 50.0 | NA | No significant change. |
800 | 7 | 24.00 | 70.0 | NA | No significant change. |
801 | 7 | 31.00 | 57.0 | NA | No significant change. |
802 | 7 | 32.00 | 53.0 | 100 | Students show growth on this question. |
803 | 7 | 30.00 | 26.9 | 68 | Students show growth on this question. |
804 | 7 | 40.00 | 50.0 | 93 | Students show growth on this question. |
805 | 7 | 26.00 | 70.8 | 81 | Students show growth on this question. |
806 | 7 | 40.00 | 31.0 | 66 | Students show growth on this question. |
807 | 7 | 35.00 | 44.0 | 76 | Students show growth on this question. |
808 | 7 | 30.00 | 36.4 | 48 | Students show growth on this question. |
809 | 7 | 36.00 | NA | NA | No significant change. |
810 | 7 | 22.00 | NA | NA | No significant change. |
811 | 7 | 28.00 | 35.0 | 81 | Students show growth on this question. |
812 | 7 | 17.00 | 50.0 | NA | No significant change. |
813 | 7 | 29.00 | 52.0 | 70 | Students show growth on this question. |
814 | 7 | 38.00 | 46.0 | 96 | Students show growth on this question. |
815 | 7 | 26.00 | 92.3 | 80 | Students show growth on this question. |
816 | 7 | 44.00 | 70.0 | NA | No significant change. |
817 | 7 | 35.00 | 27.0 | 69 | Students show growth on this question. |
818 | 7 | 42.00 | 50.0 | 58 | Students show growth on this question. |
819 | 7 | 30.00 | 52.0 | NA | No significant change. |
600 | 8 | 45.00 | 55.0 | 75 | Students show growth on this question. |
601 | 8 | 53.00 | 46.0 | 60 | No significant change. |
602 | 8 | 43.00 | 67.0 | 83 | Students show growth on this question. |
603 | 8 | 46.00 | 40.0 | 70 | Students show growth on this question. |
604 | 8 | 26.00 | 18.0 | 31 | Students are struggling, they need more practice on this question. |
605 | 8 | 9.00 | 25.0 | 35 | Students are struggling, they need more practice on this question. |
606 | 8 | 21.00 | 18.0 | 15 | Students are struggling, they need more practice on this question. |
607 | 8 | 32.00 | 25.0 | 40 | No significant change. |
608 | 8 | 27.00 | 35.0 | 21 | Students are struggling, they need more practice on this question. |
609 | 8 | 37.00 | NA | NA | No significant change. |
610 | 8 | 32.00 | NA | NA | No significant change. |
611 | 8 | 35.00 | 36.0 | 29 | Students are struggling, they need more practice on this question. |
612 | 8 | 19.00 | 40.0 | 30 | Students are struggling, they need more practice on this question. |
613 | 8 | 33.00 | 32.0 | 71 | Students show growth on this question. |
614 | 8 | 27.00 | 40.0 | 26 | Students are struggling, they need more practice on this question. |
615 | 8 | NA | 34.0 | NA | No significant change. |
616 | 8 | 23.00 | 35.0 | 56 | Students show growth on this question. |
617 | 8 | 34.00 | 8.0 | 24 | Students are struggling, they need more practice on this question. |
618 | 8 | NA | 21.0 | NA | No significant change. |
619 | 8 | NA | 26.0 | NA | No significant change. |
620 | 8 | NA | 28.0 | NA | No significant change. |
621 | 8 | 33.00 | 0.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 8 | 43.00 | 57.0 | 61 | Students show growth on this question. |
701 | 8 | 48.00 | 64.0 | 92 | Students show growth on this question. |
702 | 8 | 62.00 | 62.0 | 65 | No significant change. |
703 | 8 | 44.00 | 34.0 | 50 | No significant change. |
704 | 8 | 50.00 | 35.0 | 39 | Students are struggling, they need more practice on this question. |
705 | 8 | 52.00 | 35.0 | 21 | Students are struggling, they need more practice on this question. |
706 | 8 | 29.00 | 48.0 | 35 | Students are struggling, they need more practice on this question. |
707 | 8 | 33.33 | 30.0 | 59 | Students show growth on this question. |
708 | 8 | 32.00 | 26.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 8 | 29.00 | NA | NA | No significant change. |
710 | 8 | 0.00 | NA | NA | No significant change. |
711 | 8 | 46.67 | 33.0 | 38 | Students are struggling, they need more practice on this question. |
712 | 8 | 36.67 | 38.0 | 34 | Students are struggling, they need more practice on this question. |
713 | 8 | 39.29 | 43.0 | 48 | No significant change. |
714 | 8 | 21.43 | 45.0 | 48 | Students show growth on this question. |
715 | 8 | 44.00 | 32.0 | 35 | Students are struggling, they need more practice on this question. |
716 | 8 | 45.00 | 62.0 | 73 | Students show growth on this question. |
717 | 8 | 35.71 | NA | 85 | Students show growth on this question. |
718 | 8 | 34.62 | 32.0 | 80 | Students show growth on this question. |
719 | 8 | 22.00 | 46.0 | NA | No significant change. |
800 | 8 | 93.00 | 96.0 | NA | No significant change. |
801 | 8 | 86.00 | 96.0 | NA | No significant change. |
802 | 8 | 93.00 | 93.0 | 100 | No significant change. |
803 | 8 | 84.00 | 80.8 | 88 | No significant change. |
804 | 8 | 77.00 | 96.4 | 100 | Students show growth on this question. |
805 | 8 | 73.00 | 79.2 | 91 | Students show growth on this question. |
806 | 8 | 60.00 | 54.0 | 77 | Students show growth on this question. |
807 | 8 | 65.00 | 80.0 | 83 | Students show growth on this question. |
808 | 8 | 65.00 | 54.5 | 62 | No significant change. |
809 | 8 | 36.00 | NA | NA | No significant change. |
810 | 8 | 0.00 | NA | NA | No significant change. |
811 | 8 | 52.00 | 54.0 | 81 | Students show growth on this question. |
812 | 8 | 87.00 | 91.0 | NA | No significant change. |
813 | 8 | 71.00 | 87.0 | 75 | No significant change. |
814 | 8 | 63.00 | 82.0 | 96 | Students show growth on this question. |
815 | 8 | 88.00 | 50.0 | 96 | No significant change. |
816 | 8 | 96.00 | 93.0 | NA | No significant change. |
817 | 8 | 42.00 | 62.0 | 80 | Students show growth on this question. |
818 | 8 | 62.00 | 73.0 | 88 | Students show growth on this question. |
819 | 8 | 80.00 | 87.0 | NA | No significant change. |
600 | 9 | 79.00 | 76.0 | 86 | No significant change. |
601 | 9 | 73.00 | 86.0 | 92 | Students show growth on this question. |
602 | 9 | 66.00 | 93.0 | 83 | Students show growth on this question. |
603 | 9 | 76.00 | 77.0 | 97 | Students show growth on this question. |
604 | 9 | 41.00 | 55.0 | 62 | Students show growth on this question. |
605 | 9 | 22.00 | 50.0 | 58 | Students show growth on this question. |
606 | 9 | 42.00 | 46.0 | 55 | Students show growth on this question. |
607 | 9 | 32.00 | 40.0 | 47 | Students show growth on this question. |
608 | 9 | 58.00 | 74.0 | 54 | No significant change. |
609 | 9 | 13.00 | NA | NA | No significant change. |
610 | 9 | 13.00 | NA | NA | No significant change. |
611 | 9 | 35.00 | 48.0 | 67 | Students show growth on this question. |
612 | 9 | 35.00 | 64.0 | 83 | Students show growth on this question. |
613 | 9 | 45.00 | 60.0 | 71 | Students show growth on this question. |
614 | 9 | 50.00 | 56.0 | 65 | Students show growth on this question. |
615 | 9 | NA | 62.0 | NA | No significant change. |
616 | 9 | 56.00 | 69.0 | 96 | Students show growth on this question. |
617 | 9 | 41.00 | 32.0 | 41 | No significant change. |
618 | 9 | NA | 45.0 | NA | No significant change. |
619 | 9 | NA | 37.0 | NA | No significant change. |
620 | 9 | NA | 45.0 | NA | No significant change. |
621 | 9 | 17.00 | 33.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 9 | 26.00 | 26.0 | 61 | Students show growth on this question. |
701 | 9 | 48.00 | 40.0 | 96 | Students show growth on this question. |
702 | 9 | 33.00 | 29.0 | 40 | No significant change. |
703 | 9 | 44.00 | 42.0 | 57 | Students show growth on this question. |
704 | 9 | 32.00 | 40.0 | 29 | Students are struggling, they need more practice on this question. |
705 | 9 | 14.00 | 30.0 | 17 | Students are struggling, they need more practice on this question. |
706 | 9 | 14.00 | 20.0 | 23 | Students are struggling, they need more practice on this question. |
707 | 9 | 14.81 | 4.0 | 14 | Students are struggling, they need more practice on this question. |
708 | 9 | 18.00 | 13.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 9 | 0.00 | NA | NA | No significant change. |
710 | 9 | 0.00 | NA | NA | No significant change. |
711 | 9 | 33.33 | 37.0 | 45 | Students show growth on this question. |
712 | 9 | 33.33 | 21.0 | 21 | Students are struggling, they need more practice on this question. |
713 | 9 | 25.00 | 21.0 | 34 | Students are struggling, they need more practice on this question. |
714 | 9 | 21.43 | 31.0 | 55 | Students show growth on this question. |
715 | 9 | 26.00 | 24.0 | 58 | Students show growth on this question. |
716 | 9 | 45.00 | 19.0 | 46 | No significant change. |
717 | 9 | 17.86 | NA | 63 | Students show growth on this question. |
718 | 9 | 23.08 | 32.0 | 76 | Students show growth on this question. |
719 | 9 | 44.00 | 50.0 | NA | No significant change. |
800 | 9 | 59.00 | 63.0 | NA | No significant change. |
801 | 9 | 59.00 | 64.0 | NA | No significant change. |
802 | 9 | 47.00 | 70.0 | 90 | Students show growth on this question. |
803 | 9 | 38.00 | 50.0 | 60 | Students show growth on this question. |
804 | 9 | 66.00 | 75.0 | 82 | Students show growth on this question. |
805 | 9 | 47.00 | 62.5 | 81 | Students show growth on this question. |
806 | 9 | 36.00 | 50.0 | 73 | Students show growth on this question. |
807 | 9 | 61.00 | 48.0 | 66 | No significant change. |
808 | 9 | 34.00 | 54.5 | 67 | Students show growth on this question. |
809 | 9 | 9.00 | NA | NA | No significant change. |
810 | 9 | 11.00 | NA | NA | No significant change. |
811 | 9 | 40.00 | 50.0 | 88 | Students show growth on this question. |
812 | 9 | 26.00 | 36.0 | NA | No significant change. |
813 | 9 | 46.00 | 48.0 | 70 | Students show growth on this question. |
814 | 9 | 46.00 | 82.0 | 63 | Students show growth on this question. |
815 | 9 | 57.00 | 53.8 | 75 | Students show growth on this question. |
816 | 9 | 44.00 | 56.0 | NA | No significant change. |
817 | 9 | 54.00 | 54.0 | 80 | Students show growth on this question. |
818 | 9 | 50.00 | 69.0 | 83 | Students show growth on this question. |
819 | 9 | 30.00 | 61.0 | NA | No significant change. |
600 | 10 | 76.00 | 62.0 | 83 | No significant change. |
601 | 10 | 60.00 | 61.0 | 88 | Students show growth on this question. |
602 | 10 | 50.00 | 41.0 | 73 | Students show growth on this question. |
603 | 10 | 30.00 | 63.0 | 94 | Students show growth on this question. |
604 | 10 | 33.00 | 50.0 | 62 | Students show growth on this question. |
605 | 10 | 17.00 | 42.0 | 31 | Students are struggling, they need more practice on this question. |
606 | 10 | 38.00 | 50.0 | 55 | Students show growth on this question. |
607 | 10 | 40.00 | 30.0 | 33 | Students are struggling, they need more practice on this question. |
608 | 10 | 37.00 | 52.0 | 38 | Students are struggling, they need more practice on this question. |
609 | 10 | 15.00 | NA | NA | No significant change. |
610 | 10 | 13.00 | NA | NA | No significant change. |
611 | 10 | 35.00 | 44.0 | 63 | Students show growth on this question. |
612 | 10 | 42.00 | 56.0 | 70 | Students show growth on this question. |
613 | 10 | 29.00 | 44.0 | 71 | Students show growth on this question. |
614 | 10 | 36.00 | 44.0 | 30 | Students are struggling, they need more practice on this question. |
615 | 10 | NA | 48.0 | NA | No significant change. |
616 | 10 | 43.00 | 62.0 | 68 | Students show growth on this question. |
617 | 10 | 21.00 | 32.0 | 55 | Students show growth on this question. |
618 | 10 | NA | 52.0 | NA | No significant change. |
619 | 10 | NA | 52.0 | NA | No significant change. |
620 | 10 | NA | 41.0 | NA | No significant change. |
621 | 10 | 17.00 | 33.0 | 0 | Students are struggling, they need more practice on this question. |
700 | 10 | 83.00 | 91.0 | 100 | Students show growth on this question. |
701 | 10 | 80.00 | 52.0 | 88 | No significant change. |
702 | 10 | 80.00 | 81.0 | 85 | No significant change. |
703 | 10 | 75.00 | 77.0 | 94 | Students show growth on this question. |
704 | 10 | 60.00 | 70.0 | 76 | Students show growth on this question. |
705 | 10 | 59.00 | 57.0 | 46 | No significant change. |
706 | 10 | 36.00 | 68.0 | 46 | Students show growth on this question. |
707 | 10 | 25.93 | 19.0 | 34 | Students are struggling, they need more practice on this question. |
708 | 10 | 32.00 | 39.0 | 65 | Students show growth on this question. |
709 | 10 | 14.00 | NA | NA | No significant change. |
710 | 10 | 10.00 | NA | NA | No significant change. |
711 | 10 | 36.67 | 59.0 | 62 | Students show growth on this question. |
712 | 10 | 43.33 | 62.0 | 62 | Students show growth on this question. |
713 | 10 | 50.00 | 61.0 | 79 | Students show growth on this question. |
714 | 10 | 35.71 | 66.0 | 90 | Students show growth on this question. |
715 | 10 | 67.00 | 80.0 | 96 | Students show growth on this question. |
716 | 10 | 73.00 | 91.0 | 91 | Students show growth on this question. |
717 | 10 | 32.14 | NA | 89 | Students show growth on this question. |
718 | 10 | 61.54 | 39.0 | 76 | Students show growth on this question. |
719 | 10 | 22.00 | 77.0 | NA | No significant change. |
800 | 10 | 72.00 | 93.0 | NA | No significant change. |
801 | 10 | 83.00 | 79.0 | NA | No significant change. |
802 | 10 | 73.00 | 77.0 | 97 | Students show growth on this question. |
803 | 10 | 38.00 | 53.8 | 60 | Students show growth on this question. |
804 | 10 | 48.00 | 82.1 | 82 | Students show growth on this question. |
805 | 10 | 65.00 | 79.2 | 72 | No significant change. |
806 | 10 | 40.00 | 58.0 | 50 | Students show growth on this question. |
807 | 10 | 30.00 | 52.0 | 69 | Students show growth on this question. |
808 | 10 | 26.00 | 31.8 | 43 | Students show growth on this question. |
809 | 10 | 27.00 | NA | NA | No significant change. |
810 | 10 | 11.00 | NA | NA | No significant change. |
811 | 10 | 44.00 | 62.0 | 75 | Students show growth on this question. |
812 | 10 | 57.00 | 64.0 | NA | No significant change. |
813 | 10 | 67.00 | 57.0 | 90 | Students show growth on this question. |
814 | 10 | 46.00 | 41.0 | 100 | Students show growth on this question. |
815 | 10 | 80.00 | 76.9 | 88 | No significant change. |
816 | 10 | 56.00 | 82.0 | NA | No significant change. |
817 | 10 | 16.00 | 39.0 | 62 | Students show growth on this question. |
818 | 10 | 35.00 | 62.0 | 58 | Students show growth on this question. |
819 | 10 | 35.00 | 48.0 | NA | No significant change. |
600 | 11 | 45.00 | 34.0 | 50 | No significant change. |
601 | 11 | 30.00 | 18.0 | 44 | Students show growth on this question. |
602 | 11 | 53.00 | 22.0 | 66 | Students show growth on this question. |
603 | 11 | 16.00 | 27.0 | 67 | Students show growth on this question. |
604 | 11 | 30.00 | 36.0 | 23 | Students are struggling, they need more practice on this question. |
605 | 11 | 9.00 | 21.0 | 31 | Students are struggling, they need more practice on this question. |
606 | 11 | 21.00 | 27.0 | 40 | Students show growth on this question. |
607 | 11 | 8.00 | 20.0 | 20 | Students are struggling, they need more practice on this question. |
608 | 11 | 23.00 | 35.0 | 13 | Students are struggling, they need more practice on this question. |
609 | 11 | 4.00 | NA | NA | No significant change. |
610 | 11 | 10.00 | NA | NA | No significant change. |
611 | 11 | 42.00 | 28.0 | 58 | Students show growth on this question. |
612 | 11 | 15.00 | 12.0 | 22 | Students are struggling, they need more practice on this question. |
613 | 11 | 17.00 | 24.0 | 50 | Students show growth on this question. |
614 | 11 | 23.00 | 44.0 | 30 | Students are struggling, they need more practice on this question. |
615 | 11 | NA | 24.0 | NA | No significant change. |
616 | 11 | 30.00 | 35.0 | 44 | Students show growth on this question. |
617 | 11 | 24.00 | 24.0 | 31 | Students are struggling, they need more practice on this question. |
618 | 11 | NA | 41.0 | NA | No significant change. |
619 | 11 | NA | 30.0 | NA | No significant change. |
620 | 11 | NA | 21.0 | NA | No significant change. |
621 | 11 | 17.00 | 16.0 | 60 | Students show growth on this question. |
700 | 11 | 22.00 | 17.0 | 35 | Students are struggling, they need more practice on this question. |
701 | 11 | 16.00 | 44.0 | 96 | Students show growth on this question. |
702 | 11 | 29.00 | 38.0 | 75 | Students show growth on this question. |
703 | 11 | 32.00 | 53.0 | 63 | Students show growth on this question. |
704 | 11 | 9.00 | 45.0 | 62 | Students show growth on this question. |
705 | 11 | 14.00 | 44.0 | 55 | Students show growth on this question. |
706 | 11 | 14.00 | 44.0 | 54 | Students show growth on this question. |
707 | 11 | 14.81 | 44.0 | 41 | Students show growth on this question. |
708 | 11 | 11.00 | 30.0 | 52 | Students show growth on this question. |
709 | 11 | 29.00 | NA | NA | No significant change. |
710 | 11 | 0.00 | NA | NA | No significant change. |
711 | 11 | 16.67 | 56.0 | 72 | Students show growth on this question. |
712 | 11 | 33.33 | 59.0 | 72 | Students show growth on this question. |
713 | 11 | 21.43 | 71.0 | 76 | Students show growth on this question. |
714 | 11 | 35.71 | 62.0 | 69 | Students show growth on this question. |
715 | 11 | 26.00 | 20.0 | 85 | Students show growth on this question. |
716 | 11 | 32.00 | 24.0 | 5 | Students are struggling, they need more practice on this question. |
717 | 11 | 10.71 | NA | 100 | Students show growth on this question. |
718 | 11 | 38.46 | 22.0 | 68 | Students show growth on this question. |
719 | 11 | 11.00 | 54.0 | NA | No significant change. |
800 | 11 | 52.00 | 93.0 | NA | No significant change. |
801 | 11 | 48.00 | 79.0 | NA | No significant change. |
802 | 11 | 60.00 | 87.0 | 100 | Students show growth on this question. |
803 | 11 | 53.00 | 53.8 | 88 | Students show growth on this question. |
804 | 11 | 63.00 | 82.1 | 100 | Students show growth on this question. |
805 | 11 | 56.00 | 83.3 | 91 | Students show growth on this question. |
806 | 11 | 56.00 | 66.0 | 73 | Students show growth on this question. |
807 | 11 | 39.00 | 60.0 | 83 | Students show growth on this question. |
808 | 11 | 47.00 | 54.5 | 76 | Students show growth on this question. |
809 | 11 | 36.00 | NA | NA | No significant change. |
810 | 11 | 22.00 | NA | NA | No significant change. |
811 | 11 | 32.00 | 54.0 | 93 | Students show growth on this question. |
812 | 11 | 44.00 | 55.0 | NA | No significant change. |
813 | 11 | 38.00 | 65.0 | 100 | Students show growth on this question. |
814 | 11 | 58.00 | 59.0 | 100 | Students show growth on this question. |
815 | 11 | 88.00 | 88.5 | 96 | No significant change. |
816 | 11 | 63.00 | 82.0 | NA | No significant change. |
817 | 11 | 46.00 | 54.0 | 80 | Students show growth on this question. |
818 | 11 | 58.00 | 58.0 | 75 | Students show growth on this question. |
819 | 11 | 35.00 | 65.0 | NA | No significant change. |
600 | 12 | 45.00 | 48.0 | 75 | Students show growth on this question. |
601 | 12 | 36.00 | 64.0 | 72 | Students show growth on this question. |
602 | 12 | 26.00 | 41.0 | 59 | Students show growth on this question. |
603 | 12 | 30.00 | 37.0 | 70 | Students show growth on this question. |
604 | 12 | 15.00 | 23.0 | 23 | Students are struggling, they need more practice on this question. |
605 | 12 | 4.00 | 29.0 | 23 | Students are struggling, they need more practice on this question. |
606 | 12 | 25.00 | 18.0 | 25 | Students are struggling, they need more practice on this question. |
607 | 12 | 4.00 | 30.0 | 20 | Students are struggling, they need more practice on this question. |
608 | 12 | 23.00 | 35.0 | 29 | Students are struggling, they need more practice on this question. |
609 | 12 | 20.00 | NA | NA | No significant change. |
610 | 12 | 19.00 | NA | NA | No significant change. |
611 | 12 | 15.00 | 28.0 | 29 | Students are struggling, they need more practice on this question. |
612 | 12 | 12.00 | 44.0 | 44 | Students show growth on this question. |
613 | 12 | 8.00 | 8.0 | 21 | Students are struggling, they need more practice on this question. |
614 | 12 | 20.00 | 36.0 | 39 | Students are struggling, they need more practice on this question. |
615 | 12 | NA | 24.0 | NA | No significant change. |
616 | 12 | 30.00 | 27.0 | 48 | Students show growth on this question. |
617 | 12 | 10.00 | 24.0 | 17 | Students are struggling, they need more practice on this question. |
618 | 12 | NA | 31.0 | NA | No significant change. |
619 | 12 | NA | 22.0 | NA | No significant change. |
620 | 12 | NA | 28.0 | NA | No significant change. |
621 | 12 | 33.00 | 33.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 12 | 39.00 | 52.0 | 57 | Students show growth on this question. |
701 | 12 | 36.00 | 56.0 | 92 | Students show growth on this question. |
702 | 12 | 57.00 | 57.0 | 55 | No significant change. |
703 | 12 | 32.00 | 77.0 | 57 | Students show growth on this question. |
704 | 12 | 18.00 | 35.0 | 39 | Students are struggling, they need more practice on this question. |
705 | 12 | 24.00 | 9.0 | 42 | Students show growth on this question. |
706 | 12 | 29.00 | 44.0 | 31 | Students are struggling, they need more practice on this question. |
707 | 12 | 33.33 | 22.0 | 45 | Students show growth on this question. |
708 | 12 | 21.00 | 30.0 | 18 | Students are struggling, they need more practice on this question. |
709 | 12 | 29.00 | NA | NA | No significant change. |
710 | 12 | 10.00 | NA | NA | No significant change. |
711 | 12 | 36.67 | 41.0 | 38 | Students are struggling, they need more practice on this question. |
712 | 12 | 43.33 | 28.0 | 28 | Students are struggling, they need more practice on this question. |
713 | 12 | 32.14 | 21.0 | 55 | Students show growth on this question. |
714 | 12 | 32.14 | 34.0 | 52 | Students show growth on this question. |
715 | 12 | 44.00 | 60.0 | 54 | Students show growth on this question. |
716 | 12 | 32.00 | 43.0 | 55 | Students show growth on this question. |
717 | 12 | 32.14 | NA | 66 | Students show growth on this question. |
718 | 12 | 23.08 | 36.0 | 60 | Students show growth on this question. |
719 | 12 | 11.00 | 35.0 | NA | No significant change. |
800 | 12 | 21.00 | 33.0 | NA | No significant change. |
801 | 12 | 24.00 | 32.0 | NA | No significant change. |
802 | 12 | 13.00 | 40.0 | 100 | Students show growth on this question. |
803 | 12 | 26.00 | 23.1 | 72 | Students show growth on this question. |
804 | 12 | 29.00 | 53.6 | 97 | Students show growth on this question. |
805 | 12 | 13.00 | 50.0 | 57 | Students show growth on this question. |
806 | 12 | 48.00 | 43.0 | 62 | Students show growth on this question. |
807 | 12 | 26.00 | 40.0 | 55 | Students show growth on this question. |
808 | 12 | 21.00 | 27.3 | 19 | Students are struggling, they need more practice on this question. |
809 | 12 | 27.00 | NA | NA | No significant change. |
810 | 12 | 33.00 | NA | NA | No significant change. |
811 | 12 | 8.00 | 27.0 | 63 | Students show growth on this question. |
812 | 12 | 30.00 | 0.0 | NA | No significant change. |
813 | 12 | 33.00 | 22.0 | 55 | Students show growth on this question. |
814 | 12 | 18.00 | 14.0 | 71 | Students show growth on this question. |
815 | 12 | 15.00 | 34.6 | 75 | Students show growth on this question. |
816 | 12 | 44.00 | 48.0 | NA | No significant change. |
817 | 12 | 27.00 | 43.0 | 62 | Students show growth on this question. |
818 | 12 | 39.00 | 54.0 | 68 | Students show growth on this question. |
819 | 12 | 10.00 | 26.0 | NA | No significant change. |
600 | 13 | 59.00 | 69.0 | 83 | Students show growth on this question. |
601 | 13 | 63.00 | 82.0 | 100 | Students show growth on this question. |
602 | 13 | 43.00 | 52.0 | 87 | Students show growth on this question. |
603 | 13 | 60.00 | 70.0 | 94 | Students show growth on this question. |
604 | 13 | 37.00 | 50.0 | 58 | Students show growth on this question. |
605 | 13 | 17.00 | 50.0 | 39 | Students are struggling, they need more practice on this question. |
606 | 13 | 38.00 | 46.0 | 40 | No significant change. |
607 | 13 | 40.00 | 45.0 | 40 | No significant change. |
608 | 13 | 39.00 | 44.0 | 39 | Students are struggling, they need more practice on this question. |
609 | 13 | 68.00 | NA | NA | No significant change. |
610 | 13 | 50.00 | NA | NA | No significant change. |
611 | 13 | 46.00 | 64.0 | 58 | Students show growth on this question. |
612 | 13 | 39.00 | 80.0 | 78 | Students show growth on this question. |
613 | 13 | 42.00 | 52.0 | 71 | Students show growth on this question. |
614 | 13 | 47.00 | 40.0 | 61 | Students show growth on this question. |
615 | 13 | NA | 55.0 | NA | No significant change. |
616 | 13 | 66.00 | 85.0 | 84 | Students show growth on this question. |
617 | 13 | 41.00 | 8.0 | 38 | Students are struggling, they need more practice on this question. |
618 | 13 | NA | 41.0 | NA | No significant change. |
619 | 13 | NA | 48.0 | NA | No significant change. |
620 | 13 | NA | 45.0 | NA | No significant change. |
621 | 13 | 50.00 | 33.0 | 40 | No significant change. |
700 | 13 | 65.00 | 78.0 | 70 | No significant change. |
701 | 13 | 68.00 | 60.0 | 92 | Students show growth on this question. |
702 | 13 | 65.00 | 71.0 | 90 | Students show growth on this question. |
703 | 13 | 69.00 | 59.0 | 69 | No significant change. |
704 | 13 | 41.00 | 30.0 | 39 | Students are struggling, they need more practice on this question. |
705 | 13 | 45.00 | 35.0 | 55 | Students show growth on this question. |
706 | 13 | 29.00 | 52.0 | 27 | Students are struggling, they need more practice on this question. |
707 | 13 | 33.33 | 33.0 | 55 | Students show growth on this question. |
708 | 13 | 14.00 | 22.0 | 22 | Students are struggling, they need more practice on this question. |
709 | 13 | 0.00 | NA | NA | No significant change. |
710 | 13 | 10.00 | NA | NA | No significant change. |
711 | 13 | 30.00 | 30.0 | 31 | Students are struggling, they need more practice on this question. |
712 | 13 | 20.00 | 31.0 | 45 | Students show growth on this question. |
713 | 13 | 50.00 | 43.0 | 72 | Students show growth on this question. |
714 | 13 | 42.86 | 48.0 | 62 | Students show growth on this question. |
715 | 13 | 67.00 | 56.0 | 89 | Students show growth on this question. |
716 | 13 | 77.00 | 81.0 | 82 | No significant change. |
717 | 13 | 39.29 | NA | 78 | Students show growth on this question. |
718 | 13 | 26.92 | 15.0 | 56 | Students show growth on this question. |
719 | 13 | 0.00 | 38.0 | NA | No significant change. |
800 | 13 | 83.00 | 96.0 | NA | No significant change. |
801 | 13 | 93.00 | 82.0 | NA | No significant change. |
802 | 13 | 24.00 | 97.0 | 97 | Students show growth on this question. |
803 | 13 | 65.00 | 65.4 | 84 | Students show growth on this question. |
804 | 13 | 88.00 | 92.9 | 93 | No significant change. |
805 | 13 | 69.00 | 87.5 | 81 | Students show growth on this question. |
806 | 13 | 48.00 | 70.0 | 73 | Students show growth on this question. |
807 | 13 | 48.00 | 72.0 | 83 | Students show growth on this question. |
808 | 13 | 56.00 | 59.1 | 53 | No significant change. |
809 | 13 | 73.00 | NA | NA | No significant change. |
810 | 13 | 66.00 | NA | NA | No significant change. |
811 | 13 | 60.00 | 62.0 | 81 | Students show growth on this question. |
812 | 13 | 61.00 | 77.0 | NA | No significant change. |
813 | 13 | 71.00 | 83.0 | 85 | Students show growth on this question. |
814 | 13 | 71.00 | 82.0 | 83 | Students show growth on this question. |
815 | 13 | 88.00 | 88.5 | 96 | No significant change. |
816 | 13 | 82.00 | 89.0 | NA | No significant change. |
817 | 13 | 39.00 | 62.0 | 97 | Students show growth on this question. |
818 | 13 | 62.00 | 73.0 | 92 | Students show growth on this question. |
819 | 13 | 85.00 | 61.0 | NA | No significant change. |
600 | 14 | 89.00 | 86.0 | 93 | No significant change. |
601 | 14 | 73.00 | 89.0 | 100 | Students show growth on this question. |
602 | 14 | 63.00 | 85.0 | 97 | Students show growth on this question. |
603 | 14 | 66.00 | 93.0 | 100 | Students show growth on this question. |
604 | 14 | 41.00 | 91.0 | 85 | Students show growth on this question. |
605 | 14 | 26.00 | 71.0 | 70 | Students show growth on this question. |
606 | 14 | 42.00 | 64.0 | 75 | Students show growth on this question. |
607 | 14 | 28.00 | 45.0 | 75 | Students show growth on this question. |
608 | 14 | 50.00 | 78.0 | 71 | Students show growth on this question. |
609 | 14 | 38.00 | NA | NA | No significant change. |
610 | 14 | 52.00 | NA | NA | No significant change. |
611 | 14 | 50.00 | 56.0 | 71 | Students show growth on this question. |
612 | 14 | 39.00 | 76.0 | 65 | Students show growth on this question. |
613 | 14 | 54.00 | 64.0 | 82 | Students show growth on this question. |
614 | 14 | 40.00 | 68.0 | 61 | Students show growth on this question. |
615 | 14 | NA | 73.0 | NA | No significant change. |
616 | 14 | 63.00 | 92.0 | 92 | Students show growth on this question. |
617 | 14 | 76.00 | 28.0 | 59 | No significant change. |
618 | 14 | NA | 55.0 | NA | No significant change. |
619 | 14 | NA | 59.0 | NA | No significant change. |
620 | 14 | NA | 62.0 | NA | No significant change. |
621 | 14 | 66.00 | 66.0 | 40 | No significant change. |
700 | 14 | 83.00 | 96.0 | 96 | Students show growth on this question. |
701 | 14 | 84.00 | 84.0 | 96 | Students show growth on this question. |
702 | 14 | 62.00 | 95.0 | 95 | Students show growth on this question. |
703 | 14 | 50.00 | 88.0 | 94 | Students show growth on this question. |
704 | 14 | 55.00 | 85.0 | 76 | Students show growth on this question. |
705 | 14 | 55.00 | 66.0 | 63 | No significant change. |
706 | 14 | 61.00 | 64.0 | 70 | No significant change. |
707 | 14 | 29.63 | 78.0 | 69 | Students show growth on this question. |
708 | 14 | 54.00 | 57.0 | 74 | Students show growth on this question. |
709 | 14 | 71.00 | NA | NA | No significant change. |
710 | 14 | 40.00 | NA | NA | No significant change. |
711 | 14 | 56.67 | 85.0 | 90 | Students show growth on this question. |
712 | 14 | 63.33 | 79.0 | 69 | No significant change. |
713 | 14 | 71.43 | 89.0 | 90 | Students show growth on this question. |
714 | 14 | 57.14 | 79.0 | 90 | Students show growth on this question. |
715 | 14 | 56.00 | 92.0 | 92 | Students show growth on this question. |
716 | 14 | 68.00 | 95.0 | 100 | Students show growth on this question. |
717 | 14 | 60.71 | NA | 89 | Students show growth on this question. |
718 | 14 | 61.54 | 79.0 | 76 | Students show growth on this question. |
719 | 14 | 33.00 | 77.0 | NA | No significant change. |
800 | 14 | 97.00 | 96.0 | NA | No significant change. |
801 | 14 | 90.00 | 96.0 | NA | No significant change. |
802 | 14 | 90.00 | 93.0 | 100 | Students show growth on this question. |
803 | 14 | 73.00 | 88.5 | 92 | Students show growth on this question. |
804 | 14 | 85.00 | 96.4 | 97 | Students show growth on this question. |
805 | 14 | 73.00 | 83.3 | 91 | Students show growth on this question. |
806 | 14 | 40.00 | 70.0 | 81 | Students show growth on this question. |
807 | 14 | 74.00 | 76.0 | 86 | Students show growth on this question. |
808 | 14 | 60.00 | 59.1 | 86 | Students show growth on this question. |
809 | 14 | 64.00 | NA | NA | No significant change. |
810 | 14 | 44.00 | NA | NA | No significant change. |
811 | 14 | 48.00 | 65.0 | 87 | Students show growth on this question. |
812 | 14 | 78.00 | 86.0 | NA | No significant change. |
813 | 14 | 71.00 | 92.0 | 90 | Students show growth on this question. |
814 | 14 | 71.00 | 77.0 | 96 | Students show growth on this question. |
815 | 14 | 84.00 | 100.0 | 100 | Students show growth on this question. |
816 | 14 | 70.00 | 96.0 | NA | No significant change. |
817 | 14 | 39.00 | 50.0 | 93 | Students show growth on this question. |
818 | 14 | 62.00 | 73.0 | 75 | Students show growth on this question. |
819 | 14 | 85.00 | 87.0 | NA | No significant change. |
600 | 15 | 65.00 | 83.0 | 97 | Students show growth on this question. |
601 | 15 | 73.00 | 89.0 | 100 | Students show growth on this question. |
602 | 15 | 30.00 | 74.0 | 83 | Students show growth on this question. |
603 | 15 | 36.00 | 67.0 | 87 | Students show growth on this question. |
604 | 15 | 44.00 | 64.0 | 70 | Students show growth on this question. |
605 | 15 | 22.00 | 50.0 | 54 | Students show growth on this question. |
606 | 15 | 38.00 | 36.0 | 50 | Students show growth on this question. |
607 | 15 | 24.00 | 45.0 | 54 | Students show growth on this question. |
608 | 15 | 50.00 | 57.0 | 50 | No significant change. |
609 | 15 | 35.00 | NA | NA | No significant change. |
610 | 15 | 40.00 | NA | NA | No significant change. |
611 | 15 | 35.00 | 44.0 | 67 | Students show growth on this question. |
612 | 15 | 19.00 | 64.0 | 78 | Students show growth on this question. |
613 | 15 | 13.00 | 56.0 | 61 | Students show growth on this question. |
614 | 15 | 36.00 | 60.0 | 52 | Students show growth on this question. |
615 | 15 | NA | 80.0 | NA | No significant change. |
616 | 15 | 53.00 | 69.0 | 88 | Students show growth on this question. |
617 | 15 | 24.00 | 24.0 | 31 | Students are struggling, they need more practice on this question. |
618 | 15 | NA | 31.0 | NA | No significant change. |
619 | 15 | NA | 56.0 | NA | No significant change. |
620 | 15 | NA | 48.0 | NA | No significant change. |
621 | 15 | 17.00 | 16.0 | 40 | Students show growth on this question. |
700 | 15 | 30.00 | 13.0 | 17 | Students are struggling, they need more practice on this question. |
701 | 15 | 24.00 | 32.0 | 96 | Students show growth on this question. |
702 | 15 | 31.00 | 19.0 | 15 | Students are struggling, they need more practice on this question. |
703 | 15 | 13.00 | 6.0 | 0 | Students are struggling, they need more practice on this question. |
704 | 15 | 23.00 | 5.0 | 20 | Students are struggling, they need more practice on this question. |
705 | 15 | 14.00 | 26.0 | 25 | Students are struggling, they need more practice on this question. |
706 | 15 | 14.00 | 20.0 | 12 | Students are struggling, they need more practice on this question. |
707 | 15 | 37.04 | 37.0 | 17 | Students are struggling, they need more practice on this question. |
708 | 15 | 25.00 | 26.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 15 | 0.00 | NA | NA | No significant change. |
710 | 15 | 40.00 | NA | NA | No significant change. |
711 | 15 | 26.67 | 22.0 | 14 | Students are struggling, they need more practice on this question. |
712 | 15 | 13.33 | 21.0 | 21 | Students are struggling, they need more practice on this question. |
713 | 15 | 28.57 | 29.0 | 10 | Students are struggling, they need more practice on this question. |
714 | 15 | 25.00 | 14.0 | 3 | Students are struggling, they need more practice on this question. |
715 | 15 | 11.00 | 4.0 | 4 | Students are struggling, they need more practice on this question. |
716 | 15 | 5.00 | 10.0 | 5 | Students are struggling, they need more practice on this question. |
717 | 15 | 28.57 | NA | 59 | Students show growth on this question. |
718 | 15 | 30.77 | 29.0 | 72 | Students show growth on this question. |
719 | 15 | 22.00 | 31.0 | NA | No significant change. |
800 | 15 | 76.00 | 74.0 | NA | No significant change. |
801 | 15 | 79.00 | 85.0 | NA | No significant change. |
802 | 15 | 83.00 | 80.0 | 100 | Students show growth on this question. |
803 | 15 | 42.00 | 76.9 | 84 | Students show growth on this question. |
804 | 15 | 70.00 | 71.4 | 93 | Students show growth on this question. |
805 | 15 | 65.00 | 58.2 | 91 | Students show growth on this question. |
806 | 15 | 24.00 | 50.0 | 81 | Students show growth on this question. |
807 | 15 | 52.00 | 64.0 | 69 | Students show growth on this question. |
808 | 15 | 43.00 | 54.5 | 71 | Students show growth on this question. |
809 | 15 | 27.00 | NA | NA | No significant change. |
810 | 15 | 33.00 | NA | NA | No significant change. |
811 | 15 | 52.00 | 54.0 | 81 | Students show growth on this question. |
812 | 15 | 57.00 | 73.0 | NA | No significant change. |
813 | 15 | 42.00 | 57.0 | 90 | Students show growth on this question. |
814 | 15 | 54.00 | 77.0 | 96 | Students show growth on this question. |
815 | 15 | 61.00 | 80.8 | 84 | Students show growth on this question. |
816 | 15 | 70.00 | 82.0 | NA | No significant change. |
817 | 15 | 27.00 | 58.0 | 90 | Students show growth on this question. |
818 | 15 | 27.00 | 46.0 | 79 | Students show growth on this question. |
819 | 15 | 60.00 | 74.0 | NA | No significant change. |
600 | 16 | 72.00 | 83.0 | 97 | Students show growth on this question. |
601 | 16 | 60.00 | 79.0 | 96 | Students show growth on this question. |
602 | 16 | 50.00 | 81.0 | 90 | Students show growth on this question. |
603 | 16 | 56.00 | 93.0 | 100 | Students show growth on this question. |
604 | 16 | 41.00 | 68.0 | 77 | Students show growth on this question. |
605 | 16 | 17.00 | 75.0 | 58 | Students show growth on this question. |
606 | 16 | 29.00 | 41.0 | 30 | Students are struggling, they need more practice on this question. |
607 | 16 | 36.00 | 55.0 | 60 | Students show growth on this question. |
608 | 16 | 46.00 | 65.0 | 50 | No significant change. |
609 | 16 | 17.00 | NA | NA | No significant change. |
610 | 16 | 17.00 | NA | NA | No significant change. |
611 | 16 | 35.00 | 48.0 | 67 | Students show growth on this question. |
612 | 16 | 19.00 | 68.0 | 57 | Students show growth on this question. |
613 | 16 | 13.00 | 60.0 | 71 | Students show growth on this question. |
614 | 16 | 30.00 | 60.0 | 52 | Students show growth on this question. |
615 | 16 | NA | 73.0 | NA | No significant change. |
616 | 16 | 43.00 | 69.0 | 92 | Students show growth on this question. |
617 | 16 | 34.00 | 44.0 | 38 | Students are struggling, they need more practice on this question. |
618 | 16 | NA | 48.0 | NA | No significant change. |
619 | 16 | NA | 41.0 | NA | No significant change. |
620 | 16 | NA | 38.0 | NA | No significant change. |
621 | 16 | 17.00 | 0.0 | 40 | Students show growth on this question. |
700 | 16 | 83.00 | 78.0 | 87 | No significant change. |
701 | 16 | 72.00 | 68.0 | 92 | Students show growth on this question. |
702 | 16 | 71.00 | 91.0 | 100 | Students show growth on this question. |
703 | 16 | 50.00 | 77.0 | 94 | Students show growth on this question. |
704 | 16 | 36.00 | 35.0 | 76 | Students show growth on this question. |
705 | 16 | 59.00 | 57.0 | 59 | No significant change. |
706 | 16 | 54.00 | 60.0 | 66 | Students show growth on this question. |
707 | 16 | 48.15 | 70.0 | 69 | Students show growth on this question. |
708 | 16 | 39.00 | 57.0 | 61 | Students show growth on this question. |
709 | 16 | 29.00 | NA | NA | No significant change. |
710 | 16 | 50.00 | NA | NA | No significant change. |
711 | 16 | 60.00 | 48.0 | 72 | Students show growth on this question. |
712 | 16 | 60.00 | 52.0 | 66 | No significant change. |
713 | 16 | 64.29 | 57.0 | 83 | Students show growth on this question. |
714 | 16 | 64.29 | 79.0 | 79 | Students show growth on this question. |
715 | 16 | 59.00 | 15.0 | 85 | Students show growth on this question. |
716 | 16 | 80.00 | 86.0 | 86 | No significant change. |
717 | 16 | 39.29 | NA | 89 | Students show growth on this question. |
718 | 16 | 53.85 | 54.0 | 84 | Students show growth on this question. |
719 | 16 | 44.00 | 73.0 | NA | No significant change. |
800 | 16 | 72.00 | 89.0 | NA | No significant change. |
801 | 16 | 93.00 | 100.0 | NA | No significant change. |
802 | 16 | 87.00 | 77.0 | 100 | Students show growth on this question. |
803 | 16 | 61.00 | 76.9 | 76 | Students show growth on this question. |
804 | 16 | 59.00 | 78.6 | 86 | Students show growth on this question. |
805 | 16 | 73.00 | 79.2 | 81 | No significant change. |
806 | 16 | 44.00 | 50.0 | 66 | Students show growth on this question. |
807 | 16 | 48.00 | 64.0 | 62 | Students show growth on this question. |
808 | 16 | 39.00 | 54.5 | 67 | Students show growth on this question. |
809 | 16 | 36.00 | NA | NA | No significant change. |
810 | 16 | 33.00 | NA | NA | No significant change. |
811 | 16 | 52.00 | 62.0 | 75 | Students show growth on this question. |
812 | 16 | 70.00 | 51.0 | NA | No significant change. |
813 | 16 | 63.00 | 65.0 | 90 | Students show growth on this question. |
814 | 16 | 42.00 | 59.0 | 88 | Students show growth on this question. |
815 | 16 | 73.00 | 92.3 | 71 | No significant change. |
816 | 16 | 89.00 | 93.0 | NA | No significant change. |
817 | 16 | 39.00 | 58.0 | 76 | Students show growth on this question. |
818 | 16 | 27.00 | 69.0 | 68 | Students show growth on this question. |
819 | 16 | 65.00 | 70.0 | NA | No significant change. |
600 | 17 | 51.00 | 66.0 | 90 | Students show growth on this question. |
601 | 17 | 36.00 | 64.0 | 96 | Students show growth on this question. |
602 | 17 | 36.00 | 59.0 | 94 | Students show growth on this question. |
603 | 17 | 36.00 | 53.0 | 94 | Students show growth on this question. |
604 | 17 | 37.00 | 46.0 | 53 | Students show growth on this question. |
605 | 17 | 4.00 | 25.0 | 54 | Students show growth on this question. |
606 | 17 | 33.00 | 41.0 | 45 | Students show growth on this question. |
607 | 17 | 28.00 | 15.0 | 20 | Students are struggling, they need more practice on this question. |
608 | 17 | 50.00 | 39.0 | 46 | No significant change. |
609 | 17 | 34.00 | NA | NA | No significant change. |
610 | 17 | 33.00 | NA | NA | No significant change. |
611 | 17 | 31.00 | 60.0 | 63 | Students show growth on this question. |
612 | 17 | 12.00 | 64.0 | 70 | Students show growth on this question. |
613 | 17 | 29.00 | 56.0 | 79 | Students show growth on this question. |
614 | 17 | 27.00 | 48.0 | 61 | Students show growth on this question. |
615 | 17 | NA | 41.0 | NA | No significant change. |
616 | 17 | 53.00 | 58.0 | 72 | Students show growth on this question. |
617 | 17 | 28.00 | 24.0 | 41 | Students show growth on this question. |
618 | 17 | NA | 45.0 | NA | No significant change. |
619 | 17 | NA | 41.0 | NA | No significant change. |
620 | 17 | NA | 21.0 | NA | No significant change. |
621 | 17 | 33.00 | 33.0 | 0 | Students are struggling, they need more practice on this question. |
700 | 17 | 53.00 | 74.0 | 91 | Students show growth on this question. |
701 | 17 | 44.00 | 60.0 | 92 | Students show growth on this question. |
702 | 17 | 14.00 | 57.0 | 75 | Students show growth on this question. |
703 | 17 | 25.00 | 59.0 | 54 | Students show growth on this question. |
704 | 17 | 41.00 | 55.0 | 57 | Students show growth on this question. |
705 | 17 | 24.00 | 52.0 | 46 | Students show growth on this question. |
706 | 17 | 43.00 | 60.0 | 42 | No significant change. |
707 | 17 | 33.33 | 44.0 | 59 | Students show growth on this question. |
708 | 17 | 39.00 | 48.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 17 | 43.00 | NA | NA | No significant change. |
710 | 17 | 40.00 | NA | NA | No significant change. |
711 | 17 | 30.00 | 63.0 | 55 | Students show growth on this question. |
712 | 17 | 50.00 | 48.0 | 62 | Students show growth on this question. |
713 | 17 | 39.29 | 71.0 | 76 | Students show growth on this question. |
714 | 17 | 50.00 | 59.0 | 66 | Students show growth on this question. |
715 | 17 | 33.00 | 76.0 | 81 | Students show growth on this question. |
716 | 17 | 45.00 | 67.0 | 77 | Students show growth on this question. |
717 | 17 | 42.86 | NA | 81 | Students show growth on this question. |
718 | 17 | 26.92 | 61.0 | 76 | Students show growth on this question. |
719 | 17 | 0.00 | 27.0 | NA | No significant change. |
800 | 17 | 79.00 | 85.0 | NA | No significant change. |
801 | 17 | 48.00 | 75.0 | NA | No significant change. |
802 | 17 | 63.00 | 60.0 | 100 | Students show growth on this question. |
803 | 17 | 61.00 | 65.4 | 76 | Students show growth on this question. |
804 | 17 | 63.00 | 75.0 | 82 | Students show growth on this question. |
805 | 17 | 56.00 | 66.7 | 91 | Students show growth on this question. |
806 | 17 | 36.00 | 66.0 | 66 | Students show growth on this question. |
807 | 17 | 44.00 | 48.0 | 73 | Students show growth on this question. |
808 | 17 | 65.00 | 36.4 | 57 | No significant change. |
809 | 17 | 36.00 | NA | NA | No significant change. |
810 | 17 | 33.00 | NA | NA | No significant change. |
811 | 17 | 60.00 | 62.0 | 75 | Students show growth on this question. |
812 | 17 | 52.00 | 64.0 | NA | No significant change. |
813 | 17 | 33.00 | 57.0 | 75 | Students show growth on this question. |
814 | 17 | 71.00 | 36.0 | 88 | Students show growth on this question. |
815 | 17 | 50.00 | 76.9 | 80 | Students show growth on this question. |
816 | 17 | 52.00 | 67.0 | NA | No significant change. |
817 | 17 | 31.00 | 58.0 | 73 | Students show growth on this question. |
818 | 17 | 54.00 | 62.0 | 75 | Students show growth on this question. |
819 | 17 | 80.00 | 65.0 | NA | No significant change. |
600 | 18 | 75.00 | 90.0 | 100 | Students show growth on this question. |
601 | 18 | 73.00 | 89.0 | 96 | Students show growth on this question. |
602 | 18 | 46.00 | 78.0 | 94 | Students show growth on this question. |
603 | 18 | 56.00 | 80.0 | 97 | Students show growth on this question. |
604 | 18 | 48.00 | 73.0 | 70 | Students show growth on this question. |
605 | 18 | 22.00 | 54.0 | 46 | Students show growth on this question. |
606 | 18 | 38.00 | 27.0 | 55 | Students show growth on this question. |
607 | 18 | 44.00 | 50.0 | 54 | Students show growth on this question. |
608 | 18 | 58.00 | 52.0 | 58 | No significant change. |
609 | 18 | 0.00 | NA | NA | No significant change. |
610 | 18 | 12.00 | NA | NA | No significant change. |
611 | 18 | 50.00 | 60.0 | 75 | Students show growth on this question. |
612 | 18 | 31.00 | 88.0 | 87 | Students show growth on this question. |
613 | 18 | 38.00 | 60.0 | 68 | Students show growth on this question. |
614 | 18 | 37.00 | 52.0 | 52 | Students show growth on this question. |
615 | 18 | NA | 80.0 | NA | No significant change. |
616 | 18 | 66.00 | 85.0 | 88 | Students show growth on this question. |
617 | 18 | 45.00 | 20.0 | 55 | Students show growth on this question. |
618 | 18 | NA | 38.0 | NA | No significant change. |
619 | 18 | NA | 52.0 | NA | No significant change. |
620 | 18 | NA | 55.0 | NA | No significant change. |
621 | 18 | 0.00 | 33.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 18 | 39.00 | 61.0 | 91 | Students show growth on this question. |
701 | 18 | 40.00 | 44.0 | 92 | Students show growth on this question. |
702 | 18 | 38.00 | 57.0 | 80 | Students show growth on this question. |
703 | 18 | 32.00 | 29.0 | 82 | Students show growth on this question. |
704 | 18 | 32.00 | 20.0 | 72 | Students show growth on this question. |
705 | 18 | 28.00 | 48.0 | 38 | Students are struggling, they need more practice on this question. |
706 | 18 | 29.00 | 36.0 | 39 | Students are struggling, they need more practice on this question. |
707 | 18 | 37.04 | 33.0 | 59 | Students show growth on this question. |
708 | 18 | 14.00 | 13.0 | 4 | Students are struggling, they need more practice on this question. |
709 | 18 | 14.00 | NA | NA | No significant change. |
710 | 18 | 0.00 | NA | NA | No significant change. |
711 | 18 | 30.00 | 48.0 | 76 | Students show growth on this question. |
712 | 18 | 23.33 | 34.0 | 62 | Students show growth on this question. |
713 | 18 | 42.86 | 25.0 | 76 | Students show growth on this question. |
714 | 18 | 42.86 | 38.0 | 83 | Students show growth on this question. |
715 | 18 | 41.00 | 40.0 | 85 | Students show growth on this question. |
716 | 18 | 47.00 | 48.0 | 86 | Students show growth on this question. |
717 | 18 | 21.43 | NA | 74 | Students show growth on this question. |
718 | 18 | 23.08 | 36.0 | 88 | Students show growth on this question. |
719 | 18 | 0.00 | 38.0 | NA | No significant change. |
800 | 18 | 97.00 | 96.0 | NA | No significant change. |
801 | 18 | 79.00 | 96.0 | NA | No significant change. |
802 | 18 | 90.00 | 93.0 | 100 | Students show growth on this question. |
803 | 18 | 69.00 | 80.8 | 84 | Students show growth on this question. |
804 | 18 | 88.00 | 92.9 | 97 | No significant change. |
805 | 18 | 73.00 | 87.5 | 81 | No significant change. |
806 | 18 | 32.00 | 70.0 | 66 | Students show growth on this question. |
807 | 18 | 48.00 | 72.0 | 72 | Students show growth on this question. |
808 | 18 | 69.00 | 50.0 | 53 | No significant change. |
809 | 18 | 36.00 | NA | NA | No significant change. |
810 | 18 | 33.00 | NA | NA | No significant change. |
811 | 18 | 48.00 | 65.0 | 81 | Students show growth on this question. |
812 | 18 | 74.00 | 91.0 | NA | No significant change. |
813 | 18 | 75.00 | 83.0 | 90 | Students show growth on this question. |
814 | 18 | 79.00 | 73.0 | 96 | Students show growth on this question. |
815 | 18 | 92.00 | 96.2 | 100 | No significant change. |
816 | 18 | 96.00 | 100.0 | NA | No significant change. |
817 | 18 | 42.00 | 54.0 | 76 | Students show growth on this question. |
818 | 18 | 42.00 | 78.0 | 79 | Students show growth on this question. |
819 | 18 | 85.00 | 87.0 | NA | No significant change. |
600 | 19 | 31.00 | 59.0 | 72 | Students show growth on this question. |
601 | 19 | 36.00 | 57.0 | 84 | Students show growth on this question. |
602 | 19 | 30.00 | 59.0 | 73 | Students show growth on this question. |
603 | 19 | 40.00 | 63.0 | 84 | Students show growth on this question. |
604 | 19 | 22.00 | 36.0 | 58 | Students show growth on this question. |
605 | 19 | 17.00 | 33.0 | 50 | Students show growth on this question. |
606 | 19 | 13.00 | 27.0 | 25 | Students are struggling, they need more practice on this question. |
607 | 19 | 12.00 | 20.0 | 20 | Students are struggling, they need more practice on this question. |
608 | 19 | 15.00 | 35.0 | 25 | Students are struggling, they need more practice on this question. |
609 | 19 | 20.00 | NA | NA | No significant change. |
610 | 19 | 23.00 | NA | NA | No significant change. |
611 | 19 | 25.00 | 24.0 | 33 | Students are struggling, they need more practice on this question. |
612 | 19 | 23.00 | 44.0 | 65 | Students show growth on this question. |
613 | 19 | 21.00 | 36.0 | 64 | Students show growth on this question. |
614 | 19 | 17.00 | 48.0 | 39 | Students are struggling, they need more practice on this question. |
615 | 19 | NA | 48.0 | NA | No significant change. |
616 | 19 | 33.00 | 65.0 | 76 | Students show growth on this question. |
617 | 19 | 14.00 | 24.0 | 35 | Students are struggling, they need more practice on this question. |
618 | 19 | NA | 31.0 | NA | No significant change. |
619 | 19 | NA | 30.0 | NA | No significant change. |
620 | 19 | NA | 10.0 | NA | No significant change. |
621 | 19 | 17.00 | 0.0 | 40 | Students show growth on this question. |
700 | 19 | 39.00 | 70.0 | 96 | Students show growth on this question. |
701 | 19 | 40.00 | 56.0 | 88 | Students show growth on this question. |
702 | 19 | 38.00 | 48.0 | 75 | Students show growth on this question. |
703 | 19 | 50.00 | 65.0 | 63 | Students show growth on this question. |
704 | 19 | 41.00 | 50.0 | 53 | Students show growth on this question. |
705 | 19 | 28.00 | 44.0 | 50 | Students show growth on this question. |
706 | 19 | 25.00 | 28.0 | 50 | Students show growth on this question. |
707 | 19 | 44.44 | 26.0 | 38 | Students are struggling, they need more practice on this question. |
708 | 19 | 46.00 | 39.0 | 57 | Students show growth on this question. |
709 | 19 | 14.00 | NA | NA | No significant change. |
710 | 19 | 30.00 | NA | NA | No significant change. |
711 | 19 | 26.67 | 52.0 | 55 | Students show growth on this question. |
712 | 19 | 56.67 | 34.0 | 45 | No significant change. |
713 | 19 | 39.29 | 39.0 | 66 | Students show growth on this question. |
714 | 19 | 39.29 | 55.0 | 62 | Students show growth on this question. |
715 | 19 | 37.00 | 56.0 | 81 | Students show growth on this question. |
716 | 19 | 56.00 | 57.0 | 86 | Students show growth on this question. |
717 | 19 | 28.57 | NA | 89 | Students show growth on this question. |
718 | 19 | 34.62 | 32.0 | 76 | Students show growth on this question. |
719 | 19 | 11.00 | 38.0 | NA | No significant change. |
800 | 19 | 86.00 | 89.0 | NA | No significant change. |
801 | 19 | 86.00 | 89.0 | NA | No significant change. |
802 | 19 | 87.00 | 93.0 | 100 | Students show growth on this question. |
803 | 19 | 92.00 | 80.8 | 92 | No significant change. |
804 | 19 | 81.00 | 92.9 | 97 | Students show growth on this question. |
805 | 19 | 65.00 | 87.5 | 86 | Students show growth on this question. |
806 | 19 | 56.00 | 77.0 | 81 | Students show growth on this question. |
807 | 19 | 78.00 | 80.0 | 62 | No significant change. |
808 | 19 | 65.00 | 63.6 | 72 | No significant change. |
809 | 19 | 45.00 | NA | NA | No significant change. |
810 | 19 | 55.00 | NA | NA | No significant change. |
811 | 19 | 68.00 | 81.0 | 93 | Students show growth on this question. |
812 | 19 | 65.00 | 91.0 | NA | No significant change. |
813 | 19 | 71.00 | 87.0 | 90 | Students show growth on this question. |
814 | 19 | 79.00 | 73.0 | 96 | Students show growth on this question. |
815 | 19 | 84.00 | 80.8 | 92 | No significant change. |
816 | 19 | 96.00 | 85.0 | NA | No significant change. |
817 | 19 | 58.00 | 66.0 | 90 | Students show growth on this question. |
818 | 19 | 73.00 | 92.0 | 88 | Students show growth on this question. |
819 | 19 | 65.00 | 78.0 | NA | No significant change. |
600 | 20 | 55.00 | 83.0 | 90 | Students show growth on this question. |
601 | 20 | 56.00 | 79.0 | 88 | Students show growth on this question. |
602 | 20 | 40.00 | 93.0 | 100 | Students show growth on this question. |
603 | 20 | 40.00 | 83.0 | 97 | Students show growth on this question. |
604 | 20 | 26.00 | 73.0 | 58 | Students show growth on this question. |
605 | 20 | 13.00 | 28.0 | 50 | Students show growth on this question. |
606 | 20 | 21.00 | 50.0 | 70 | Students show growth on this question. |
607 | 20 | 16.00 | 30.0 | 54 | Students show growth on this question. |
608 | 20 | 31.00 | 30.0 | 58 | Students show growth on this question. |
609 | 20 | 17.00 | NA | NA | No significant change. |
610 | 20 | 22.00 | NA | NA | No significant change. |
611 | 20 | 31.00 | 52.0 | 67 | Students show growth on this question. |
612 | 20 | 19.00 | 80.0 | 65 | Students show growth on this question. |
613 | 20 | 25.00 | 68.0 | 86 | Students show growth on this question. |
614 | 20 | 17.00 | 60.0 | 48 | Students show growth on this question. |
615 | 20 | NA | 62.0 | NA | No significant change. |
616 | 20 | 56.00 | 85.0 | 84 | Students show growth on this question. |
617 | 20 | 17.00 | 32.0 | 48 | Students show growth on this question. |
618 | 20 | NA | 38.0 | NA | No significant change. |
619 | 20 | NA | 44.0 | NA | No significant change. |
620 | 20 | NA | 45.0 | NA | No significant change. |
621 | 20 | 33.00 | 16.0 | 0 | Students are struggling, they need more practice on this question. |
700 | 20 | 52.00 | 22.0 | 26 | Students are struggling, they need more practice on this question. |
701 | 20 | 36.00 | 24.0 | 92 | Students show growth on this question. |
702 | 20 | 33.00 | 38.0 | 40 | No significant change. |
703 | 20 | 32.00 | 35.0 | 63 | Students show growth on this question. |
704 | 20 | 45.00 | 25.0 | 43 | No significant change. |
705 | 20 | 25.00 | 30.0 | 33 | Students are struggling, they need more practice on this question. |
706 | 20 | 36.00 | 20.0 | 31 | Students are struggling, they need more practice on this question. |
707 | 20 | 14.81 | 37.0 | 55 | Students show growth on this question. |
708 | 20 | 36.00 | 48.0 | 31 | Students are struggling, they need more practice on this question. |
709 | 20 | 29.00 | NA | NA | No significant change. |
710 | 20 | 40.00 | NA | NA | No significant change. |
711 | 20 | 33.33 | 26.0 | 28 | Students are struggling, they need more practice on this question. |
712 | 20 | 23.33 | 31.0 | 24 | Students are struggling, they need more practice on this question. |
713 | 20 | 35.71 | 32.0 | 52 | Students show growth on this question. |
714 | 20 | 50.00 | 41.0 | 38 | Students are struggling, they need more practice on this question. |
715 | 20 | 33.00 | 28.0 | 50 | Students show growth on this question. |
716 | 20 | 33.00 | 5.0 | 27 | Students are struggling, they need more practice on this question. |
717 | 20 | 21.43 | NA | 74 | Students show growth on this question. |
718 | 20 | 38.46 | 36.0 | 80 | Students show growth on this question. |
719 | 20 | 44.00 | 62.0 | NA | No significant change. |
800 | 20 | 55.00 | 78.0 | NA | No significant change. |
801 | 20 | 79.00 | 89.0 | NA | No significant change. |
802 | 20 | 73.00 | 80.0 | 97 | Students show growth on this question. |
803 | 20 | 42.00 | 61.5 | 88 | Students show growth on this question. |
804 | 20 | 48.00 | 71.4 | 90 | Students show growth on this question. |
805 | 20 | 52.00 | 83.3 | 91 | Students show growth on this question. |
806 | 20 | 48.00 | 70.0 | 73 | Students show growth on this question. |
807 | 20 | 52.00 | 80.0 | 62 | Students show growth on this question. |
808 | 20 | 47.00 | 40.9 | 57 | Students show growth on this question. |
809 | 20 | 36.00 | NA | NA | No significant change. |
810 | 20 | 11.00 | NA | NA | No significant change. |
811 | 20 | 24.00 | 54.0 | 75 | Students show growth on this question. |
812 | 20 | 43.00 | 59.0 | NA | No significant change. |
813 | 20 | 38.00 | 70.0 | 95 | Students show growth on this question. |
814 | 20 | 54.00 | 64.0 | 96 | Students show growth on this question. |
815 | 20 | 57.00 | 84.6 | 92 | Students show growth on this question. |
816 | 20 | 67.00 | 78.0 | NA | No significant change. |
817 | 20 | 46.00 | 66.0 | 83 | Students show growth on this question. |
818 | 20 | 42.00 | 62.0 | 71 | Students show growth on this question. |
819 | 20 | 85.00 | 65.0 | NA | No significant change. |
600 | 21 | 55.00 | 66.0 | 83 | Students show growth on this question. |
601 | 21 | 66.00 | 93.0 | 100 | Students show growth on this question. |
602 | 21 | 33.00 | 85.0 | 97 | Students show growth on this question. |
603 | 21 | 60.00 | 63.0 | 84 | Students show growth on this question. |
604 | 21 | 44.00 | 64.0 | 58 | Students show growth on this question. |
605 | 21 | 13.00 | 54.0 | 50 | Students show growth on this question. |
606 | 21 | 46.00 | 41.0 | 45 | No significant change. |
607 | 21 | 26.00 | 55.0 | 40 | Students show growth on this question. |
608 | 21 | 42.00 | 48.0 | 79 | Students show growth on this question. |
609 | 21 | 15.00 | NA | NA | No significant change. |
610 | 21 | 20.00 | NA | NA | No significant change. |
611 | 21 | 35.00 | 44.0 | 50 | Students show growth on this question. |
612 | 21 | 27.00 | 52.0 | 74 | Students show growth on this question. |
613 | 21 | 21.00 | 44.0 | 75 | Students show growth on this question. |
614 | 21 | 20.00 | 48.0 | 44 | Students show growth on this question. |
615 | 21 | NA | 59.0 | NA | No significant change. |
616 | 21 | 66.00 | 69.0 | 76 | Students show growth on this question. |
617 | 21 | 47.00 | 48.0 | 55 | No significant change. |
618 | 21 | NA | 38.0 | NA | No significant change. |
619 | 21 | NA | 48.0 | NA | No significant change. |
620 | 21 | NA | 24.0 | NA | No significant change. |
621 | 21 | 17.00 | 33.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 21 | 65.00 | 96.0 | 100 | Students show growth on this question. |
701 | 21 | 80.00 | 72.0 | 92 | Students show growth on this question. |
702 | 21 | 90.00 | 71.0 | 85 | No significant change. |
703 | 21 | 56.00 | 82.0 | 94 | Students show growth on this question. |
704 | 21 | 64.00 | 65.0 | 76 | Students show growth on this question. |
705 | 21 | 45.00 | 70.0 | 50 | No significant change. |
706 | 21 | 54.00 | 76.0 | 54 | No significant change. |
707 | 21 | 29.63 | 44.0 | 72 | Students show growth on this question. |
708 | 21 | 46.00 | 39.0 | 70 | Students show growth on this question. |
709 | 21 | 29.00 | NA | NA | No significant change. |
710 | 21 | 40.00 | NA | NA | No significant change. |
711 | 21 | 53.33 | 89.0 | 69 | Students show growth on this question. |
712 | 21 | 53.33 | 59.0 | 72 | Students show growth on this question. |
713 | 21 | 71.43 | 75.0 | 86 | Students show growth on this question. |
714 | 21 | 53.57 | 66.0 | 86 | Students show growth on this question. |
715 | 21 | 59.00 | 80.0 | 96 | Students show growth on this question. |
716 | 21 | 67.00 | 81.0 | 100 | Students show growth on this question. |
717 | 21 | 25.00 | NA | 81 | Students show growth on this question. |
718 | 21 | 53.85 | 36.0 | 80 | Students show growth on this question. |
719 | 21 | 44.00 | 77.0 | NA | No significant change. |
800 | 21 | 52.00 | 100.0 | NA | No significant change. |
801 | 21 | 69.00 | 100.0 | NA | No significant change. |
802 | 21 | 53.00 | 93.0 | 100 | Students show growth on this question. |
803 | 21 | 30.00 | 88.5 | 88 | Students show growth on this question. |
804 | 21 | 70.00 | 92.9 | 100 | Students show growth on this question. |
805 | 21 | 43.00 | 75.0 | 67 | Students show growth on this question. |
806 | 21 | 40.00 | 46.0 | 66 | Students show growth on this question. |
807 | 21 | 39.00 | 40.0 | 69 | Students show growth on this question. |
808 | 21 | 39.00 | 45.5 | 72 | Students show growth on this question. |
809 | 21 | 27.00 | NA | NA | No significant change. |
810 | 21 | 11.00 | NA | NA | No significant change. |
811 | 21 | 24.00 | 42.0 | 75 | Students show growth on this question. |
812 | 21 | 30.00 | 46.0 | NA | No significant change. |
813 | 21 | 54.00 | 52.0 | 85 | Students show growth on this question. |
814 | 21 | 38.00 | 32.0 | 92 | Students show growth on this question. |
815 | 21 | 61.00 | 96.2 | 96 | Students show growth on this question. |
816 | 21 | 52.00 | 100.0 | NA | No significant change. |
817 | 21 | 35.00 | 43.0 | 69 | Students show growth on this question. |
818 | 21 | 19.00 | 50.0 | 41 | Students show growth on this question. |
819 | 21 | 25.00 | 30.0 | NA | No significant change. |
600 | 22 | 0.00 | 55.0 | 68 | Students show growth on this question. |
601 | 22 | 13.00 | 54.0 | 72 | Students show growth on this question. |
602 | 22 | 0.00 | 33.0 | 59 | Students show growth on this question. |
603 | 22 | 0.00 | 47.0 | 80 | Students show growth on this question. |
604 | 22 | 11.00 | 70.0 | 58 | Students show growth on this question. |
605 | 22 | 9.00 | 46.0 | 54 | Students show growth on this question. |
606 | 22 | 8.00 | 46.0 | 70 | Students show growth on this question. |
607 | 22 | 16.00 | 55.0 | 80 | Students show growth on this question. |
608 | 22 | 19.00 | 44.0 | 46 | Students show growth on this question. |
609 | 22 | 13.00 | NA | NA | No significant change. |
610 | 22 | 10.00 | NA | NA | No significant change. |
611 | 22 | 0.00 | 56.0 | 71 | Students show growth on this question. |
612 | 22 | 4.00 | 40.0 | 44 | Students show growth on this question. |
613 | 22 | 4.00 | 56.0 | 86 | Students show growth on this question. |
614 | 22 | 10.00 | 44.0 | 65 | Students show growth on this question. |
615 | 22 | NA | 55.0 | NA | No significant change. |
616 | 22 | 10.00 | 58.0 | 80 | Students show growth on this question. |
617 | 22 | 17.00 | 40.0 | 45 | Students show growth on this question. |
618 | 22 | NA | 55.0 | NA | No significant change. |
619 | 22 | NA | 52.0 | NA | No significant change. |
620 | 22 | NA | 45.0 | NA | No significant change. |
621 | 22 | 17.00 | 16.0 | 40 | Students show growth on this question. |
700 | 22 | 26.00 | 52.0 | 65 | Students show growth on this question. |
701 | 22 | 60.00 | 36.0 | 88 | Students show growth on this question. |
702 | 22 | 30.00 | 33.0 | 35 | Students are struggling, they need more practice on this question. |
703 | 22 | 32.00 | 35.0 | 50 | Students show growth on this question. |
704 | 22 | 36.00 | 20.0 | 33 | Students are struggling, they need more practice on this question. |
705 | 22 | 14.00 | 35.0 | 25 | Students are struggling, they need more practice on this question. |
706 | 22 | 39.00 | 40.0 | 31 | Students are struggling, they need more practice on this question. |
707 | 22 | 22.22 | 7.0 | 14 | Students are struggling, they need more practice on this question. |
708 | 22 | 7.00 | 26.0 | 17 | Students are struggling, they need more practice on this question. |
709 | 22 | 0.00 | NA | NA | No significant change. |
710 | 22 | 30.00 | NA | NA | No significant change. |
711 | 22 | 16.67 | 37.0 | 24 | Students are struggling, they need more practice on this question. |
712 | 22 | 13.33 | 38.0 | 34 | Students are struggling, they need more practice on this question. |
713 | 22 | 25.00 | 21.0 | 62 | Students show growth on this question. |
714 | 22 | 17.86 | 28.0 | 52 | Students show growth on this question. |
715 | 22 | 26.00 | 48.0 | 58 | Students show growth on this question. |
716 | 22 | 39.00 | 48.0 | 50 | Students show growth on this question. |
717 | 22 | 28.57 | NA | 41 | Students show growth on this question. |
718 | 22 | 23.08 | 47.0 | 72 | Students show growth on this question. |
719 | 22 | 22.00 | 15.0 | NA | No significant change. |
800 | 22 | 45.00 | 48.0 | NA | No significant change. |
801 | 22 | 41.00 | 54.0 | NA | No significant change. |
802 | 22 | 23.00 | 53.0 | 74 | Students show growth on this question. |
803 | 22 | 26.00 | 38.5 | 64 | Students show growth on this question. |
804 | 22 | 44.00 | 57.1 | 65 | Students show growth on this question. |
805 | 22 | 39.00 | 79.2 | 72 | Students show growth on this question. |
806 | 22 | 36.00 | 58.0 | 62 | Students show growth on this question. |
807 | 22 | 44.00 | 48.0 | 69 | Students show growth on this question. |
808 | 22 | 21.00 | 50.0 | 34 | Students are struggling, they need more practice on this question. |
809 | 22 | 27.00 | NA | NA | No significant change. |
810 | 22 | 44.00 | NA | NA | No significant change. |
811 | 22 | 32.00 | 54.0 | 88 | Students show growth on this question. |
812 | 22 | 35.00 | 46.0 | NA | No significant change. |
813 | 22 | 54.00 | 39.0 | 70 | Students show growth on this question. |
814 | 22 | 42.00 | 36.0 | 92 | Students show growth on this question. |
815 | 22 | 38.00 | 53.8 | 75 | Students show growth on this question. |
816 | 22 | 37.00 | 37.0 | NA | No significant change. |
817 | 22 | 27.00 | 50.0 | 62 | Students show growth on this question. |
818 | 22 | 23.00 | 46.0 | 54 | Students show growth on this question. |
819 | 22 | 35.00 | 39.0 | NA | No significant change. |
600 | 23 | 24.00 | 21.0 | 65 | Students show growth on this question. |
601 | 23 | 13.00 | 43.0 | 40 | Students show growth on this question. |
602 | 23 | 3.00 | 30.0 | 66 | Students show growth on this question. |
603 | 23 | 33.00 | 43.0 | 80 | Students show growth on this question. |
604 | 23 | 15.00 | 32.0 | 27 | Students are struggling, they need more practice on this question. |
605 | 23 | 4.00 | 17.0 | 35 | Students are struggling, they need more practice on this question. |
606 | 23 | 25.00 | 23.0 | 40 | Students show growth on this question. |
607 | 23 | 24.00 | 40.0 | 27 | Students are struggling, they need more practice on this question. |
608 | 23 | 13.00 | 26.0 | 13 | Students are struggling, they need more practice on this question. |
609 | 23 | 20.00 | NA | NA | No significant change. |
610 | 23 | 30.00 | NA | NA | No significant change. |
611 | 23 | 19.00 | 20.0 | 29 | Students are struggling, they need more practice on this question. |
612 | 23 | 8.00 | 32.0 | 30 | Students are struggling, they need more practice on this question. |
613 | 23 | 0.00 | 16.0 | 61 | Students show growth on this question. |
614 | 23 | 23.00 | 24.0 | 17 | Students are struggling, they need more practice on this question. |
615 | 23 | NA | 41.0 | NA | No significant change. |
616 | 23 | 16.00 | 27.0 | 52 | Students show growth on this question. |
617 | 23 | 21.00 | 8.0 | 31 | Students are struggling, they need more practice on this question. |
618 | 23 | NA | 28.0 | NA | No significant change. |
619 | 23 | NA | 37.0 | NA | No significant change. |
620 | 23 | NA | 14.0 | NA | No significant change. |
621 | 23 | 33.00 | 16.0 | 20 | Students are struggling, they need more practice on this question. |
700 | 23 | 59.00 | 48.0 | 57 | No significant change. |
701 | 23 | 24.00 | 24.0 | 92 | Students show growth on this question. |
702 | 23 | 60.00 | 52.0 | 55 | No significant change. |
703 | 23 | 32.00 | 18.0 | 13 | Students are struggling, they need more practice on this question. |
704 | 23 | 41.00 | 15.0 | 10 | Students are struggling, they need more practice on this question. |
705 | 23 | 21.00 | 35.0 | 17 | Students are struggling, they need more practice on this question. |
706 | 23 | 18.00 | 8.0 | 19 | Students are struggling, they need more practice on this question. |
707 | 23 | 33.33 | 30.0 | 31 | Students are struggling, they need more practice on this question. |
708 | 23 | 21.00 | 26.0 | 44 | Students show growth on this question. |
709 | 23 | 14.00 | NA | NA | No significant change. |
710 | 23 | 50.00 | NA | NA | No significant change. |
711 | 23 | 36.67 | 26.0 | 38 | Students are struggling, they need more practice on this question. |
712 | 23 | 30.00 | 17.0 | 14 | Students are struggling, they need more practice on this question. |
713 | 23 | 32.14 | 29.0 | 66 | Students show growth on this question. |
714 | 23 | 35.71 | 24.0 | 38 | Students are struggling, they need more practice on this question. |
715 | 23 | 37.00 | 40.0 | 42 | No significant change. |
716 | 23 | 33.00 | 29.0 | 45 | Students show growth on this question. |
717 | 23 | 14.29 | NA | 63 | Students show growth on this question. |
718 | 23 | 30.77 | 32.0 | 72 | Students show growth on this question. |
719 | 23 | 22.00 | 12.0 | NA | No significant change. |
800 | 23 | 45.00 | 63.0 | NA | No significant change. |
801 | 23 | 45.00 | 57.0 | NA | No significant change. |
802 | 23 | 83.00 | 43.0 | 93 | Students show growth on this question. |
803 | 23 | 38.00 | 57.7 | 88 | Students show growth on this question. |
804 | 23 | 51.00 | 57.1 | 82 | Students show growth on this question. |
805 | 23 | 34.00 | 79.2 | 81 | Students show growth on this question. |
806 | 23 | 32.00 | 70.0 | 73 | Students show growth on this question. |
807 | 23 | 13.00 | 60.0 | 62 | Students show growth on this question. |
808 | 23 | 34.00 | 59.1 | 67 | Students show growth on this question. |
809 | 23 | 36.00 | NA | NA | No significant change. |
810 | 23 | 0.00 | NA | NA | No significant change. |
811 | 23 | 36.00 | 62.0 | 81 | Students show growth on this question. |
812 | 23 | 39.00 | 91.0 | NA | No significant change. |
813 | 23 | 42.00 | 83.0 | 95 | Students show growth on this question. |
814 | 23 | 54.00 | 82.0 | 96 | Students show growth on this question. |
815 | 23 | 42.00 | 61.5 | 80 | Students show growth on this question. |
816 | 23 | 56.00 | 82.0 | NA | No significant change. |
817 | 23 | 31.00 | 73.0 | 80 | Students show growth on this question. |
818 | 23 | 23.00 | 73.0 | 68 | Students show growth on this question. |
819 | 23 | 20.00 | 91.0 | NA | No significant change. |
600 | 24 | 51.00 | 79.0 | 86 | Students show growth on this question. |
601 | 24 | 66.00 | 75.0 | 88 | Students show growth on this question. |
602 | 24 | 13.00 | 56.0 | 76 | Students show growth on this question. |
603 | 24 | 36.00 | 73.0 | 94 | Students show growth on this question. |
604 | 24 | 37.00 | 64.0 | 58 | Students show growth on this question. |
605 | 24 | 17.00 | 42.0 | 46 | Students show growth on this question. |
606 | 24 | 33.00 | 46.0 | 55 | Students show growth on this question. |
607 | 24 | 36.00 | 55.0 | 46 | Students show growth on this question. |
608 | 24 | 42.00 | 48.0 | 33 | Students are struggling, they need more practice on this question. |
609 | 24 | 25.00 | NA | NA | No significant change. |
610 | 24 | 33.00 | NA | NA | No significant change. |
611 | 24 | 31.00 | 52.0 | 50 | Students show growth on this question. |
612 | 24 | 8.00 | 60.0 | 78 | Students show growth on this question. |
613 | 24 | 8.00 | 68.0 | 71 | Students show growth on this question. |
614 | 24 | 23.00 | 48.0 | 48 | Students show growth on this question. |
615 | 24 | NA | 62.0 | NA | No significant change. |
616 | 24 | 46.00 | 85.0 | 84 | Students show growth on this question. |
617 | 24 | 28.00 | 16.0 | 52 | Students show growth on this question. |
618 | 24 | NA | 28.0 | NA | No significant change. |
619 | 24 | NA | 48.0 | NA | No significant change. |
620 | 24 | NA | 45.0 | NA | No significant change. |
621 | 24 | 33.00 | 33.0 | 0 | Students are struggling, they need more practice on this question. |
700 | 24 | 41.00 | 87.0 | 78 | Students show growth on this question. |
701 | 24 | 64.00 | 64.0 | 88 | Students show growth on this question. |
702 | 24 | 35.00 | 76.0 | 75 | Students show growth on this question. |
703 | 24 | 44.00 | 59.0 | 69 | Students show growth on this question. |
704 | 24 | 14.00 | 35.0 | 43 | Students show growth on this question. |
705 | 24 | 21.00 | 39.0 | 63 | Students show growth on this question. |
706 | 24 | 29.00 | 52.0 | 39 | Students are struggling, they need more practice on this question. |
707 | 24 | 11.11 | 44.0 | 55 | Students show growth on this question. |
708 | 24 | 25.00 | 52.0 | 35 | Students are struggling, they need more practice on this question. |
709 | 24 | 0.00 | NA | NA | No significant change. |
710 | 24 | 0.00 | NA | NA | No significant change. |
711 | 24 | 33.33 | 56.0 | 55 | Students show growth on this question. |
712 | 24 | 33.33 | 55.0 | 59 | Students show growth on this question. |
713 | 24 | 35.71 | 68.0 | 79 | Students show growth on this question. |
714 | 24 | 50.00 | 62.0 | 69 | Students show growth on this question. |
715 | 24 | 48.00 | 72.0 | 89 | Students show growth on this question. |
716 | 24 | 39.00 | 67.0 | 77 | Students show growth on this question. |
717 | 24 | 28.57 | NA | 85 | Students show growth on this question. |
718 | 24 | 34.62 | 36.0 | 84 | Students show growth on this question. |
719 | 24 | 44.00 | 46.0 | NA | No significant change. |
800 | 24 | 72.00 | 78.0 | NA | No significant change. |
801 | 24 | 76.00 | 82.0 | NA | No significant change. |
802 | 24 | 83.00 | 70.0 | 90 | No significant change. |
803 | 24 | 42.00 | 73.1 | 84 | Students show growth on this question. |
804 | 24 | 55.00 | 78.6 | 79 | Students show growth on this question. |
805 | 24 | 30.00 | 70.8 | 86 | Students show growth on this question. |
806 | 24 | 24.00 | 46.0 | 62 | Students show growth on this question. |
807 | 24 | 44.00 | 56.0 | 79 | Students show growth on this question. |
808 | 24 | 30.00 | 59.1 | 57 | Students show growth on this question. |
809 | 24 | 45.00 | NA | NA | No significant change. |
810 | 24 | 33.00 | NA | NA | No significant change. |
811 | 24 | 32.00 | 54.0 | 88 | Students show growth on this question. |
812 | 24 | 35.00 | 68.0 | NA | No significant change. |
813 | 24 | 38.00 | 70.0 | 70 | Students show growth on this question. |
814 | 24 | 33.00 | 64.0 | 92 | Students show growth on this question. |
815 | 24 | 84.00 | 84.6 | 92 | No significant change. |
816 | 24 | 59.00 | 63.0 | NA | No significant change. |
817 | 24 | 39.00 | 66.0 | 62 | Students show growth on this question. |
818 | 24 | 27.00 | 62.0 | 58 | Students show growth on this question. |
819 | 24 | 40.00 | 70.0 | NA | No significant change. |
600 | 25 | 13.00 | 90.0 | 61 | Students show growth on this question. |
601 | 25 | 26.00 | 86.0 | 44 | Students show growth on this question. |
602 | 25 | 0.00 | 96.0 | 59 | Students show growth on this question. |
603 | 25 | 6.00 | 87.0 | 54 | Students show growth on this question. |
604 | 25 | 7.00 | 70.0 | 97 | Students show growth on this question. |
605 | 25 | 9.00 | 84.0 | 80 | Students show growth on this question. |
606 | 25 | 8.00 | 55.0 | 90 | Students show growth on this question. |
607 | 25 | 4.00 | 75.0 | 93 | Students show growth on this question. |
608 | 25 | 8.00 | 79.0 | 92 | Students show growth on this question. |
609 | 25 | 0.00 | NA | NA | No significant change. |
610 | 25 | 0.00 | NA | NA | No significant change. |
611 | 25 | 0.00 | 88.0 | 87 | Students show growth on this question. |
612 | 25 | 8.00 | 92.0 | 82 | Students show growth on this question. |
613 | 25 | 8.00 | 94.0 | 64 | Students show growth on this question. |
614 | 25 | 10.00 | 96.0 | 96 | Students show growth on this question. |
615 | 25 | NA | 73.0 | NA | No significant change. |
616 | 25 | 10.00 | 92.0 | 64 | Students show growth on this question. |
617 | 25 | 10.00 | 96.0 | 78 | Students show growth on this question. |
618 | 25 | NA | 83.0 | NA | No significant change. |
619 | 25 | NA | 78.0 | NA | No significant change. |
620 | 25 | NA | 80.0 | NA | No significant change. |
621 | 25 | 33.00 | 100.0 | 40 | No significant change. |
700 | 25 | 73.00 | 91.0 | 96 | Students show growth on this question. |
701 | 25 | 68.00 | 64.0 | 96 | Students show growth on this question. |
702 | 25 | 75.00 | 86.0 | 95 | Students show growth on this question. |
703 | 25 | 69.00 | 77.0 | 94 | Students show growth on this question. |
704 | 25 | 50.00 | 50.0 | 86 | Students show growth on this question. |
705 | 25 | 38.00 | 57.0 | 67 | Students show growth on this question. |
706 | 25 | 39.00 | 56.0 | 42 | No significant change. |
707 | 25 | 37.04 | 22.0 | 62 | Students show growth on this question. |
708 | 25 | 25.00 | 44.0 | 52 | Students show growth on this question. |
709 | 25 | 29.00 | NA | NA | No significant change. |
710 | 25 | 10.00 | NA | NA | No significant change. |
711 | 25 | 43.33 | 41.0 | 79 | Students show growth on this question. |
712 | 25 | 63.33 | 45.0 | 66 | No significant change. |
713 | 25 | 57.14 | 64.0 | 93 | Students show growth on this question. |
714 | 25 | 60.71 | 69.0 | 72 | Students show growth on this question. |
715 | 25 | 76.00 | 84.0 | 92 | Students show growth on this question. |
716 | 25 | 78.00 | 86.0 | 100 | Students show growth on this question. |
717 | 25 | 32.14 | NA | 81 | Students show growth on this question. |
718 | 25 | 53.85 | 47.0 | 76 | Students show growth on this question. |
719 | 25 | 33.00 | 65.0 | NA | No significant change. |
800 | 25 | 62.00 | 78.0 | NA | No significant change. |
801 | 25 | 72.00 | 75.0 | NA | No significant change. |
802 | 25 | 73.00 | 70.0 | 93 | Students show growth on this question. |
803 | 25 | 57.00 | 73.1 | 68 | Students show growth on this question. |
804 | 25 | 55.00 | 67.9 | 79 | Students show growth on this question. |
805 | 25 | 39.00 | 62.5 | 76 | Students show growth on this question. |
806 | 25 | 8.00 | 27.0 | 50 | Students show growth on this question. |
807 | 25 | 39.00 | 32.0 | 72 | Students show growth on this question. |
808 | 25 | 21.00 | 36.4 | 67 | Students show growth on this question. |
809 | 25 | 18.00 | NA | NA | No significant change. |
810 | 25 | 22.00 | NA | NA | No significant change. |
811 | 25 | 36.00 | 31.0 | 63 | Students show growth on this question. |
812 | 25 | 39.00 | 41.0 | NA | No significant change. |
813 | 25 | 63.00 | 65.0 | 70 | No significant change. |
814 | 25 | 33.00 | 45.0 | 92 | Students show growth on this question. |
815 | 25 | 73.00 | 76.9 | 88 | Students show growth on this question. |
816 | 25 | 59.00 | 82.0 | NA | No significant change. |
817 | 25 | 23.00 | 31.0 | 66 | Students show growth on this question. |
818 | 25 | 31.00 | 50.0 | 70 | Students show growth on this question. |
819 | 25 | 60.00 | 61.0 | NA | No significant change. |