Split academic year into seasons if the academic year's range is

initialized with a season, i.e. "2024-25 Fall".  Update scapers for
admin data, enrollment and staffing to use the new range standard
correctly.   Update the loaders for admin data, enrollment and staffing
so that it populates all seasons in a given year.  So admin data for
2024-25 gets loaded into "2024-25 Fall" and "2024-25 Spring".  Add tests
for the new range format.  Set the default cutoff for the start of Spring season will be the last Sunday in February
main-multiple-administrations-#186762859
Nelson Jovel 2 years ago
parent 996bb01d0b
commit 33da0859b9

@ -122,16 +122,14 @@ class Seeder
def seed_enrollment(csv_file)
EnrollmentLoader.load_data(filepath: csv_file)
missing_enrollment_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).count.zero?
EnrollmentLoader.clone_previous_year_data if missing_enrollment_for_current_year
EnrollmentLoader.clone_previous_year_data
end
def seed_staffing(csv_file)
StaffingLoader.load_data(filepath: csv_file)
missing_staffing_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).group(:total_teachers).having("total_teachers > 0").count.count.zero?
StaffingLoader.clone_previous_year_data if missing_staffing_for_current_year
StaffingLoader.clone_previous_year_data
end
private

@ -1,40 +1,60 @@
# frozen_string_literal: true
require "date"
class AcademicYear < ActiveRecord::Base
def self.find_by_date(date)
scope :by_range, -> { all.map { |academic_year| [academic_year.range, academic_year] }.to_h }
scope :of_year, ->(range) { all.select { |ay| ay.range.start_with?(range) } }
def self.range_from_date(date, ranges)
year = parse_year_range(date:)
range = "#{year.start}-#{year.end.to_s[2, 3]}"
academic_years[range]
range = ranges.find { |item| item.downcase == "#{year.start}-#{year.end.to_s[2, 3]} #{year.season.downcase}" }
range ||= ranges.find { |item| item.downcase == "#{year.start}-#{year.end.to_s[2, 3]}" }
range
end
def formatted_range
years = range.split('-')
"#{years.first} 20#{years.second}"
years = range.split("-").map(&:split).flatten
"#{years.first} 20#{years.second} #{years[2]}".chomp
end
def range_without_season
range.scan(/[\d-]/).join
end
private
def self.parse_year_range(date:)
year = date.year
if date.month > 6
AcademicYearRange.new(year, year + 1)
else
AcademicYearRange.new(year - 1, year)
end
ayr = if date.month > 6
AcademicYearRange.new(year, year + 1)
else
AcademicYearRange.new(year - 1, year)
end
ayr.season = if in_fall?(date, ayr)
"Fall"
else
"Spring"
end
ayr
end
# This may cause problems if academic years get loaded from csv instead of the current method that requires a code change to the seeder script. This is because a change in code will trigger a complete reload of the application whereas loading from csv does not. This means if we change academic year to load from csv, the set of academic years will be stale when new years are added.
def self.academic_years
@@academic_years ||= AcademicYear.all.map { |academic_year| [academic_year.range, academic_year] }.to_h
def self.in_fall?(date, ayr)
date.between?(Date.parse("#{ayr.start}-7-1"), last_sunday(2, ayr.end) - 1)
end
# Needed to reset the academic years when testing with specs that create the same academic year in a before :each block
def self.reset_academic_years
@@academic_years = nil
# returns a Date object being the last sunday of the given month/year
# month: integer between 1 and 12
def self.last_sunday(month, year)
# get the last day of the month
date = Date.new year, month, -1
# subtract number of days we are ahead of sunday
date -= date.wday
end
private_class_method :academic_years
private_class_method :in_fall?
private_class_method :parse_year_range
end
AcademicYearRange = Struct.new(:start, :end)
AcademicYearRange = Struct.new(:start, :end, :season)

@ -8,7 +8,7 @@ class School < ApplicationRecord
validates :name, presence: true
scope :alphabetic, -> { order(name: :asc) }
scope :school_by_dese_id, -> { all.map { |school| [school.dese_id, school] }.to_h }
scope :by_dese_id, -> { all.map { |school| [school.dese_id, school] }.to_h }
include FriendlyId
friendly_id :name, use: [:slugged]
@ -16,7 +16,7 @@ class School < ApplicationRecord
def self.find_by_district_code_and_school_code(district_code, school_code)
School
.joins(:district)
.where(districts: {qualtrics_code: district_code})
.where(districts: { qualtrics_code: district_code })
.find_by_qualtrics_code(school_code)
end

@ -19,7 +19,7 @@ class ResponseRatePresenter
end
def percentage
return 0 if respondents_count.zero?
return 0 if respondents_count.nil? || respondents_count.zero?
cap_at_100(actual_count.to_f / respondents_count.to_f * 100).round
end

@ -48,7 +48,7 @@ class Cleaner
output << school_name if schools.length == 1
output << survey_type.to_s
output << "Part-" + part unless part.nil?
output << range
output << range.parameterize
output << "csv"
output.join(".")
end
@ -77,7 +77,7 @@ class Cleaner
file.lazy.each_slice(1000) do |lines|
CSV.parse(lines.join, headers:).map do |row|
values = SurveyItemValues.new(row:, headers:,
survey_items: all_survey_items, schools:)
survey_items: all_survey_items, schools:, academic_years:)
next unless values.valid_school?
data << values
@ -89,6 +89,10 @@ class Cleaner
private
def academic_years
@academic_years ||= AcademicYear.all
end
def include_all_headers(headers:)
alternates = headers.filter(&:present?)
.filter { |header| header.match?(/^[st]-\w*-\w*-1$/i) }
@ -120,7 +124,7 @@ class Cleaner
end
def schools
@schools ||= School.school_by_dese_id
@schools ||= School.by_dese_id
end
def genders

@ -1,15 +1,16 @@
module Dese
class Loader
@memo = Hash.new
@memo = {}
def self.load_data(filepath:)
admin_data_values = []
@memo = Hash.new
schools = School.school_by_dese_id
@memo = {}
schools = School.by_dese_id
CSV.parse(File.read(filepath), headers: true) do |row|
score = likert_score(row:)
next unless valid_likert_score(likert_score: score)
admin_data_values << create_admin_data_value(row:, score:, schools:)
values = create_admin_data_value(row:, score:, schools:)
admin_data_values.concat(values) if values
end
AdminDataValue.import(admin_data_values.flatten.compact, batch_size: 1_000, on_duplicate_key_update: :all)
@ -38,40 +39,47 @@ module Dese
row["Admin Data Item"] || row["Item ID"] || row["Item Id"] || row["Item ID"]
end
# these three methods do the memoization
# these two methods do the memoization
def self.find_admin_data_item(admin_data_item_id:)
return @memo["admin" + admin_data_item_id] if @memo.key?("admin" + admin_data_item_id)
@memo["admin" + admin_data_item_id] ||= AdminDataItem.find_by_admin_data_item_id(admin_data_item_id)
end
def self.find_ay(ay:)
def self.find_ays(ay:)
return @memo["year" + ay] if @memo.key?("year" + ay)
@memo["year" + ay] ||= AcademicYear.find_by_range(ay)
@memo["year" + ay] ||= AcademicYear.of_year(ay)
end
def self.create_admin_data_value(row:, score:, schools:)
school = schools[dese_id(row:).to_i]
admin_data_item_id = admin_data_item(row:)
admin_data_item = find_admin_data_item(admin_data_item_id:)
academic_year = find_ay(ay: ay(row:))
academic_years = find_ays(ay: ay(row:))
return if school.nil?
return if admin_data_item_id.nil? || admin_data_item_id.blank?
return unless academic_years.size.positive?
out = []
academic_years.each do |academic_year|
admin_data_value = AdminDataValue.find_by(academic_year:, school:, admin_data_item:)
admin_data_value = AdminDataValue.find_by(academic_year:, school:, admin_data_item:)
if admin_data_value.present?
admin_data_value.likert_score = score
admin_data_value.save
nil
else
AdminDataValue.new(
likert_score: score,
academic_year:,
school:,
admin_data_item:
)
if admin_data_value.present?
admin_data_value.likert_score = score
admin_data_value.save
[]
else
out << AdminDataValue.new(
likert_score: score,
academic_year:,
school:,
admin_data_item:
)
end
end
out
end
private_class_method :valid_likert_score

@ -2,7 +2,7 @@ module Dese
module Scraper
DELAY = 20 # The dese site will block you if you hit it too many times in a short period of time
Prerequisites = Struct.new('Prerequisites', :filepath, :url, :selectors, :submit_id, :admin_data_item_id,
Prerequisites = Struct.new("Prerequisites", :filepath, :url, :selectors, :submit_id, :admin_data_item_id,
:calculation)
def reverse_score(likert_score:)
return nil unless likert_score.present?
@ -14,6 +14,9 @@ module Dese
def run
academic_years = AcademicYear.all.order(range: :DESC)
.map(&:range_without_season)
.uniq
.map { |range| AcademicYear.new(range:) }
academic_years.each do |academic_year|
prerequisites = yield academic_year
@ -21,7 +24,7 @@ module Dese
selectors: prerequisites.selectors,
submit_id: prerequisites.submit_id)
unless document.nil?
write_csv(document:, filepath: prerequisites.filepath, range: academic_year.range, id: prerequisites.admin_data_item_id,
write_csv(document:, filepath: prerequisites.filepath, range: academic_year.range_without_season, id: prerequisites.admin_data_item_id,
calculation: prerequisites.calculation)
end
end
@ -46,26 +49,26 @@ module Dese
end
def write_headers(filepath:, headers:)
CSV.open(filepath, 'w') do |csv|
CSV.open(filepath, "w") do |csv|
csv << headers
end
end
def write_csv(document:, filepath:, range:, id:, calculation:)
table = document.css('tr')
headers = document.css('.sorting')
table = document.css("tr")
headers = document.css(".sorting")
header_hash = headers.each_with_index.map { |header, index| [header.text, index] }.to_h
CSV.open(filepath, 'a') do |csv|
CSV.open(filepath, "a") do |csv|
table.each do |row|
items = row.css('td').map(&:text)
items = row.css("td").map(&:text)
dese_id = items[1].to_i
next if dese_id.nil? || dese_id.zero?
raw_likert_score = calculation.call(header_hash, items)
raw_likert_score ||= 'NA'
raw_likert_score ||= "NA"
likert_score = raw_likert_score
if likert_score != 'NA'
if likert_score != "NA"
likert_score = 5 if likert_score > 5
likert_score = 1 if likert_score < 1
likert_score = likert_score.round(2)

@ -7,46 +7,23 @@ class EnrollmentLoader
enrollments = []
CSV.parse(File.read(filepath), headers: true) do |row|
row = EnrollmentRowValues.new(row:)
next unless row.school.present? && row.academic_year.present?
next unless row.school.present? && row.academic_years.size.positive?
enrollments << create_enrollment_entry(row:)
end
# It's possible that instead of updating all columns on duplicate key, we could just update the student columns and leave total_teachers alone. Right now enrollment data loads before staffing data so it works correctly.
Respondent.import enrollments, batch_size: 1000,
on_duplicate_key_update: %i[pk k one two three four five six seven eight nine ten eleven twelve total_students]
end
private
def self.create_enrollment_entry(row:)
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year)
respondent.pk = row.pk
respondent.k = row.k
respondent.one = row.one
respondent.two = row.two
respondent.three = row.three
respondent.four = row.four
respondent.five = row.five
respondent.six = row.six
respondent.seven = row.seven
respondent.eight = row.eight
respondent.nine = row.nine
respondent.ten = row.ten
respondent.eleven = row.eleven
respondent.twelve = row.twelve
respondent.total_students = row.total_students
respondent
Respondent.import enrollments.flatten, batch_size: 1000,
on_duplicate_key_update: %i[pk k one two three four five six seven eight nine ten eleven twelve total_students]
end
def self.clone_previous_year_data
years = AcademicYear.order(:range).last(2)
previous_year = years.first
current_year = years.last
respondents = []
School.all.each do |school|
Respondent.where(school:, academic_year: previous_year).each do |respondent|
current_respondent = Respondent.find_or_initialize_by(school:, academic_year: current_year)
academic_years_without_data(school:).each do |academic_year|
respondent = Respondent.where(school:, academic_year: last_academic_year_with_data(school:)).first
next if respondent.nil?
current_respondent = Respondent.find_or_initialize_by(school:, academic_year:)
current_respondent.pk = respondent.pk
current_respondent.k = respondent.k
current_respondent.one = respondent.one
@ -65,10 +42,54 @@ class EnrollmentLoader
respondents << current_respondent
end
end
Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers]
Respondent.import respondents,
batch_size: 1000, on_duplicate_key_ignore: true
end
private
def self.create_enrollment_entry(row:)
row.academic_years.map do |academic_year|
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year:)
respondent.pk = row.pk
respondent.k = row.k
respondent.one = row.one
respondent.two = row.two
respondent.three = row.three
respondent.four = row.four
respondent.five = row.five
respondent.six = row.six
respondent.seven = row.seven
respondent.eight = row.eight
respondent.nine = row.nine
respondent.ten = row.ten
respondent.eleven = row.eleven
respondent.twelve = row.twelve
respondent.total_students = row.total_students
respondent
end
end
def self.last_academic_year_with_data(school:)
AcademicYear.all.order(range: :DESC).find do |academic_year|
Respondent.where(school:, academic_year:).any? do |respondent|
respondent.total_students.positive?
end
end
end
def self.academic_years_without_data(school:)
AcademicYear.all.order(range: :DESC).reject do |academic_year|
Respondent.where(school:, academic_year:).any? do |respondent|
respondent.total_students.positive?
end
end
end
private_class_method :create_enrollment_entry
private_class_method :last_academic_year_with_data
private_class_method :academic_years_without_data
end
class EnrollmentRowValues
@ -85,10 +106,10 @@ class EnrollmentRowValues
end
end
def academic_year
@academic_year ||= begin
def academic_years
@academic_years ||= begin
year = row["Academic Year"]
AcademicYear.find_by_range(year)
AcademicYear.of_year(year)
end
end

@ -7,24 +7,26 @@ class StaffingLoader
respondents = []
CSV.parse(File.read(filepath), headers: true) do |row|
row = StaffingRowValues.new(row:)
next unless row.school.present? && row.academic_year.present?
next unless row.school.present? && row.academic_years.size.positive?
respondents << create_staffing_entry(row:)
respondents.concat(create_staffing_entry(row:))
end
Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers]
end
# Clones staffing and enrollment data from previous year
def self.clone_previous_year_data
years = AcademicYear.order(:range).last(2)
previous_year = years.first
current_year = years.last
respondents = []
School.all.each do |school|
Respondent.where(school:, academic_year: previous_year).each do |respondent|
current_respondent = Respondent.find_or_initialize_by(school:, academic_year: current_year)
current_respondent.total_teachers = respondent.total_teachers
academic_years_without_data(school:).each do |academic_year|
year_with_data = last_academic_year_with_data(school:)
respondent = Respondent.where(school:, academic_year: year_with_data).first
next if respondent.nil?
current_respondent = Respondent.find_or_initialize_by(school:, academic_year:)
if current_respondent.total_teachers.nil? || current_respondent.total_teachers.zero?
current_respondent.total_teachers = respondent.total_teachers
end
respondents << current_respondent
end
end
@ -34,11 +36,29 @@ class StaffingLoader
private
def self.create_staffing_entry(row:)
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year)
respondent.total_teachers = row.fte_count
respondent
row.academic_years.map do |academic_year|
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year:)
respondent.total_teachers = row.fte_count
respondent
end
end
def self.last_academic_year_with_data(school:)
AcademicYear.all.order(range: :DESC).find do |academic_year|
respondents = Respondent.find_by(school:, academic_year:)
respondents&.total_teachers&.positive?
end
end
def self.academic_years_without_data(school:)
AcademicYear.all.order(range: :DESC).select do |academic_year|
respondents = Respondent.find_by(school:, academic_year:)
respondents.nil? || respondents.total_teachers.nil? || respondents.total_teachers.zero?
end
end
private_class_method :last_academic_year_with_data
private_class_method :academic_years_without_data
private_class_method :create_staffing_entry
end
@ -56,10 +76,10 @@ class StaffingRowValues
end
end
def academic_year
def academic_years
@academic_year ||= begin
year = row["Academic Year"]
AcademicYear.find_by_range(year)
AcademicYear.of_year(year)
end
end

@ -1,13 +1,14 @@
class SurveyItemValues
attr_reader :row, :headers, :survey_items, :schools
attr_reader :row, :headers, :survey_items, :schools, :academic_years
def initialize(row:, headers:, survey_items:, schools:)
def initialize(row:, headers:, survey_items:, schools:, academic_years: AcademicYear.all)
@row = row
# Remove any newlines in headers
headers = headers.map { |item| item.delete("\n") if item.present? }
@headers = include_all_headers(headers:)
@survey_items = survey_items
@schools = schools
@academic_years = academic_years
copy_likert_scores_from_variant_survey_items
row["Income"] = income
@ -59,7 +60,10 @@ class SurveyItemValues
end
def academic_year
@academic_year ||= AcademicYear.find_by_date recorded_date
@academic_year ||= begin
range = AcademicYear.range_from_date(recorded_date, academic_years.map(&:range))
academic_years.find { |item| item.range == range }
end
end
def survey_item_response(survey_item:)

@ -9,7 +9,8 @@ class SurveyResponsesDataLoader
file.lazy.each_slice(500) do |lines|
survey_item_responses = CSV.parse(lines.join, headers:).map do |row|
process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:))
process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:,
academic_years:))
end
SurveyItemResponse.import(
@ -33,8 +34,8 @@ class SurveyResponsesDataLoader
next unless line.present?
CSV.parse(line, headers:).map do |row|
survey_item_responses <<
process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:))
survey_item_responses << process_row(row: SurveyItemValues.new(row:, headers: headers_array,
survey_items: all_survey_items, schools:, academic_years:))
end
row_count += 1
@ -51,7 +52,7 @@ class SurveyResponsesDataLoader
private
def schools
@schools = School.school_by_dese_id
@schools = School.by_dese_id
end
def genders
@ -74,6 +75,10 @@ class SurveyResponsesDataLoader
@speds ||= Sped.by_designation
end
def academic_years
@academic_years ||= AcademicYear.all
end
def process_row(row:)
return unless row.dese_id?
return unless row.school.present?
@ -84,10 +89,7 @@ class SurveyResponsesDataLoader
def process_survey_items(row:)
student = Student.find_or_create_by(response_id: row.response_id, lasid: row.lasid)
student.races.delete_all
tmp_races = row.races.map do |race|
races[race]
end
tmp_races = row.races.map { |race| races[race] }
student.races += tmp_races
row

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -1,4 +1,412 @@
Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade 11 and 12 Students,# Students Completing Advanced,% Students Completing Advanced,% ELA,% Math,% Science and Technology,% Computer and Information Science,% History and Social Sciences,% Arts,% All Other Subjects,% All Other Subjects
11.16,5,a-curv-i2,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 178, 149, 83.7, 35.4, 66.3, 30.3, 0.0, 33.1, 13.5, 24.2, 0.0
11.16,5,a-curv-i2,2022-23,Abington-Abington High,00010505, 282, 236, 83.7, 14.9, 83.7, 5.0, 0.0, 11.3, 0.7, 0.0, 0.0
10.946666666666665,5,a-curv-i2,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 117, 96, 82.1, 0.0, 44.4, 34.2, 17.9, 64.1, 0.0, 8.5, 0.0
9.866666666666667,5,a-curv-i2,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 869, 643, 74.0, 20.0, 65.0, 40.7, 7.1, 44.0, 0.0, 10.7, 0.0
12.533333333333333,5,a-curv-i2,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 267, 251, 94.0, 5.6, 89.9, 27.0, 9.4, 46.4, 1.9, 5.2, 0.0
8.093333333333334,5,a-curv-i2,2022-23,Agawam-Agawam High,00050505, 484, 294, 60.7, 28.3, 48.8, 31.2, 4.3, 16.3, 0.0, 0.0, 0.0
10.28,5,a-curv-i2,2022-23,Amesbury-Amesbury High,00070505, 218, 168, 77.1, 17.0, 54.6, 21.6, 0.0, 41.3, 4.6, 6.4, 0.0
0.0,1,a-curv-i2,2022-23,Amesbury-Amesbury Innovation High School,00070515, 20, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
8.04,5,a-curv-i2,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 433, 261, 60.3, 0.7, 52.7, 19.2, 2.1, 15.7, 0.0, 11.3, 0.0
10.413333333333332,5,a-curv-i2,2022-23,Andover-Andover High,00090505, 841, 657, 78.1, 43.3, 71.8, 34.5, 6.1, 27.1, 3.1, 8.3, 0.0
7.48,5,a-curv-i2,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 98, 55, 56.1, 36.7, 33.7, 0.0, 0.0, 24.5, 12.2, 36.7, 0.0
11.093333333333334,5,a-curv-i2,2022-23,Arlington-Arlington High,00100505, 772, 642, 83.2, 39.8, 75.3, 32.0, 9.8, 44.9, 2.5, 12.4, 0.0
9.4,5,a-curv-i2,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 319, 225, 70.5, 23.5, 63.3, 6.0, 0.0, 9.4, 0.0, 4.4, 0.0
9.293333333333333,5,a-curv-i2,2022-23,Ashland-Ashland High,00140505, 399, 278, 69.7, 12.3, 65.4, 24.6, 12.8, 0.3, 0.0, 0.0, 0.0
10.813333333333333,5,a-curv-i2,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 534, 433, 81.1, 5.2, 50.2, 17.8, 0.0, 3.9, 0.0, 28.8, 28.1
8.466666666666667,5,a-curv-i2,2022-23,Athol-Royalston-Athol High,06150505, 178, 113, 63.5, 20.8, 35.4, 7.9, 0.6, 32.6, 0.0, 0.0, 0.0
10.186666666666667,5,a-curv-i2,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 140, 107, 76.4, 24.3, 60.7, 36.4, 0.0, 27.9, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Attleboro-Attleboro Community Academy,00160515, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.546666666666667,5,a-curv-i2,2022-23,Attleboro-Attleboro High,00160505, 832, 471, 56.6, 12.0, 40.1, 8.4, 9.0, 33.7, 0.8, 0.1, 0.0
5.7733333333333325,5,a-curv-i2,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 30, 13, 43.3, 3.3, 43.3, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0
7.573333333333333,5,a-curv-i2,2022-23,Auburn-Auburn Senior High,00170505, 368, 209, 56.8, 11.7, 44.8, 20.1, 2.7, 24.2, 2.2, 3.5, 0.0
8.693333333333333,5,a-curv-i2,2022-23,Avon-Avon Middle High School,00180510, 92, 60, 65.2, 9.8, 64.1, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0
8.306666666666667,5,a-curv-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 183, 114, 62.3, 23.5, 48.1, 20.2, 7.1, 8.2, 0.0, 4.4, 0.0
6.666666666666667,5,a-curv-i2,2022-23,Barnstable-Barnstable High,00200505, 652, 326, 50.0, 12.0, 39.4, 10.3, 4.1, 23.2, 2.0, 5.1, 0.0
13.053333333333335,5,a-curv-i2,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 97, 95, 97.9, 0.0, 48.5, 49.5, 0.0, 0.0, 0.0, 0.0, 0.0
9.826666666666666,5,a-curv-i2,2022-23,Bedford-Bedford High,00230505, 392, 289, 73.7, 15.3, 71.4, 25.8, 3.8, 0.0, 0.0, 3.3, 0.0
8.906666666666666,5,a-curv-i2,2022-23,Belchertown-Belchertown High,00240505, 337, 225, 66.8, 7.1, 49.9, 15.4, 3.6, 23.1, 0.0, 0.3, 0.0
11.360000000000001,5,a-curv-i2,2022-23,Bellingham-Bellingham High School,00250505, 271, 231, 85.2, 21.0, 77.1, 46.5, 0.0, 1.1, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Bellingham-Keough Memorial Academy,00250510, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
11.479999999999999,5,a-curv-i2,2022-23,Belmont-Belmont High,00260505, 648, 558, 86.1, 7.9, 77.5, 70.5, 12.7, 42.6, 5.9, 1.2, 0.0
8.613333333333333,5,a-curv-i2,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 65, 42, 64.6, 43.1, 29.2, 4.6, 9.2, 18.5, 3.1, 7.7, 0.0
8.4,5,a-curv-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 219, 138, 63.0, 35.6, 38.4, 26.0, 10.0, 5.9, 7.8, 5.0, 0.0
9.813333333333333,5,a-curv-i2,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 140, 103, 73.6, 43.6, 65.7, 7.1, 7.1, 20.7, 0.0, 0.0, 0.0
6.653333333333333,5,a-curv-i2,2022-23,Beverly-Beverly High,00300505, 629, 314, 49.9, 13.0, 37.4, 8.1, 0.0, 14.9, 1.9, 16.1, 0.0
10.639999999999999,5,a-curv-i2,2022-23,Billerica-Billerica Memorial High School,00310505, 545, 435, 79.8, 16.3, 70.1, 24.8, 29.7, 22.8, 0.0, 9.4, 0.0
9.026666666666667,5,a-curv-i2,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 603, 408, 67.7, 14.4, 50.2, 19.7, 1.2, 16.3, 1.5, 0.5, 23.2
8.653333333333334,5,a-curv-i2,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 185, 120, 64.9, 21.1, 37.8, 40.5, 3.2, 5.9, 0.5, 0.0, 0.0
8.946666666666665,5,a-curv-i2,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 431, 289, 67.1, 9.0, 58.2, 26.9, 0.0, 5.6, 0.0, 0.0, 18.3
12.133333333333333,5,a-curv-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 145, 132, 91.0, 31.0, 84.1, 67.6, 13.1, 22.1, 11.7, 6.9, 0.0
2.1599999999999997,2.16,a-curv-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 315, 51, 16.2, 1.0, 12.7, 4.8, 0.0, 0.0, 0.3, 0.3, 0.0
7.493333333333334,5,a-curv-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 137, 77, 56.2, 27.7, 35.8, 52.6, 0.0, 14.6, 0.0, 4.4, 0.0
11.333333333333334,5,a-curv-i2,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 173, 147, 85.0, 42.2, 68.8, 66.5, 12.1, 28.3, 0.0, 7.5, 0.0
11.24,5,a-curv-i2,2022-23,Boston-Another Course To College,00350541, 121, 102, 84.3, 32.2, 62.0, 28.9, 52.1, 33.9, 13.2, 6.6, 0.0
0.0,1,a-curv-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
6.546666666666667,5,a-curv-i2,2022-23,Boston-Boston Arts Academy,00350546, 226, 111, 49.1, 0.9, 45.6, 10.6, 0.0, 2.2, 0.4, 0.9, 0.0
1.84,1.84,a-curv-i2,2022-23,Boston-Boston Collaborative High School,00350755, 123, 17, 13.8, 0.8, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.1866666666666665,5,a-curv-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 206, 111, 53.9, 29.6, 35.9, 0.0, 0.0, 0.0, 0.0, 14.1, 0.0
5.6,5,a-curv-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 157, 66, 42.0, 0.0, 39.5, 0.0, 6.4, 8.9, 0.0, 0.0, 0.0
13.24,5,a-curv-i2,2022-23,Boston-Boston Latin Academy,00350545, 582, 578, 99.3, 21.8, 93.8, 16.7, 18.4, 66.7, 0.0, 6.5, 0.0
13.32,5,a-curv-i2,2022-23,Boston-Boston Latin School,00350560, 797, 796, 99.9, 35.0, 96.5, 52.7, 26.5, 52.6, 6.4, 19.7, 0.0
9.76,5,a-curv-i2,2022-23,Boston-Brighton High School,00350505, 254, 186, 73.2, 9.4, 55.1, 37.0, 3.1, 5.5, 2.4, 7.5, 0.0
7.933333333333334,5,a-curv-i2,2022-23,Boston-Burke High School,00350525, 168, 100, 59.5, 17.9, 57.7, 0.0, 9.5, 16.7, 0.6, 1.8, 0.0
0.0,1,a-curv-i2,2022-23,Boston-Carter School,00350036, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
6.213333333333334,5,a-curv-i2,2022-23,Boston-Charlestown High School,00350515, 356, 166, 46.6, 5.9, 42.1, 8.1, 3.4, 11.5, 0.3, 7.9, 0.0
0.0,1,a-curv-i2,2022-23,Boston-Community Academy,00350518, 33, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
5.453333333333333,5,a-curv-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 149, 61, 40.9, 22.8, 29.5, 5.4, 0.0, 6.7, 0.0, 0.0, 0.0
8.586666666666668,5,a-curv-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 163, 105, 64.4, 8.6, 39.9, 5.5, 22.7, 5.5, 3.7, 8.0, 0.0
4.413333333333333,4.41,a-curv-i2,2022-23,Boston-East Boston High School,00350530, 532, 176, 33.1, 3.6, 6.4, 2.3, 22.4, 2.3, 0.0, 0.2, 0.0
7.253333333333333,5,a-curv-i2,2022-23,Boston-English High School,00350535, 272, 148, 54.4, 10.3, 50.0, 8.5, 0.0, 7.0, 0.0, 0.0, 0.0
6.239999999999999,5,a-curv-i2,2022-23,Boston-Excel High School,00350522, 205, 96, 46.8, 20.5, 38.5, 5.4, 13.2, 0.0, 0.0, 0.0, 0.0
10.96,5,a-curv-i2,2022-23,Boston-Fenway High School,00350540, 174, 143, 82.2, 28.7, 44.3, 1.1, 4.0, 0.0, 0.0, 12.1, 0.0
1.24,1.24,a-curv-i2,2022-23,Boston-Greater Egleston High School,00350543, 75, 7, 9.3, 0.0, 0.0, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0
6.466666666666667,5,a-curv-i2,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 132, 64, 48.5, 18.2, 34.8, 13.6, 7.6, 21.2, 0.8, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
13.08,5,a-curv-i2,2022-23,Boston-Lyon High School,00350655, 53, 52, 98.1, 96.2, 45.3, 0.0, 0.0, 41.5, 0.0, 0.0, 0.0
6.706666666666666,5,a-curv-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 459, 231, 50.3, 8.1, 47.3, 9.6, 0.9, 5.4, 0.7, 5.7, 8.5
11.626666666666667,5,a-curv-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 133, 116, 87.2, 0.0, 54.1, 0.0, 0.0, 0.0, 0.0, 34.6, 0.0
0.0,1,a-curv-i2,2022-23,Boston-McKinley Schools,00350363, 42, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
12.08,5,a-curv-i2,2022-23,Boston-New Mission High School,00350542, 212, 192, 90.6, 42.5, 88.2, 10.8, 11.3, 22.2, 0.0, 12.3, 0.0
13.133333333333333,5,a-curv-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575, 610, 601, 98.5, 52.6, 81.5, 41.6, 20.2, 49.5, 0.0, 16.2, 0.0
13.186666666666667,5,a-curv-i2,2022-23,Boston-Quincy Upper School,00350565, 94, 93, 98.9, 98.9, 97.9, 98.9, 23.4, 97.9, 98.9, 96.8, 0.0
9.746666666666666,5,a-curv-i2,2022-23,Boston-Snowden International High School,00350690, 201, 147, 73.1, 40.8, 61.7, 29.4, 0.0, 32.8, 15.9, 42.8, 0.0
5.053333333333333,5,a-curv-i2,2022-23,Boston-TechBoston Academy,00350657, 282, 107, 37.9, 7.1, 27.7, 8.2, 5.3, 5.7, 5.7, 1.1, 0.0
9.133333333333333,5,a-curv-i2,2022-23,Bourne-Bourne High School,00360505, 181, 124, 68.5, 12.7, 54.1, 11.0, 7.2, 25.4, 0.0, 0.6, 0.0
9.32,5,a-curv-i2,2022-23,Braintree-Braintree High,00400505, 783, 547, 69.9, 8.8, 67.8, 20.9, 7.4, 27.6, 2.6, 5.5, 0.0
7.760000000000001,5,a-curv-i2,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 639, 372, 58.2, 20.3, 51.0, 16.0, 0.0, 14.9, 0.9, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 5,"","","","","","","","","",""
4.1466666666666665,4.15,a-curv-i2,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 209, 65, 31.1, 0.0, 17.7, 22.5, 0.0, 0.0, 0.0, 0.0, 6.2
9.28,5,a-curv-i2,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 635, 442, 69.6, 9.0, 17.2, 0.0, 0.0, 0.0, 0.0, 44.7, 33.1
0.3466666666666667,1,a-curv-i2,2022-23,Brockton-Brockton Champion High School,00440515, 39, 1, 2.6, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.333333333333333,5,a-curv-i2,2022-23,Brockton-Brockton High,00440505," 1,508", 830, 55.0, 12.3, 49.5, 10.6, 4.1, 10.1, 3.1, 8.7, 0.0
3.3333333333333335,3.33,a-curv-i2,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 32, 8, 25.0, 0.0, 25.0, 0.0, 0.0, 3.1, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Brockton-Edison Academy,00440520, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
12.906666666666666,5,a-curv-i2,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 218, 211, 96.8, 53.7, 75.7, 75.7, 54.6, 0.0, 0.0, 27.1, 0.0
12.386666666666667,5,a-curv-i2,2022-23,Brookline-Brookline High,00460505, 991, 921, 92.9, 0.0, 90.6, 55.8, 6.6, 19.6, 3.1, 10.7, 0.0
9.866666666666667,5,a-curv-i2,2022-23,Burlington-Burlington High,00480505, 439, 325, 74.0, 23.9, 59.5, 34.6, 23.7, 31.0, 1.1, 3.9, 0.0
9.453333333333335,5,a-curv-i2,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 899, 637, 70.9, 25.4, 53.7, 31.8, 14.3, 35.9, 3.8, 10.0, 3.0
10.493333333333334,5,a-curv-i2,2022-23,Canton-Canton High,00500505, 414, 326, 78.7, 44.4, 60.6, 20.3, 3.1, 27.5, 2.4, 2.9, 0.0
12.533333333333333,5,a-curv-i2,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 318, 299, 94.0, 11.0, 11.9, 0.0, 0.0, 9.4, 0.0, 92.8, 34.3
8.96,5,a-curv-i2,2022-23,Carver-Carver Middle/High School,00520405, 192, 129, 67.2, 9.9, 51.0, 30.2, 9.4, 12.5, 0.0, 0.0, 0.0
9.4,5,a-curv-i2,2022-23,Central Berkshire-Wahconah Regional High,06350505, 241, 170, 70.5, 22.4, 61.4, 17.8, 0.0, 17.4, 2.9, 3.7, 0.0
9.546666666666665,5,a-curv-i2,2022-23,Chelmsford-Chelmsford High,00560505, 661, 473, 71.6, 18.8, 62.3, 23.0, 9.7, 28.6, 0.2, 13.2, 0.0
8.506666666666666,5,a-curv-i2,2022-23,Chelsea-Chelsea High,00570505, 661, 422, 63.8, 25.1, 52.2, 6.5, 0.6, 16.5, 0.8, 14.5, 0.0
0.92,1,a-curv-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 72, 5, 6.9, 0.0, 0.0, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0
6.4,5,a-curv-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 25, 12, 48.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
5.333333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Academy,00610021, 30, 12, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
5.053333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 565, 214, 37.9, 9.7, 31.9, 5.3, 0.0, 10.1, 0.0, 2.1, 0.5
6.133333333333334,5,a-curv-i2,2022-23,Chicopee-Chicopee High,00610505, 413, 190, 46.0, 12.1, 36.3, 8.5, 0.0, 24.5, 0.0, 5.8, 0.0
4.8133333333333335,4.81,a-curv-i2,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 83, 30, 36.1, 18.1, 36.1, 0.0, 0.0, 9.6, 0.0, 0.0, 0.0
4.293333333333334,4.29,a-curv-i2,2022-23,Clinton-Clinton Senior High,00640505, 258, 83, 32.2, 14.0, 16.3, 11.6, 5.0, 8.5, 0.0, 3.5, 0.0
9.333333333333334,5,a-curv-i2,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 60, 42, 70.0, 46.7, 58.3, 43.3, 15.0, 0.0, 0.0, 0.0, 0.0
12.093333333333334,5,a-curv-i2,2022-23,Cohasset-Cohasset High School,00650505, 215, 195, 90.7, 50.2, 80.9, 26.0, 0.0, 40.5, 0.0, 5.1, 0.0
4.826666666666667,4.83,a-curv-i2,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 58, 21, 36.2, 36.2, 12.1, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0
10.986666666666668,5,a-curv-i2,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 74, 61, 82.4, 17.6, 70.3, 21.6, 20.3, 29.7, 0.0, 0.0, 0.0
12.32,5,a-curv-i2,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 669, 618, 92.4, 8.5, 90.3, 26.6, 0.1, 1.6, 3.1, 12.0, 0.0
10.746666666666666,5,a-curv-i2,2022-23,Danvers-Danvers High,00710505, 403, 325, 80.6, 23.6, 54.1, 48.4, 7.7, 39.5, 8.9, 1.7, 0.0
8.933333333333334,5,a-curv-i2,2022-23,Dartmouth-Dartmouth High,00720505, 497, 333, 67.0, 19.3, 52.7, 15.7, 9.3, 19.5, 3.0, 0.0, 0.0
8.96,5,a-curv-i2,2022-23,Dedham-Dedham High,00730505, 344, 231, 67.2, 13.1, 59.9, 16.6, 4.1, 22.1, 6.1, 6.4, 0.0
9.093333333333334,5,a-curv-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 308, 210, 68.2, 30.8, 47.1, 22.4, 7.8, 24.0, 7.1, 6.5, 0.0
7.306666666666667,5,a-curv-i2,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 330, 181, 54.8, 22.1, 46.1, 23.0, 0.9, 23.6, 4.8, 0.0, 0.0
6.746666666666667,5,a-curv-i2,2022-23,Douglas-Douglas High School,00770505, 180, 91, 50.6, 19.4, 40.6, 23.3, 0.0, 16.7, 0.0, 0.0, 0.0
12.479999999999999,5,a-curv-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 326, 305, 93.6, 38.7, 91.4, 35.6, 4.0, 46.9, 3.4, 8.6, 0.0
8.08,5,a-curv-i2,2022-23,Dracut-Dracut Senior High,00790505, 391, 237, 60.6, 14.6, 51.4, 26.1, 0.0, 13.6, 0.0, 2.0, 0.0
8.453333333333333,5,a-curv-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 426, 270, 63.4, 14.6, 47.4, 35.2, 2.8, 6.1, 0.5, 4.7, 0.0
11.666666666666666,5,a-curv-i2,2022-23,Duxbury-Duxbury High,00820505, 464, 406, 87.5, 25.0, 81.9, 21.3, 0.0, 44.2, 3.2, 8.4, 0.0
9.013333333333332,5,a-curv-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 299, 202, 67.6, 30.8, 57.5, 21.1, 0.0, 2.7, 1.7, 0.0, 0.0
10.186666666666667,5,a-curv-i2,2022-23,East Longmeadow-East Longmeadow High,00870505, 423, 323, 76.4, 17.5, 71.4, 11.6, 5.9, 20.6, 0.0, 0.7, 0.2
6.8133333333333335,5,a-curv-i2,2022-23,Easthampton-Easthampton High,00860505, 182, 93, 51.1, 47.3, 15.9, 1.1, 1.1, 12.6, 0.0, 1.6, 0.0
8.48,5,a-curv-i2,2022-23,Easton-Oliver Ames High,00880505, 547, 348, 63.6, 8.2, 52.8, 23.2, 2.7, 31.8, 2.4, 1.8, 0.0
9.613333333333333,5,a-curv-i2,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 179, 129, 72.1, 43.6, 60.3, 13.4, 0.0, 0.0, 0.0, 0.0, 0.0
10.573333333333332,5,a-curv-i2,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 791, 627, 79.3, 5.8, 55.4, 16.7, 0.0, 32.4, 0.0, 0.0, 43.5
0.0,1,a-curv-i2,2022-23,Everett-Devens School,00930030, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.733333333333333,5,a-curv-i2,2022-23,Everett-Everett High,00930505," 1,017", 590, 58.0, 13.5, 49.2, 5.9, 9.1, 7.1, 0.0, 0.0, 0.0
12.92,5,a-curv-i2,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 318, 308, 96.9, 72.3, 92.8, 37.1, 5.0, 55.0, 2.5, 16.7, 0.0
8.146666666666667,5,a-curv-i2,2022-23,Fairhaven-Fairhaven High,00940505, 316, 193, 61.1, 17.4, 55.4, 14.6, 0.0, 16.5, 0.0, 0.0, 0.0
9.066666666666666,5,a-curv-i2,2022-23,Fall River-B M C Durfee High,00950505," 1,075", 731, 68.0, 20.0, 54.2, 34.7, 2.1, 15.4, 1.1, 12.9, 0.0
2.76,2.76,a-curv-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 82, 17, 20.7, 0.0, 0.0, 20.7, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Fall River-Stone PK-12 School,00950340, 14, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
9.653333333333334,5,a-curv-i2,2022-23,Falmouth-Falmouth High,00960505, 370, 268, 72.4, 13.0, 64.6, 21.1, 7.3, 44.9, 6.8, 8.4, 0.0
8.0,5,a-curv-i2,2022-23,Fitchburg-Fitchburg High,00970505, 567, 340, 60.0, 31.2, 44.6, 16.0, 8.6, 26.6, 2.6, 13.1, 0.0
3.4266666666666667,3.43,a-curv-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 175, 45, 25.7, 0.6, 7.4, 18.9, 0.0, 0.6, 0.0, 0.6, 0.0
0.0,1,a-curv-i2,2022-23,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 0,"","","","","","","","","",""
9.346666666666666,5,a-curv-i2,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 174, 122, 70.1, 31.0, 37.9, 34.5, 6.3, 30.5, 3.4, 10.3, 0.0
8.906666666666666,5,a-curv-i2,2022-23,Foxborough-Foxborough High,00990505, 377, 252, 66.8, 22.0, 51.7, 12.7, 4.8, 40.3, 2.9, 9.8, 0.0
7.760000000000001,5,a-curv-i2,2022-23,Framingham-Framingham High School,01000515," 1,187", 691, 58.2, 14.7, 43.6, 15.4, 1.5, 22.3, 3.5, 1.4, 0.0
11.76,5,a-curv-i2,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 119, 105, 88.2, 0.0, 80.7, 53.8, 2.5, 5.9, 0.0, 2.5, 0.0
6.96,5,a-curv-i2,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 272, 142, 52.2, 15.8, 26.5, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0
10.266666666666667,5,a-curv-i2,2022-23,Franklin-Franklin High,01010505, 835, 643, 77.0, 15.0, 71.3, 25.9, 4.2, 38.0, 3.8, 7.5, 0.0
7.88,5,a-curv-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 367, 217, 59.1, 29.2, 48.0, 20.4, 3.3, 34.3, 1.1, 5.2, 0.0
8.786666666666667,5,a-curv-i2,2022-23,Frontier-Frontier Regional,06700505, 182, 120, 65.9, 25.3, 59.3, 23.6, 0.0, 13.7, 0.0, 4.4, 0.0
9.08,5,a-curv-i2,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 91, 62, 68.1, 28.6, 54.9, 16.5, 7.7, 41.8, 11.0, 65.9, 0.0
9.586666666666668,5,a-curv-i2,2022-23,Gardner-Gardner High,01030505, 267, 192, 71.9, 36.3, 69.3, 25.5, 5.6, 23.2, 1.5, 16.5, 0.0
6.293333333333334,5,a-curv-i2,2022-23,Gateway-Gateway Regional High,06720505, 89, 42, 47.2, 23.6, 31.5, 20.2, 0.0, 13.5, 0.0, 1.1, 0.0
8.8,5,a-curv-i2,2022-23,Georgetown-Georgetown High School,01050505, 150, 99, 66.0, 9.3, 61.3, 11.3, 2.7, 24.7, 0.0, 0.7, 0.0
7.706666666666666,5,a-curv-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 90, 52, 57.8, 21.1, 40.0, 23.3, 2.2, 17.8, 7.8, 20.0, 0.0
8.893333333333334,5,a-curv-i2,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 69, 46, 66.7, 21.7, 62.3, 1.4, 1.4, 17.4, 0.0, 1.4, 0.0
5.52,5,a-curv-i2,2022-23,Gloucester-Gloucester High,01070505, 391, 162, 41.4, 9.2, 33.5, 19.7, 1.5, 4.9, 0.0, 0.0, 0.0
8.306666666666667,5,a-curv-i2,2022-23,Grafton-Grafton High School,01100505, 430, 268, 62.3, 46.3, 45.8, 23.5, 6.5, 16.5, 0.0, 1.6, 0.0
8.893333333333334,5,a-curv-i2,2022-23,Granby-Granby Jr Sr High School,01110505, 105, 70, 66.7, 23.8, 44.8, 0.0, 24.8, 14.3, 0.0, 19.0, 0.0
4.733333333333333,4.73,a-curv-i2,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 349, 124, 35.5, 10.9, 29.2, 5.2, 0.6, 8.3, 1.4, 4.0, 0.0
8.12,5,a-curv-i2,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 663, 404, 60.9, 9.0, 33.0, 9.8, 0.0, 0.0, 0.0, 3.0, 43.9
8.346666666666668,5,a-curv-i2,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 821, 514, 62.6, 6.1, 49.5, 56.4, 0.0, 6.0, 0.0, 0.0, 33.9
11.173333333333334,5,a-curv-i2,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 1,108", 929, 83.8, 7.9, 46.1, 24.0, 1.8, 0.0, 0.7, 52.3, 33.6
4.72,4.72,a-curv-i2,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 970, 343, 35.4, 5.2, 16.7, 0.0, 0.0, 1.9, 0.0, 0.0, 25.2
6.133333333333334,5,a-curv-i2,2022-23,Greenfield-Greenfield High,01140505, 150, 69, 46.0, 32.0, 30.0, 26.7, 0.0, 16.7, 0.0, 4.0, 0.0
10.386666666666667,5,a-curv-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 349, 272, 77.9, 22.3, 70.8, 37.8, 0.0, 9.5, 3.7, 1.7, 0.0
9.520000000000001,5,a-curv-i2,2022-23,Hadley-Hopkins Academy,01170505, 84, 60, 71.4, 11.9, 57.1, 48.8, 1.2, 19.0, 2.4, 0.0, 0.0
11.360000000000001,5,a-curv-i2,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 237, 202, 85.2, 11.4, 77.2, 26.6, 3.0, 41.8, 0.0, 21.5, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 130, 130, 100.0, 40.0, 66.9, 55.4, 8.5, 33.1, 0.0, 21.5, 0.0
12.973333333333333,5,a-curv-i2,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 75, 73, 97.3, 42.7, 57.3, 69.3, 2.7, 34.7, 0.0, 25.3, 0.0
8.626666666666667,5,a-curv-i2,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 467, 302, 64.7, 17.8, 61.2, 11.8, 5.4, 15.2, 2.6, 2.6, 0.9
10.386666666666667,5,a-curv-i2,2022-23,Hampshire-Hampshire Regional High,06830505, 199, 155, 77.9, 7.5, 49.2, 44.7, 7.0, 21.6, 2.0, 15.1, 0.0
10.053333333333335,5,a-curv-i2,2022-23,Hanover-Hanover High,01220505, 350, 264, 75.4, 11.1, 72.0, 13.1, 0.0, 20.3, 3.4, 8.6, 0.0
11.986666666666668,5,a-curv-i2,2022-23,Harvard-Bromfield,01250505, 159, 143, 89.9, 18.2, 86.2, 33.3, 6.9, 42.1, 0.0, 3.1, 0.0
10.546666666666665,5,a-curv-i2,2022-23,Hatfield-Smith Academy,01270505, 43, 34, 79.1, 0.0, 79.1, 41.9, 0.0, 14.0, 2.3, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 3,"","","","","","","","","",""
1.9066666666666667,1.91,a-curv-i2,2022-23,Haverhill-Gateway Academy,01280515, 21, 3, 14.3, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Haverhill-Greenleaf Academy,01280033, 7, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.946666666666667,5,a-curv-i2,2022-23,Haverhill-Haverhill High,01280505, 848, 505, 59.6, 22.2, 44.8, 12.5, 4.2, 19.3, 0.1, 2.6, 0.0
11.706666666666667,5,a-curv-i2,2022-23,Hingham-Hingham High,01310505, 599, 526, 87.8, 12.2, 87.3, 26.4, 2.7, 8.3, 1.0, 18.7, 0.0
5.346666666666667,5,a-curv-i2,2022-23,Holbrook-Holbrook Middle High School,01330505, 162, 65, 40.1, 9.9, 37.7, 4.3, 0.0, 4.3, 0.0, 0.0, 0.0
10.479999999999999,5,a-curv-i2,2022-23,Holliston-Holliston High,01360505, 388, 305, 78.6, 21.1, 67.0, 32.7, 10.6, 40.7, 2.1, 14.2, 0.0
6.6,5,a-curv-i2,2022-23,Holyoke-Holyoke High,01370505, 738, 365, 49.5, 12.5, 26.2, 4.7, 0.1, 16.1, 1.2, 24.1, 3.0
6.8133333333333335,5,a-curv-i2,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 92, 47, 51.1, 19.6, 27.2, 6.5, 0.0, 33.7, 0.0, 0.0, 0.0
10.853333333333333,5,a-curv-i2,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 145, 118, 81.4, 40.7, 64.8, 15.9, 11.0, 39.3, 0.0, 2.1, 0.0
10.973333333333333,5,a-curv-i2,2022-23,Hopkinton-Hopkinton High,01390505, 593, 488, 82.3, 20.6, 67.6, 35.2, 10.6, 59.5, 6.7, 3.9, 0.0
9.453333333333335,5,a-curv-i2,2022-23,Hudson-Hudson High,01410505, 313, 222, 70.9, 28.4, 50.5, 42.5, 0.0, 14.7, 1.3, 9.9, 0.0
10.520000000000001,5,a-curv-i2,2022-23,Hull-Hull High,01420505, 114, 90, 78.9, 31.6, 69.3, 23.7, 7.0, 67.5, 0.0, 1.8, 0.0
7.28,5,a-curv-i2,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 174, 95, 54.6, 0.0, 50.6, 18.4, 1.1, 0.0, 0.0, 0.0, 0.0
9.306666666666667,5,a-curv-i2,2022-23,Ipswich-Ipswich High,01440505, 248, 173, 69.8, 23.8, 52.8, 27.4, 10.9, 33.5, 0.0, 9.3, 0.0
11.44,5,a-curv-i2,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 233, 200, 85.8, 51.1, 58.4, 37.8, 12.0, 30.5, 4.3, 27.5, 0.0
11.04,5,a-curv-i2,2022-23,King Philip-King Philip Regional High,06900505, 559, 463, 82.8, 45.3, 78.4, 25.4, 7.9, 48.7, 3.9, 4.7, 0.0
7.706666666666666,5,a-curv-i2,2022-23,Lawrence-High School Learning Center,01490536, 187, 108, 57.8, 0.0, 33.2, 34.8, 0.0, 0.0, 0.0, 0.0, 0.0
10.466666666666667,5,a-curv-i2,2022-23,Lawrence-Lawrence High School,01490515," 1,324"," 1,040", 78.5, 19.0, 52.9, 21.7, 9.4, 26.1, 1.1, 25.5, 0.0
5.613333333333333,5,a-curv-i2,2022-23,Lawrence-RISE Academy,01490615, 38, 16, 42.1, 0.0, 0.0, 42.1, 0.0, 0.0, 0.0, 0.0, 0.0
3.64,3.64,a-curv-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 11, 3, 27.3, 0.0, 0.0, 27.3, 0.0, 0.0, 0.0, 0.0, 0.0
9.093333333333334,5,a-curv-i2,2022-23,Lee-Lee Middle/High School,01500505, 110, 75, 68.2, 33.6, 57.3, 21.8, 9.1, 8.2, 0.0, 7.3, 0.0
8.346666666666668,5,a-curv-i2,2022-23,Leicester-Leicester High,01510505, 211, 132, 62.6, 14.7, 58.8, 3.3, 1.9, 9.0, 0.0, 0.0, 0.0
10.493333333333334,5,a-curv-i2,2022-23,Lenox-Lenox Memorial High,01520505, 127, 100, 78.7, 0.0, 71.7, 38.6, 10.2, 0.0, 2.4, 5.5, 0.0
7.373333333333333,5,a-curv-i2,2022-23,Leominster-Center For Technical Education Innovation,01530605, 284, 157, 55.3, 4.2, 28.2, 3.2, 0.0, 19.4, 0.0, 0.0, 27.5
0.0,1,a-curv-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 25, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
6.4,5,a-curv-i2,2022-23,Leominster-Leominster High School,01530505, 615, 295, 48.0, 16.6, 34.5, 9.8, 0.5, 21.5, 0.3, 2.8, 0.0
12.026666666666667,5,a-curv-i2,2022-23,Lexington-Lexington High,01550505," 1,119"," 1,009", 90.2, 0.0, 84.3, 31.6, 14.4, 62.2, 5.8, 7.0, 0.0
11.04,5,a-curv-i2,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 711, 589, 82.8, 0.0, 82.1, 14.8, 6.2, 0.3, 2.1, 0.0, 0.0
10.093333333333334,5,a-curv-i2,2022-23,Littleton-Littleton High School,01580505, 226, 171, 75.7, 6.6, 68.6, 16.8, 8.8, 40.7, 2.2, 13.3, 0.0
9.933333333333334,5,a-curv-i2,2022-23,Longmeadow-Longmeadow High,01590505, 436, 325, 74.5, 22.7, 62.2, 49.3, 6.4, 20.9, 6.9, 7.6, 0.0
0.0,1,a-curv-i2,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 62, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 4,"","","","","","","","","",""
0.0,1,a-curv-i2,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.36,5,a-curv-i2,2022-23,Lowell-Lowell High,01600505," 1,358", 750, 55.2, 5.3, 30.6, 35.8, 0.0, 11.3, 0.0, 1.3, 0.0
0.32,1,a-curv-i2,2022-23,Lowell-The Career Academy,01600515, 41, 1, 2.4, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
8.173333333333334,5,a-curv-i2,2022-23,Ludlow-Ludlow Senior High,01610505, 362, 222, 61.3, 29.6, 48.1, 29.0, 0.0, 17.7, 0.0, 0.0, 0.0
8.0,5,a-curv-i2,2022-23,Lunenburg-Lunenburg High,01620505, 210, 126, 60.0, 35.7, 29.0, 11.4, 3.8, 27.6, 6.7, 0.5, 0.0
5.64,5,a-curv-i2,2022-23,Lynn-Classical High,01630505, 795, 336, 42.3, 16.0, 26.3, 10.6, 7.9, 17.9, 1.9, 19.5, 0.0
3.3333333333333335,3.33,a-curv-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 36, 9, 25.0, 2.8, 22.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
4.386666666666667,4.39,a-curv-i2,2022-23,Lynn-Lynn English High,01630510, 907, 298, 32.9, 13.3, 18.5, 7.6, 2.2, 14.7, 0.1, 14.8, 0.0
5.2,5,a-curv-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 523, 204, 39.0, 10.5, 18.0, 6.9, 0.0, 9.6, 0.0, 13.6, 12.2
11.853333333333333,5,a-curv-i2,2022-23,Lynnfield-Lynnfield High,01640505, 287, 255, 88.9, 32.8, 88.2, 20.2, 11.1, 55.4, 1.4, 14.6, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 98, 98, 100.0, 51.0, 100.0, 36.7, 33.7, 43.9, 8.2, 10.2, 0.0
9.653333333333334,5,a-curv-i2,2022-23,Malden-Malden High,01650505, 874, 633, 72.4, 10.0, 68.2, 15.0, 1.4, 17.8, 1.5, 3.1, 0.0
10.146666666666667,5,a-curv-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 209, 159, 76.1, 28.7, 61.7, 37.8, 1.9, 44.5, 0.0, 20.6, 0.0
8.72,5,a-curv-i2,2022-23,Mansfield-Mansfield High,01670505, 583, 381, 65.4, 17.7, 48.9, 14.1, 5.0, 32.2, 3.4, 3.4, 0.0
3.2666666666666666,3.27,a-curv-i2,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 159, 39, 24.5, 2.5, 20.1, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0
9.906666666666666,5,a-curv-i2,2022-23,Marblehead-Marblehead High,01680505, 444, 330, 74.3, 25.9, 67.1, 10.4, 11.9, 0.0, 0.0, 5.0, 0.0
7.173333333333333,5,a-curv-i2,2022-23,Marlborough-Marlborough High,01700505, 563, 303, 53.8, 29.0, 38.7, 9.6, 0.0, 22.2, 0.7, 2.0, 0.0
9.373333333333333,5,a-curv-i2,2022-23,Marshfield-Marshfield High,01710505, 556, 391, 70.3, 13.7, 64.6, 24.5, 5.6, 29.1, 9.5, 3.8, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 16, 16, 100.0, 100.0, 100.0, 68.8, 0.0, 75.0, 75.0, 0.0, 0.0
8.373333333333333,5,a-curv-i2,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 344, 216, 62.8, 26.2, 50.6, 16.6, 3.5, 27.3, 2.0, 14.5, 0.0
9.8,5,a-curv-i2,2022-23,Masconomet-Masconomet Regional High School,07050505, 517, 380, 73.5, 9.5, 66.2, 23.4, 13.2, 26.5, 4.4, 9.5, 0.0
9.933333333333334,5,a-curv-i2,2022-23,Mashpee-Mashpee Middle-High School,01720505, 204, 152, 74.5, 20.1, 70.6, 28.9, 1.5, 31.4, 11.3, 6.4, 0.0
12.546666666666665,5,a-curv-i2,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 135, 127, 94.1, 46.7, 93.3, 26.7, 28.9, 61.5, 0.0, 18.5, 0.0
9.106666666666666,5,a-curv-i2,2022-23,Maynard-Maynard High,01740505, 145, 99, 68.3, 22.1, 61.4, 23.4, 2.8, 17.2, 0.0, 7.6, 0.0
11.186666666666667,5,a-curv-i2,2022-23,Medfield-Medfield Senior High,01750505, 386, 324, 83.9, 18.4, 66.6, 17.9, 0.0, 57.0, 7.0, 15.8, 0.0
6.666666666666667,5,a-curv-i2,2022-23,Medford-Curtis-Tufts,01760510, 8, 4, 50.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
7.28,5,a-curv-i2,2022-23,Medford-Medford High,01760505, 599, 327, 54.6, 15.5, 42.7, 4.8, 12.2, 17.0, 1.0, 3.7, 0.0
12.04,5,a-curv-i2,2022-23,Medway-Medway High,01770505, 308, 278, 90.3, 26.3, 84.1, 41.6, 3.6, 45.1, 0.3, 10.7, 0.0
10.946666666666665,5,a-curv-i2,2022-23,Melrose-Melrose High,01780505, 447, 367, 82.1, 52.1, 55.5, 36.7, 3.1, 25.3, 0.0, 20.6, 0.0
9.946666666666665,5,a-curv-i2,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 299, 223, 74.6, 25.8, 61.2, 14.7, 5.4, 36.5, 4.3, 6.0, 0.0
6.706666666666666,5,a-curv-i2,2022-23,Methuen-Methuen High,01810505, 953, 479, 50.3, 10.4, 39.8, 8.0, 9.0, 17.6, 0.4, 1.4, 0.0
9.653333333333334,5,a-curv-i2,2022-23,Middleborough-Middleborough High,01820505, 398, 288, 72.4, 12.3, 58.0, 26.1, 8.8, 16.6, 2.0, 9.5, 0.0
8.266666666666667,5,a-curv-i2,2022-23,Milford-Milford High,01850505, 598, 371, 62.0, 23.1, 49.3, 27.1, 5.2, 16.7, 1.5, 4.7, 0.0
8.76,5,a-curv-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 239, 157, 65.7, 14.6, 54.4, 15.5, 4.6, 1.3, 1.3, 0.0, 0.0
11.653333333333334,5,a-curv-i2,2022-23,Millis-Millis High School,01870505, 167, 146, 87.4, 12.0, 86.2, 15.6, 17.4, 35.3, 2.4, 16.8, 0.0
12.866666666666667,5,a-curv-i2,2022-23,Milton-Milton High,01890505, 547, 528, 96.5, 32.2, 96.3, 12.4, 4.9, 44.1, 3.5, 19.4, 0.0
6.84,5,a-curv-i2,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 316, 162, 51.3, 11.1, 35.1, 33.9, 0.0, 15.5, 0.0, 0.0, 0.0
9.106666666666666,5,a-curv-i2,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 63, 43, 68.3, 33.3, 54.0, 30.2, 0.0, 19.0, 0.0, 0.0, 0.0
9.32,5,a-curv-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 239, 167, 69.9, 21.8, 49.4, 19.7, 7.5, 46.0, 2.1, 4.6, 0.0
5.026666666666667,5,a-curv-i2,2022-23,Monson-Monson High School,01910505, 77, 29, 37.7, 14.3, 19.5, 14.3, 1.3, 0.0, 0.0, 2.6, 0.0
13.146666666666667,5,a-curv-i2,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 664, 655, 98.6, 18.7, 48.0, 50.5, 1.4, 0.0, 0.0, 93.5, 35.1
11.373333333333333,5,a-curv-i2,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 184, 157, 85.3, 37.5, 72.8, 14.7, 8.2, 50.5, 1.6, 16.3, 0.0
13.013333333333332,5,a-curv-i2,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 169, 165, 97.6, 79.9, 83.4, 87.6, 0.0, 85.2, 7.7, 55.6, 0.0
8.626666666666667,5,a-curv-i2,2022-23,Nantucket-Nantucket High,01970505, 269, 174, 64.7, 17.8, 59.1, 12.3, 0.0, 14.5, 0.4, 0.0, 0.0
6.92,5,a-curv-i2,2022-23,Narragansett-Narragansett Regional High,07200505, 133, 69, 51.9, 16.5, 33.8, 23.3, 1.5, 30.1, 0.0, 0.0, 0.0
10.733333333333333,5,a-curv-i2,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 333, 268, 80.5, 18.9, 54.4, 9.6, 0.0, 17.7, 0.0, 44.7, 32.1
11.16,5,a-curv-i2,2022-23,Nashoba-Nashoba Regional,07250505, 416, 348, 83.7, 8.4, 82.9, 18.0, 16.1, 41.3, 1.7, 2.2, 0.0
9.546666666666665,5,a-curv-i2,2022-23,Natick-Natick High,01980505, 771, 552, 71.6, 19.5, 58.8, 17.9, 7.3, 37.5, 0.4, 3.8, 0.0
9.666666666666666,5,a-curv-i2,2022-23,Nauset-Nauset Regional High,06600505, 389, 282, 72.5, 21.1, 59.1, 27.0, 1.8, 37.5, 7.5, 5.4, 0.0
12.813333333333333,5,a-curv-i2,2022-23,Needham-Needham High,01990505, 798, 767, 96.1, 21.8, 94.6, 16.0, 0.0, 37.3, 1.8, 9.0, 0.0
8.48,5,a-curv-i2,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 129, 82, 63.6, 30.2, 48.8, 23.3, 0.0, 20.9, 0.0, 2.3, 0.0
6.12,5,a-curv-i2,2022-23,New Bedford-New Bedford High,02010505," 1,248", 573, 45.9, 8.0, 34.4, 7.6, 2.5, 10.5, 2.2, 7.4, 0.0
0.0,1,a-curv-i2,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 70, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
12.146666666666667,5,a-curv-i2,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 179, 163, 91.1, 48.6, 41.3, 30.2, 14.5, 56.4, 5.6, 73.7, 0.0
10.066666666666666,5,a-curv-i2,2022-23,Newburyport-Newburyport High,02040505, 421, 318, 75.5, 29.7, 57.5, 39.9, 1.4, 17.3, 3.1, 6.2, 0.0
11.253333333333334,5,a-curv-i2,2022-23,Newton-Newton North High,02070505," 1,019", 860, 84.4, 21.6, 82.5, 21.4, 0.0, 33.9, 0.9, 7.5, 0.0
9.466666666666667,5,a-curv-i2,2022-23,Newton-Newton South High,02070510, 920, 653, 71.0, 9.7, 61.1, 17.0, 0.0, 43.5, 2.2, 5.4, 0.0
6.72,5,a-curv-i2,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 274, 138, 50.4, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 12.8, 0.0
9.866666666666667,5,a-curv-i2,2022-23,North Adams-Drury High,02090505, 131, 97, 74.0, 45.0, 42.7, 29.8, 7.6, 33.6, 3.8, 0.0, 0.0
9.04,5,a-curv-i2,2022-23,North Andover-North Andover High,02110505, 658, 446, 67.8, 17.9, 58.4, 21.7, 8.8, 33.0, 2.3, 7.6, 0.0
8.746666666666666,5,a-curv-i2,2022-23,North Attleborough-North Attleboro High,02120505, 576, 378, 65.6, 15.3, 58.7, 14.8, 5.4, 27.8, 0.0, 0.2, 0.0
5.333333333333333,5,a-curv-i2,2022-23,North Brookfield-North Brookfield High,02150505, 50, 20, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
12.093333333333334,5,a-curv-i2,2022-23,North Middlesex-North Middlesex Regional,07350505, 355, 322, 90.7, 2.0, 86.5, 40.0, 6.2, 13.0, 0.6, 2.8, 0.0
9.76,5,a-curv-i2,2022-23,North Reading-North Reading High,02170505, 306, 224, 73.2, 14.4, 63.4, 24.2, 3.3, 30.4, 0.0, 2.6, 0.0
9.933333333333334,5,a-curv-i2,2022-23,Northampton-Northampton High,02100505, 444, 331, 74.5, 41.0, 58.3, 46.2, 6.8, 35.1, 0.0, 5.0, 0.0
6.693333333333333,5,a-curv-i2,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 267, 134, 50.2, 13.5, 25.8, 13.1, 0.0, 0.0, 0.0, 0.0, 21.7
9.746666666666666,5,a-curv-i2,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 633, 463, 73.1, 34.4, 63.0, 26.2, 2.5, 42.2, 4.4, 6.2, 0.0
4.226666666666667,4.23,a-curv-i2,2022-23,Northbridge-Northbridge High,02140505, 230, 73, 31.7, 10.0, 20.0, 4.8, 0.0, 10.0, 0.0, 0.0, 0.0
6.973333333333333,5,a-curv-i2,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 591, 309, 52.3, 3.9, 30.6, 3.6, 1.0, 1.7, 0.0, 4.9, 28.4
13.333333333333334,5,a-curv-i2,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 243, 243, 100.0, 71.2, 87.7, 56.4, 2.9, 59.7, 0.0, 54.3, 26.7
5.386666666666667,5,a-curv-i2,2022-23,Norton-Norton High,02180505, 329, 133, 40.4, 0.0, 21.9, 5.2, 2.7, 32.2, 0.9, 1.5, 0.0
12.893333333333334,5,a-curv-i2,2022-23,Norwell-Norwell High,02190505, 303, 293, 96.7, 16.8, 96.4, 17.2, 5.9, 53.8, 8.6, 15.8, 0.0
11.346666666666666,5,a-curv-i2,2022-23,Norwood-Norwood High,02200505, 503, 428, 85.1, 16.9, 84.9, 27.0, 3.2, 34.8, 2.4, 11.7, 0.0
12.906666666666666,5,a-curv-i2,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 278, 269, 96.8, 25.2, 56.8, 4.0, 2.5, 0.0, 0.0, 50.0, 45.3
10.706666666666667,5,a-curv-i2,2022-23,Old Rochester-Old Rochester Regional High,07400505, 319, 256, 80.3, 15.7, 73.7, 23.2, 16.0, 17.9, 2.5, 13.2, 0.0
6.666666666666667,5,a-curv-i2,2022-23,Oxford-Oxford High,02260505, 170, 85, 50.0, 20.0, 34.1, 5.3, 8.8, 14.1, 3.5, 4.1, 0.0
8.546666666666665,5,a-curv-i2,2022-23,Palmer-Palmer High,02270505, 128, 82, 64.1, 25.8, 32.8, 42.2, 0.0, 19.5, 9.4, 2.3, 0.0
6.1066666666666665,5,a-curv-i2,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 286, 131, 45.8, 11.5, 21.3, 3.1, 7.0, 17.8, 0.0, 0.7, 14.3
5.2266666666666675,5,a-curv-i2,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 143, 56, 39.2, 0.0, 37.8, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0
5.093333333333334,5,a-curv-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 34, 13, 38.2, 0.0, 35.3, 0.0, 0.0, 35.3, 0.0, 0.0, 0.0
5.8,5,a-curv-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 724, 315, 43.5, 18.0, 30.2, 20.6, 1.7, 18.8, 1.4, 2.1, 0.1
10.853333333333333,5,a-curv-i2,2022-23,Pembroke-Pembroke High School,02310505, 366, 298, 81.4, 14.8, 77.3, 18.9, 8.2, 35.8, 3.0, 7.7, 0.0
10.213333333333333,5,a-curv-i2,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 303, 232, 76.6, 17.2, 66.0, 23.8, 7.6, 28.4, 0.3, 3.3, 0.0
0.0,1,a-curv-i2,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 26, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 29, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 53, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
12.426666666666668,5,a-curv-i2,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 88, 82, 93.2, 30.7, 83.0, 48.9, 9.1, 20.5, 0.0, 4.5, 0.0
12.04,5,a-curv-i2,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 93, 84, 90.3, 35.5, 62.4, 40.9, 25.8, 33.3, 10.8, 12.9, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 41, 41, 100.0, 100.0, 100.0, 100.0, 0.0, 100.0, 22.0, 100.0, 0.0
8.386666666666667,5,a-curv-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 116, 73, 62.9, 6.9, 62.9, 1.7, 0.9, 0.9, 0.9, 0.0, 0.0
12.733333333333333,5,a-curv-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 88, 84, 95.5, 27.3, 95.5, 20.5, 0.0, 17.0, 1.1, 2.3, 0.0
7.906666666666666,5,a-curv-i2,2022-23,Pittsfield-Pittsfield High,02360505, 332, 197, 59.3, 22.6, 47.3, 11.4, 5.1, 21.7, 4.5, 11.1, 0.0
0.9466666666666667,1,a-curv-i2,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 28, 2, 7.1, 0.0, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
6.786666666666666,5,a-curv-i2,2022-23,Pittsfield-Taconic High,02360510, 381, 194, 50.9, 12.6, 37.8, 6.8, 0.0, 15.5, 1.6, 6.0, 8.1
8.28,5,a-curv-i2,2022-23,Plymouth-Plymouth North High,02390505, 614, 381, 62.1, 8.1, 58.1, 17.6, 5.9, 15.8, 2.8, 2.0, 0.0
8.0,5,a-curv-i2,2022-23,Plymouth-Plymouth South High,02390515, 498, 299, 60.0, 19.1, 54.0, 20.1, 7.2, 25.1, 2.0, 1.8, 0.0
11.24,5,a-curv-i2,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 134, 113, 84.3, 17.9, 64.9, 49.3, 15.7, 0.0, 0.0, 6.0, 0.0
12.413333333333332,5,a-curv-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 275, 256, 93.1, 92.0, 61.8, 20.0, 0.0, 23.3, 0.0, 34.2, 0.0
8.813333333333333,5,a-curv-i2,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 183, 121, 66.1, 50.3, 43.2, 37.2, 2.2, 24.0, 3.8, 0.0, 0.0
9.386666666666667,5,a-curv-i2,2022-23,Quincy-North Quincy High,02430510, 712, 501, 70.4, 33.7, 58.0, 24.7, 7.0, 33.8, 1.5, 3.1, 0.0
7.12,5,a-curv-i2,2022-23,Quincy-Quincy High,02430505, 753, 402, 53.4, 19.5, 42.2, 10.8, 2.0, 24.3, 1.1, 2.1, 0.0
5.8,5,a-curv-i2,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 138, 60, 43.5, 29.0, 26.1, 26.1, 0.0, 15.2, 5.1, 1.4, 0.0
9.613333333333333,5,a-curv-i2,2022-23,Randolph-Randolph High,02440505, 272, 196, 72.1, 4.0, 22.4, 43.4, 25.7, 11.8, 2.2, 0.0, 0.0
9.093333333333334,5,a-curv-i2,2022-23,Reading-Reading Memorial High,02460505, 585, 399, 68.2, 11.6, 56.4, 35.6, 9.1, 25.3, 1.7, 6.2, 0.0
7.1066666666666665,5,a-curv-i2,2022-23,Revere-CityLab Innovation High School,02480520, 30, 16, 53.3, 36.7, 13.3, 10.0, 6.7, 0.0, 3.3, 6.7, 0.0
10.333333333333334,5,a-curv-i2,2022-23,Revere-Revere High,02480505, 906, 702, 77.5, 18.5, 74.9, 14.6, 4.9, 14.9, 0.0, 10.5, 0.0
9.973333333333333,5,a-curv-i2,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 119, 89, 74.8, 0.0, 70.6, 25.2, 6.7, 12.6, 0.0, 0.0, 0.0
9.2,5,a-curv-i2,2022-23,Rockland-Rockland Senior High,02510505, 258, 178, 69.0, 25.6, 41.9, 45.0, 0.4, 26.0, 0.4, 1.9, 0.0
10.933333333333334,5,a-curv-i2,2022-23,Rockport-Rockport High,02520510, 128, 105, 82.0, 14.1, 73.4, 39.1, 4.7, 50.8, 0.0, 0.8, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 223, 223, 100.0, 80.7, 55.2, 31.8, 0.0, 97.8, 0.0, 72.2, 0.0
11.346666666666666,5,a-curv-i2,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 134, 114, 85.1, 47.8, 50.0, 50.7, 0.0, 64.9, 9.0, 0.0, 0.0
6.253333333333333,5,a-curv-i2,2022-23,Salem-New Liberty Innovation School,02580510, 32, 15, 46.9, 0.0, 0.0, 46.9, 0.0, 0.0, 0.0, 0.0, 0.0
6.973333333333333,5,a-curv-i2,2022-23,Salem-Salem High,02580505, 413, 216, 52.3, 16.5, 25.4, 15.0, 6.3, 22.8, 7.7, 9.7, 2.4
1.9066666666666667,1.91,a-curv-i2,2022-23,Salem-Salem Prep High School,02580515, 7, 1, 14.3, 0.0, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0
8.946666666666665,5,a-curv-i2,2022-23,Sandwich-Sandwich Middle High School,02610505, 298, 200, 67.1, 28.5, 59.1, 19.8, 13.4, 28.5, 0.0, 2.0, 0.0
11.573333333333332,5,a-curv-i2,2022-23,Saugus-Saugus High,02620505, 356, 309, 86.8, 22.2, 64.9, 39.9, 11.8, 23.0, 0.0, 52.8, 0.0
11.466666666666667,5,a-curv-i2,2022-23,Scituate-Scituate High School,02640505, 401, 345, 86.0, 44.9, 83.3, 43.6, 7.5, 35.2, 3.2, 11.0, 0.0
8.68,5,a-curv-i2,2022-23,Seekonk-Seekonk High,02650505, 261, 170, 65.1, 8.4, 58.6, 27.6, 8.8, 27.2, 0.8, 0.8, 0.0
10.026666666666667,5,a-curv-i2,2022-23,Sharon-Sharon High,02660505, 565, 425, 75.2, 10.1, 70.3, 19.5, 10.6, 43.9, 2.5, 3.5, 0.0
9.573333333333332,5,a-curv-i2,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 621, 446, 71.8, 5.6, 47.2, 1.6, 0.0, 0.0, 0.0, 0.0, 58.5
12.360000000000001,5,a-curv-i2,2022-23,Shrewsbury-Shrewsbury High School,02710505, 885, 820, 92.7, 20.7, 92.2, 47.1, 1.7, 29.4, 1.4, 3.7, 0.0
7.533333333333333,5,a-curv-i2,2022-23,Silver Lake-Silver Lake Regional High,07600505, 506, 286, 56.5, 24.1, 48.4, 30.4, 4.5, 30.4, 0.0, 1.2, 4.9
6.026666666666667,5,a-curv-i2,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 93, 42, 45.2, 29.0, 24.7, 3.2, 3.2, 9.7, 1.1, 1.1, 0.0
7.693333333333333,5,a-curv-i2,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 492, 284, 57.7, 35.4, 44.9, 19.5, 4.7, 26.0, 3.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Somerville-Full Circle High School,02740510, 24, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
8.013333333333334,5,a-curv-i2,2022-23,Somerville-Somerville High,02740505, 589, 354, 60.1, 20.5, 55.2, 17.7, 2.4, 21.7, 0.0, 4.9, 3.4
5.8533333333333335,5,a-curv-i2,2022-23,South Hadley-South Hadley High,02780505, 253, 111, 43.9, 16.6, 33.6, 13.4, 3.6, 15.8, 1.6, 0.0, 0.4
6.053333333333333,5,a-curv-i2,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 381, 173, 45.4, 11.5, 19.2, 24.4, 3.1, 3.1, 0.0, 0.0, 17.6
10.946666666666665,5,a-curv-i2,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 145, 119, 82.1, 24.8, 71.0, 5.5, 12.4, 22.1, 0.0, 0.0, 0.0
9.026666666666667,5,a-curv-i2,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 313, 212, 67.7, 0.0, 50.8, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0
0.0,1,a-curv-i2,2022-23,Southbridge-Southbridge Academy,02770525, 1,"","","","","","","","","",""
8.026666666666667,5,a-curv-i2,2022-23,Southbridge-Southbridge High School,02770515, 206, 124, 60.2, 5.8, 46.1, 12.1, 14.6, 15.5, 0.0, 0.0, 0.0
12.32,5,a-curv-i2,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 751, 694, 92.4, 21.0, 58.5, 30.2, 0.0, 9.6, 2.7, 60.6, 50.1
10.520000000000001,5,a-curv-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 76, 60, 78.9, 34.2, 65.8, 2.6, 0.0, 35.5, 7.9, 26.3, 0.0
7.04,5,a-curv-i2,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 553, 292, 52.8, 13.2, 26.9, 12.7, 0.0, 0.0, 0.0, 0.0, 31.1
4.346666666666667,4.35,a-curv-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 190, 62, 32.6, 1.6, 21.1, 16.3, 5.8, 5.8, 0.0, 1.1, 0.0
10.146666666666667,5,a-curv-i2,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 163, 124, 76.1, 35.0, 76.1, 0.0, 0.0, 20.9, 0.0, 0.0, 0.0
6.96,5,a-curv-i2,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 184, 96, 52.2, 27.2, 21.7, 19.6, 0.0, 29.9, 0.0, 0.0, 0.0
6.026666666666667,5,a-curv-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 84, 38, 45.2, 27.4, 14.3, 1.2, 0.0, 0.0, 13.1, 13.1, 0.0
3.1733333333333333,3.17,a-curv-i2,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 21, 5, 23.8, 4.8, 19.0, 4.8, 0.0, 4.8, 0.0, 0.0, 0.0
13.333333333333334,5,a-curv-i2,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 17, 17, 100.0, 0.0, 29.4, 11.8, 0.0, 17.6, 11.8, 29.4, 0.0
8.52,5,a-curv-i2,2022-23,Springfield-High School Of Commerce,02810510, 452, 289, 63.9, 12.6, 38.5, 9.7, 2.2, 21.2, 10.6, 17.9, 0.0
8.213333333333333,5,a-curv-i2,2022-23,Springfield-John J Duggan Academy,02810320, 138, 85, 61.6, 21.7, 52.2, 0.0, 12.3, 15.9, 0.0, 1.4, 0.0
0.0,1,a-curv-i2,2022-23,Springfield-Liberty Preparatory Academy,02810560, 6, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
6.386666666666667,5,a-curv-i2,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 622, 298, 47.9, 9.8, 37.8, 2.6, 1.4, 6.3, 1.8, 1.8, 10.1
4.760000000000001,4.76,a-curv-i2,2022-23,Springfield-Springfield Central High,02810500, 855, 305, 35.7, 21.9, 21.5, 6.9, 1.5, 13.0, 0.6, 1.3, 0.0
1.24,1.24,a-curv-i2,2022-23,Springfield-Springfield High School,02810570, 43, 4, 9.3, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
4.319999999999999,4.32,a-curv-i2,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 429, 139, 32.4, 13.8, 14.0, 7.5, 0.7, 9.1, 5.8, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Springfield-Springfield Public Day High School,02810550, 23, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
8.266666666666667,5,a-curv-i2,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 137, 85, 62.0, 31.4, 55.5, 11.7, 1.5, 24.8, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Springfield-The Springfield Virtual School,02810705, 48, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
9.786666666666667,5,a-curv-i2,2022-23,Stoneham-Stoneham High,02840505, 297, 218, 73.4, 44.1, 63.6, 26.3, 3.7, 20.2, 0.0, 6.1, 0.0
7.373333333333333,5,a-curv-i2,2022-23,Stoughton-Stoughton High,02850505, 503, 278, 55.3, 7.6, 48.5, 13.9, 10.9, 12.5, 0.0, 0.0, 0.0
13.293333333333333,5,a-curv-i2,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 392, 391, 99.7, 99.7, 99.7, 96.2, 8.7, 99.5, 39.5, 87.0, 0.0
11.32,5,a-curv-i2,2022-23,Sutton-Sutton High School,02900510, 186, 158, 84.9, 67.2, 65.1, 21.0, 0.0, 8.1, 0.0, 8.1, 0.0
9.293333333333333,5,a-curv-i2,2022-23,Swampscott-Swampscott High,02910505, 310, 216, 69.7, 32.6, 54.8, 20.6, 6.5, 43.5, 6.1, 3.9, 0.0
4.626666666666667,4.63,a-curv-i2,2022-23,Swansea-Joseph Case High,02920505, 262, 91, 34.7, 7.6, 8.0, 21.8, 10.7, 3.8, 2.7, 0.0, 0.0
2.8266666666666667,2.83,a-curv-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 886, 188, 21.2, 5.0, 17.6, 1.1, 0.6, 3.0, 0.0, 0.2, 0.0
9.520000000000001,5,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 336, 240, 71.4, 36.9, 65.8, 22.0, 0.6, 18.5, 3.9, 1.2, 0.0
3.6533333333333333,3.65,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 223, 61, 27.4, 5.4, 24.2, 2.2, 0.0, 1.3, 0.0, 0.0, 0.0
1.0933333333333333,1.09,a-curv-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 73, 6, 8.2, 0.0, 0.0, 8.2, 0.0, 0.0, 0.0, 0.0, 0.0
6.293333333333334,5,a-curv-i2,2022-23,Taunton-Taunton High,02930505, 998, 471, 47.2, 10.7, 42.6, 9.9, 3.1, 16.6, 0.4, 2.8, 0.0
9.533333333333333,5,a-curv-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 386, 276, 71.5, 20.7, 58.8, 29.3, 4.9, 29.8, 0.0, 4.1, 0.0
11.653333333333334,5,a-curv-i2,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 444, 388, 87.4, 5.6, 60.4, 26.1, 0.0, 13.3, 0.0, 64.9, 39.2
7.933333333333334,5,a-curv-i2,2022-23,Triton-Triton Regional High School,07730505, 316, 188, 59.5, 7.6, 54.7, 19.0, 1.6, 14.2, 0.0, 6.3, 0.0
10.2,5,a-curv-i2,2022-23,Tyngsborough-Tyngsborough High School,03010505, 200, 153, 76.5, 11.5, 67.0, 16.0, 20.0, 5.0, 0.0, 2.5, 0.0
7.973333333333333,5,a-curv-i2,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 333, 199, 59.8, 4.8, 39.9, 0.0, 0.0, 0.0, 0.0, 0.0, 40.8
0.36000000000000004,1,a-curv-i2,2022-23,Uxbridge-Gateway to College,03040515, 37, 1, 2.7, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
10.479999999999999,5,a-curv-i2,2022-23,Uxbridge-Uxbridge High,03040505, 215, 169, 78.6, 40.9, 54.4, 47.9, 4.2, 15.3, 0.0, 19.1, 0.0
8.666666666666666,5,a-curv-i2,2022-23,Wachusett-Wachusett Regional High,07750505, 973, 632, 65.0, 12.0, 60.2, 6.3, 4.5, 26.5, 1.6, 2.5, 0.0
10.173333333333334,5,a-curv-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 393, 300, 76.3, 21.1, 69.5, 20.1, 5.1, 23.2, 2.8, 1.0, 0.0
8.04,5,a-curv-i2,2022-23,Walpole-Walpole High,03070505, 501, 302, 60.3, 19.2, 45.1, 7.8, 8.6, 19.6, 0.0, 2.6, 0.0
7.2,5,a-curv-i2,2022-23,Waltham-Waltham Sr High,03080505, 816, 441, 54.0, 17.6, 29.0, 11.8, 4.5, 32.0, 1.7, 7.0, 1.6
6.2266666666666675,5,a-curv-i2,2022-23,Ware-Ware Junior/Senior High School,03090505, 120, 56, 46.7, 15.8, 44.2, 15.0, 0.8, 0.8, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
5.7733333333333325,5,a-curv-i2,2022-23,Wareham-Wareham Senior High,03100505, 180, 78, 43.3, 28.9, 24.4, 11.7, 1.7, 23.3, 11.1, 7.8, 0.0
8.133333333333333,5,a-curv-i2,2022-23,Watertown-Watertown High,03140505, 333, 203, 61.0, 7.5, 58.3, 26.7, 5.4, 10.8, 1.5, 2.1, 0.0
11.453333333333335,5,a-curv-i2,2022-23,Wayland-Wayland High School,03150505, 397, 341, 85.9, 11.8, 80.9, 17.6, 15.1, 25.4, 2.3, 0.0, 0.0
6.239999999999999,5,a-curv-i2,2022-23,Webster-Bartlett High School,03160505, 158, 74, 46.8, 10.1, 19.6, 31.0, 6.3, 9.5, 0.0, 2.5, 0.0
12.226666666666667,5,a-curv-i2,2022-23,Wellesley-Wellesley Sr High,03170505, 708, 649, 91.7, 0.3, 85.9, 64.1, 6.6, 30.2, 0.3, 9.3, 0.0
9.413333333333332,5,a-curv-i2,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 119, 84, 70.6, 13.4, 65.5, 42.0, 1.7, 10.9, 5.9, 0.0, 0.0
10.413333333333332,5,a-curv-i2,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 201, 157, 78.1, 26.9, 68.7, 34.3, 6.5, 2.0, 0.0, 1.0, 0.0
8.360000000000001,5,a-curv-i2,2022-23,West Springfield-West Springfield High,03320505, 547, 343, 62.7, 27.8, 42.0, 34.9, 0.9, 24.3, 2.7, 4.4, 1.1
8.8,5,a-curv-i2,2022-23,Westborough-Westborough High,03210505, 553, 365, 66.0, 5.4, 60.0, 28.6, 7.4, 21.7, 4.3, 4.9, 0.0
7.8133333333333335,5,a-curv-i2,2022-23,Westfield-Westfield High,03250505, 483, 283, 58.6, 30.4, 42.7, 14.1, 2.7, 24.2, 0.6, 3.5, 0.0
1.9333333333333333,1.93,a-curv-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 249, 36, 14.5, 7.6, 3.6, 0.0, 0.0, 6.8, 0.0, 0.0, 0.0
0.0,1,a-curv-i2,2022-23,Westfield-Westfield Virtual School,03250705, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
9.226666666666667,5,a-curv-i2,2022-23,Westford-Westford Academy,03260505, 798, 552, 69.2, 16.4, 59.8, 28.8, 5.6, 33.6, 4.9, 0.5, 0.0
12.866666666666667,5,a-curv-i2,2022-23,Weston-Weston High,03300505, 314, 303, 96.5, 5.4, 93.0, 55.4, 8.0, 74.2, 4.8, 16.6, 0.0
6.666666666666667,5,a-curv-i2,2022-23,Westport-Westport Middle-High School,03310515, 154, 77, 50.0, 16.2, 39.6, 15.6, 3.2, 3.2, 0.0, 0.6, 0.0
10.266666666666667,5,a-curv-i2,2022-23,Westwood-Westwood High,03350505, 488, 376, 77.0, 21.7, 65.4, 23.6, 10.0, 51.4, 8.0, 4.7, 0.0
7.586666666666667,5,a-curv-i2,2022-23,Weymouth-Weymouth High School,03360505, 867, 493, 56.9, 11.0, 51.7, 11.3, 4.3, 16.5, 0.6, 4.6, 2.0
3.1199999999999997,3.12,a-curv-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 548, 128, 23.4, 18.6, 16.1, 9.7, 0.0, 8.9, 0.0, 0.0, 0.0
13.306666666666667,5,a-curv-i2,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 639, 638, 99.8, 32.1, 99.5, 1.6, 1.7, 18.3, 0.0, 58.8, 57.7
9.360000000000001,5,a-curv-i2,2022-23,Wilmington-Wilmington High,03420505, 359, 252, 70.2, 22.0, 61.0, 32.9, 2.2, 33.7, 0.0, 6.1, 0.0
0.0,1,a-curv-i2,2022-23,Winchendon-Murdock Academy for Success,03430405, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
5.413333333333333,5,a-curv-i2,2022-23,Winchendon-Murdock High School,03430515, 101, 41, 40.6, 24.8, 22.8, 8.9, 5.9, 4.0, 0.0, 0.0, 0.0
12.866666666666667,5,a-curv-i2,2022-23,Winchester-Winchester High School,03440505, 688, 664, 96.5, 25.3, 94.9, 69.3, 8.9, 35.9, 0.0, 13.8, 0.0
11.106666666666666,5,a-curv-i2,2022-23,Winthrop-Winthrop High School,03460505, 275, 229, 83.3, 34.9, 71.6, 26.5, 1.8, 37.8, 0.0, 0.0, 0.0
8.04,5,a-curv-i2,2022-23,Woburn-Woburn High,03470505, 557, 336, 60.3, 11.0, 45.8, 17.4, 5.2, 28.9, 0.9, 12.4, 0.0
6.293333333333334,5,a-curv-i2,2022-23,Worcester-Burncoat Senior High,03480503, 570, 269, 47.2, 20.5, 26.7, 9.8, 3.3, 17.5, 8.4, 8.1, 0.0
7.426666666666667,5,a-curv-i2,2022-23,Worcester-Claremont Academy,03480350, 149, 83, 55.7, 10.7, 24.2, 18.8, 2.0, 26.8, 0.7, 12.8, 0.0
6.48,5,a-curv-i2,2022-23,Worcester-Doherty Memorial High,03480512, 621, 302, 48.6, 13.8, 30.6, 15.1, 4.5, 19.6, 3.7, 11.9, 0.0
5.506666666666666,5,a-curv-i2,2022-23,Worcester-North High,03480515, 624, 258, 41.3, 14.1, 19.6, 7.2, 3.7, 6.1, 5.9, 4.2, 0.0
6.16,5,a-curv-i2,2022-23,Worcester-South High Community,03480520, 770, 356, 46.2, 13.9, 29.2, 19.6, 6.2, 16.4, 1.6, 5.8, 0.0
10.626666666666667,5,a-curv-i2,2022-23,Worcester-University Pk Campus School,03480285, 74, 59, 79.7, 54.1, 29.7, 20.3, 24.3, 32.4, 1.4, 24.3, 0.0
5.88,5,a-curv-i2,2022-23,Worcester-Worcester Technical High,03480605, 690, 304, 44.1, 19.3, 27.0, 5.8, 1.2, 11.4, 1.4, 9.0, 0.0
11.213333333333333,5,a-curv-i2,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 182, 153, 84.1, 31.9, 68.1, 28.0, 0.0, 35.7, 16.5, 30.8, 0.0
10.520000000000001,5,a-curv-i2,2021-22,Abington-Abington High,00010505, 294, 232, 78.9, 13.6, 78.2, 6.8, 0.0, 14.3, 0.7, 0.0, 0.0
11.360000000000001,5,a-curv-i2,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 115, 98, 85.2, 1.7, 51.3, 35.7, 23.5, 60.0, 2.6, 37.4, 0.0

1 Raw likert calculation Likert Score Admin Data Item Academic Year School Name DESE ID # Grade 11 and 12 Students # Students Completing Advanced % Students Completing Advanced % ELA % Math % Science and Technology % Computer and Information Science % History and Social Sciences % Arts % All Other Subjects % All Other Subjects
2 11.16 5 a-curv-i2 2022-23 Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School 04450105 178 149 83.7 35.4 66.3 30.3 0.0 33.1 13.5 24.2 0.0
3 11.16 5 a-curv-i2 2022-23 Abington-Abington High 00010505 282 236 83.7 14.9 83.7 5.0 0.0 11.3 0.7 0.0 0.0
4 10.946666666666665 5 a-curv-i2 2022-23 Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School 04120530 117 96 82.1 0.0 44.4 34.2 17.9 64.1 0.0 8.5 0.0
5 9.866666666666667 5 a-curv-i2 2022-23 Acton-Boxborough-Acton-Boxborough Regional High 06000505 869 643 74.0 20.0 65.0 40.7 7.1 44.0 0.0 10.7 0.0
6 12.533333333333333 5 a-curv-i2 2022-23 Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School 04300305 267 251 94.0 5.6 89.9 27.0 9.4 46.4 1.9 5.2 0.0
7 8.093333333333334 5 a-curv-i2 2022-23 Agawam-Agawam High 00050505 484 294 60.7 28.3 48.8 31.2 4.3 16.3 0.0 0.0 0.0
8 10.28 5 a-curv-i2 2022-23 Amesbury-Amesbury High 00070505 218 168 77.1 17.0 54.6 21.6 0.0 41.3 4.6 6.4 0.0
9 0.0 1 a-curv-i2 2022-23 Amesbury-Amesbury Innovation High School 00070515 20 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
10 8.04 5 a-curv-i2 2022-23 Amherst-Pelham-Amherst Regional High 06050505 433 261 60.3 0.7 52.7 19.2 2.1 15.7 0.0 11.3 0.0
11 10.413333333333332 5 a-curv-i2 2022-23 Andover-Andover High 00090505 841 657 78.1 43.3 71.8 34.5 6.1 27.1 3.1 8.3 0.0
12 7.48 5 a-curv-i2 2022-23 Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School 35090305 98 55 56.1 36.7 33.7 0.0 0.0 24.5 12.2 36.7 0.0
13 11.093333333333334 5 a-curv-i2 2022-23 Arlington-Arlington High 00100505 772 642 83.2 39.8 75.3 32.0 9.8 44.9 2.5 12.4 0.0
14 9.4 5 a-curv-i2 2022-23 Ashburnham-Westminster-Oakmont Regional High School 06100505 319 225 70.5 23.5 63.3 6.0 0.0 9.4 0.0 4.4 0.0
15 9.293333333333333 5 a-curv-i2 2022-23 Ashland-Ashland High 00140505 399 278 69.7 12.3 65.4 24.6 12.8 0.3 0.0 0.0 0.0
16 10.813333333333333 5 a-curv-i2 2022-23 Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School 08010605 534 433 81.1 5.2 50.2 17.8 0.0 3.9 0.0 28.8 28.1
17 8.466666666666667 5 a-curv-i2 2022-23 Athol-Royalston-Athol High 06150505 178 113 63.5 20.8 35.4 7.9 0.6 32.6 0.0 0.0 0.0
18 10.186666666666667 5 a-curv-i2 2022-23 Atlantis Charter (District)-Atlantis Charter School 04910550 140 107 76.4 24.3 60.7 36.4 0.0 27.9 0.0 0.0 0.0
19 0.0 1 a-curv-i2 2022-23 Attleboro-Attleboro Community Academy 00160515 52 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
20 7.546666666666667 5 a-curv-i2 2022-23 Attleboro-Attleboro High 00160505 832 471 56.6 12.0 40.1 8.4 9.0 33.7 0.8 0.1 0.0
21 5.7733333333333325 5 a-curv-i2 2022-23 Attleboro-Attleboro Virtual Academy 00160705 30 13 43.3 3.3 43.3 3.3 0.0 0.0 0.0 0.0 0.0
22 7.573333333333333 5 a-curv-i2 2022-23 Auburn-Auburn Senior High 00170505 368 209 56.8 11.7 44.8 20.1 2.7 24.2 2.2 3.5 0.0
23 8.693333333333333 5 a-curv-i2 2022-23 Avon-Avon Middle High School 00180510 92 60 65.2 9.8 64.1 10.9 0.0 0.0 0.0 0.0 0.0
24 8.306666666666667 5 a-curv-i2 2022-23 Ayer Shirley School District-Ayer Shirley Regional High School 06160505 183 114 62.3 23.5 48.1 20.2 7.1 8.2 0.0 4.4 0.0
25 6.666666666666667 5 a-curv-i2 2022-23 Barnstable-Barnstable High 00200505 652 326 50.0 12.0 39.4 10.3 4.1 23.2 2.0 5.1 0.0
26 13.053333333333335 5 a-curv-i2 2022-23 Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School 35020405 97 95 97.9 0.0 48.5 49.5 0.0 0.0 0.0 0.0 0.0
27 9.826666666666666 5 a-curv-i2 2022-23 Bedford-Bedford High 00230505 392 289 73.7 15.3 71.4 25.8 3.8 0.0 0.0 3.3 0.0
28 8.906666666666666 5 a-curv-i2 2022-23 Belchertown-Belchertown High 00240505 337 225 66.8 7.1 49.9 15.4 3.6 23.1 0.0 0.3 0.0
29 11.360000000000001 5 a-curv-i2 2022-23 Bellingham-Bellingham High School 00250505 271 231 85.2 21.0 77.1 46.5 0.0 1.1 0.0 0.0 0.0
30 0.0 1 a-curv-i2 2022-23 Bellingham-Keough Memorial Academy 00250510 11 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
31 11.479999999999999 5 a-curv-i2 2022-23 Belmont-Belmont High 00260505 648 558 86.1 7.9 77.5 70.5 12.7 42.6 5.9 1.2 0.0
32 8.613333333333333 5 a-curv-i2 2022-23 Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School 04140305 65 42 64.6 43.1 29.2 4.6 9.2 18.5 3.1 7.7 0.0
33 8.4 5 a-curv-i2 2022-23 Berkshire Hills-Monument Mt Regional High 06180505 219 138 63.0 35.6 38.4 26.0 10.0 5.9 7.8 5.0 0.0
34 9.813333333333333 5 a-curv-i2 2022-23 Berlin-Boylston-Tahanto Regional High 06200505 140 103 73.6 43.6 65.7 7.1 7.1 20.7 0.0 0.0 0.0
35 6.653333333333333 5 a-curv-i2 2022-23 Beverly-Beverly High 00300505 629 314 49.9 13.0 37.4 8.1 0.0 14.9 1.9 16.1 0.0
36 10.639999999999999 5 a-curv-i2 2022-23 Billerica-Billerica Memorial High School 00310505 545 435 79.8 16.3 70.1 24.8 29.7 22.8 0.0 9.4 0.0
37 9.026666666666667 5 a-curv-i2 2022-23 Blackstone Valley Regional Vocational Technical-Blackstone Valley 08050605 603 408 67.7 14.4 50.2 19.7 1.2 16.3 1.5 0.5 23.2
38 8.653333333333334 5 a-curv-i2 2022-23 Blackstone-Millville-Blackstone Millville RHS 06220505 185 120 64.9 21.1 37.8 40.5 3.2 5.9 0.5 0.0 0.0
39 8.946666666666665 5 a-curv-i2 2022-23 Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical 08060605 431 289 67.1 9.0 58.2 26.9 0.0 5.6 0.0 0.0 18.3
40 12.133333333333333 5 a-curv-i2 2022-23 Boston Collegiate Charter (District)-Boston Collegiate Charter School 04490305 145 132 91.0 31.0 84.1 67.6 13.1 22.1 11.7 6.9 0.0
41 2.1599999999999997 2.16 a-curv-i2 2022-23 Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School 04240505 315 51 16.2 1.0 12.7 4.8 0.0 0.0 0.3 0.3 0.0
42 7.493333333333334 5 a-curv-i2 2022-23 Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School 04110305 137 77 56.2 27.7 35.8 52.6 0.0 14.6 0.0 4.4 0.0
43 11.333333333333334 5 a-curv-i2 2022-23 Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School 04160305 173 147 85.0 42.2 68.8 66.5 12.1 28.3 0.0 7.5 0.0
44 11.24 5 a-curv-i2 2022-23 Boston-Another Course To College 00350541 121 102 84.3 32.2 62.0 28.9 52.1 33.9 13.2 6.6 0.0
45 0.0 1 a-curv-i2 2022-23 Boston-Boston Adult Tech Academy 00350548 168 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
46 6.546666666666667 5 a-curv-i2 2022-23 Boston-Boston Arts Academy 00350546 226 111 49.1 0.9 45.6 10.6 0.0 2.2 0.4 0.9 0.0
47 1.84 1.84 a-curv-i2 2022-23 Boston-Boston Collaborative High School 00350755 123 17 13.8 0.8 13.8 0.0 0.0 0.0 0.0 0.0 0.0
48 7.1866666666666665 5 a-curv-i2 2022-23 Boston-Boston Community Leadership Academy 00350558 206 111 53.9 29.6 35.9 0.0 0.0 0.0 0.0 14.1 0.0
49 5.6 5 a-curv-i2 2022-23 Boston-Boston International High School & Newcomers Academy 00350507 157 66 42.0 0.0 39.5 0.0 6.4 8.9 0.0 0.0 0.0
50 13.24 5 a-curv-i2 2022-23 Boston-Boston Latin Academy 00350545 582 578 99.3 21.8 93.8 16.7 18.4 66.7 0.0 6.5 0.0
51 13.32 5 a-curv-i2 2022-23 Boston-Boston Latin School 00350560 797 796 99.9 35.0 96.5 52.7 26.5 52.6 6.4 19.7 0.0
52 9.76 5 a-curv-i2 2022-23 Boston-Brighton High School 00350505 254 186 73.2 9.4 55.1 37.0 3.1 5.5 2.4 7.5 0.0
53 7.933333333333334 5 a-curv-i2 2022-23 Boston-Burke High School 00350525 168 100 59.5 17.9 57.7 0.0 9.5 16.7 0.6 1.8 0.0
54 0.0 1 a-curv-i2 2022-23 Boston-Carter School 00350036 11 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
55 6.213333333333334 5 a-curv-i2 2022-23 Boston-Charlestown High School 00350515 356 166 46.6 5.9 42.1 8.1 3.4 11.5 0.3 7.9 0.0
56 0.0 1 a-curv-i2 2022-23 Boston-Community Academy 00350518 33 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
57 5.453333333333333 5 a-curv-i2 2022-23 Boston-Community Academy of Science and Health 00350581 149 61 40.9 22.8 29.5 5.4 0.0 6.7 0.0 0.0 0.0
58 8.586666666666668 5 a-curv-i2 2022-23 Boston-Dearborn 6-12 STEM Academy 00350074 163 105 64.4 8.6 39.9 5.5 22.7 5.5 3.7 8.0 0.0
59 4.413333333333333 4.41 a-curv-i2 2022-23 Boston-East Boston High School 00350530 532 176 33.1 3.6 6.4 2.3 22.4 2.3 0.0 0.2 0.0
60 7.253333333333333 5 a-curv-i2 2022-23 Boston-English High School 00350535 272 148 54.4 10.3 50.0 8.5 0.0 7.0 0.0 0.0 0.0
61 6.239999999999999 5 a-curv-i2 2022-23 Boston-Excel High School 00350522 205 96 46.8 20.5 38.5 5.4 13.2 0.0 0.0 0.0 0.0
62 10.96 5 a-curv-i2 2022-23 Boston-Fenway High School 00350540 174 143 82.2 28.7 44.3 1.1 4.0 0.0 0.0 12.1 0.0
63 1.24 1.24 a-curv-i2 2022-23 Boston-Greater Egleston High School 00350543 75 7 9.3 0.0 0.0 0.0 9.3 0.0 0.0 0.0 0.0
64 6.466666666666667 5 a-curv-i2 2022-23 Boston-Henderson K-12 Inclusion School Upper 00350426 132 64 48.5 18.2 34.8 13.6 7.6 21.2 0.8 0.0 0.0
65 0.0 1 a-curv-i2 2022-23 Boston-Horace Mann School for the Deaf Hard of Hearing 00350750 8 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
66 13.08 5 a-curv-i2 2022-23 Boston-Lyon High School 00350655 53 52 98.1 96.2 45.3 0.0 0.0 41.5 0.0 0.0 0.0
67 6.706666666666666 5 a-curv-i2 2022-23 Boston-Madison Park Technical Vocational High School 00350537 459 231 50.3 8.1 47.3 9.6 0.9 5.4 0.7 5.7 8.5
68 11.626666666666667 5 a-curv-i2 2022-23 Boston-Margarita Muniz Academy 00350549 133 116 87.2 0.0 54.1 0.0 0.0 0.0 0.0 34.6 0.0
69 0.0 1 a-curv-i2 2022-23 Boston-McKinley Schools 00350363 42 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
70 12.08 5 a-curv-i2 2022-23 Boston-New Mission High School 00350542 212 192 90.6 42.5 88.2 10.8 11.3 22.2 0.0 12.3 0.0
71 13.133333333333333 5 a-curv-i2 2022-23 Boston-O'Bryant School of Math & Science 00350575 610 601 98.5 52.6 81.5 41.6 20.2 49.5 0.0 16.2 0.0
72 13.186666666666667 5 a-curv-i2 2022-23 Boston-Quincy Upper School 00350565 94 93 98.9 98.9 97.9 98.9 23.4 97.9 98.9 96.8 0.0
73 9.746666666666666 5 a-curv-i2 2022-23 Boston-Snowden International High School 00350690 201 147 73.1 40.8 61.7 29.4 0.0 32.8 15.9 42.8 0.0
74 5.053333333333333 5 a-curv-i2 2022-23 Boston-TechBoston Academy 00350657 282 107 37.9 7.1 27.7 8.2 5.3 5.7 5.7 1.1 0.0
75 9.133333333333333 5 a-curv-i2 2022-23 Bourne-Bourne High School 00360505 181 124 68.5 12.7 54.1 11.0 7.2 25.4 0.0 0.6 0.0
76 9.32 5 a-curv-i2 2022-23 Braintree-Braintree High 00400505 783 547 69.9 8.8 67.8 20.9 7.4 27.6 2.6 5.5 0.0
77 7.760000000000001 5 a-curv-i2 2022-23 Bridgewater-Raynham-Bridgewater-Raynham Regional 06250505 639 372 58.2 20.3 51.0 16.0 0.0 14.9 0.9 0.0 0.0
78 0.0 1 a-curv-i2 2022-23 Bridgewater-Raynham-Therapeutic Day School 06250415 5
79 4.1466666666666665 4.15 a-curv-i2 2022-23 Bristol County Agricultural-Bristol County Agricultural High 09100705 209 65 31.1 0.0 17.7 22.5 0.0 0.0 0.0 0.0 6.2
80 9.28 5 a-curv-i2 2022-23 Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical 08100605 635 442 69.6 9.0 17.2 0.0 0.0 0.0 0.0 44.7 33.1
81 0.3466666666666667 1 a-curv-i2 2022-23 Brockton-Brockton Champion High School 00440515 39 1 2.6 0.0 2.6 0.0 0.0 0.0 0.0 0.0 0.0
82 7.333333333333333 5 a-curv-i2 2022-23 Brockton-Brockton High 00440505 1,508 830 55.0 12.3 49.5 10.6 4.1 10.1 3.1 8.7 0.0
83 3.3333333333333335 3.33 a-curv-i2 2022-23 Brockton-Brockton Virtual Learning Academy 00440705 32 8 25.0 0.0 25.0 0.0 0.0 3.1 0.0 0.0 0.0
84 0.0 1 a-curv-i2 2022-23 Brockton-Edison Academy 00440520 157 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
85 0.0 1 a-curv-i2 2022-23 Brockton-Huntington Therapeutic Day School 00440400 12 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
86 12.906666666666666 5 a-curv-i2 2022-23 Brooke Charter School (District)-Brooke Charter School 04280305 218 211 96.8 53.7 75.7 75.7 54.6 0.0 0.0 27.1 0.0
87 12.386666666666667 5 a-curv-i2 2022-23 Brookline-Brookline High 00460505 991 921 92.9 0.0 90.6 55.8 6.6 19.6 3.1 10.7 0.0
88 9.866666666666667 5 a-curv-i2 2022-23 Burlington-Burlington High 00480505 439 325 74.0 23.9 59.5 34.6 23.7 31.0 1.1 3.9 0.0
89 9.453333333333335 5 a-curv-i2 2022-23 Cambridge-Cambridge Rindge and Latin 00490506 899 637 70.9 25.4 53.7 31.8 14.3 35.9 3.8 10.0 3.0
90 10.493333333333334 5 a-curv-i2 2022-23 Canton-Canton High 00500505 414 326 78.7 44.4 60.6 20.3 3.1 27.5 2.4 2.9 0.0
91 12.533333333333333 5 a-curv-i2 2022-23 Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical 08150605 318 299 94.0 11.0 11.9 0.0 0.0 9.4 0.0 92.8 34.3
92 8.96 5 a-curv-i2 2022-23 Carver-Carver Middle/High School 00520405 192 129 67.2 9.9 51.0 30.2 9.4 12.5 0.0 0.0 0.0
93 9.4 5 a-curv-i2 2022-23 Central Berkshire-Wahconah Regional High 06350505 241 170 70.5 22.4 61.4 17.8 0.0 17.4 2.9 3.7 0.0
94 9.546666666666665 5 a-curv-i2 2022-23 Chelmsford-Chelmsford High 00560505 661 473 71.6 18.8 62.3 23.0 9.7 28.6 0.2 13.2 0.0
95 8.506666666666666 5 a-curv-i2 2022-23 Chelsea-Chelsea High 00570505 661 422 63.8 25.1 52.2 6.5 0.6 16.5 0.8 14.5 0.0
96 0.92 1 a-curv-i2 2022-23 Chelsea-Chelsea Opportunity Academy 00570515 72 5 6.9 0.0 0.0 6.9 0.0 0.0 0.0 0.0 0.0
97 6.4 5 a-curv-i2 2022-23 Chelsea-Chelsea Virtual Learning Academy 00570705 25 12 48.0 0.0 48.0 0.0 0.0 0.0 0.0 0.0 0.0
98 5.333333333333333 5 a-curv-i2 2022-23 Chicopee-Chicopee Academy 00610021 30 12 40.0 0.0 40.0 0.0 0.0 0.0 0.0 0.0 0.0
99 5.053333333333333 5 a-curv-i2 2022-23 Chicopee-Chicopee Comprehensive High School 00610510 565 214 37.9 9.7 31.9 5.3 0.0 10.1 0.0 2.1 0.5
100 6.133333333333334 5 a-curv-i2 2022-23 Chicopee-Chicopee High 00610505 413 190 46.0 12.1 36.3 8.5 0.0 24.5 0.0 5.8 0.0
101 4.8133333333333335 4.81 a-curv-i2 2022-23 City on a Hill Charter Public School (District)-City on a Hill Charter Public School 04370505 83 30 36.1 18.1 36.1 0.0 0.0 9.6 0.0 0.0 0.0
102 4.293333333333334 4.29 a-curv-i2 2022-23 Clinton-Clinton Senior High 00640505 258 83 32.2 14.0 16.3 11.6 5.0 8.5 0.0 3.5 0.0
103 9.333333333333334 5 a-curv-i2 2022-23 Codman Academy Charter Public (District)-Codman Academy Charter Public School 04380505 60 42 70.0 46.7 58.3 43.3 15.0 0.0 0.0 0.0 0.0
104 12.093333333333334 5 a-curv-i2 2022-23 Cohasset-Cohasset High School 00650505 215 195 90.7 50.2 80.9 26.0 0.0 40.5 0.0 5.1 0.0
105 4.826666666666667 4.83 a-curv-i2 2022-23 Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell 35030205 58 21 36.2 36.2 12.1 13.8 0.0 0.0 0.0 0.0 0.0
106 10.986666666666668 5 a-curv-i2 2022-23 Community Charter School of Cambridge (District)-Community Charter School of Cambridge 04360305 74 61 82.4 17.6 70.3 21.6 20.3 29.7 0.0 0.0 0.0
107 12.32 5 a-curv-i2 2022-23 Concord-Carlisle-Concord Carlisle High 06400505 669 618 92.4 8.5 90.3 26.6 0.1 1.6 3.1 12.0 0.0
108 10.746666666666666 5 a-curv-i2 2022-23 Danvers-Danvers High 00710505 403 325 80.6 23.6 54.1 48.4 7.7 39.5 8.9 1.7 0.0
109 8.933333333333334 5 a-curv-i2 2022-23 Dartmouth-Dartmouth High 00720505 497 333 67.0 19.3 52.7 15.7 9.3 19.5 3.0 0.0 0.0
110 8.96 5 a-curv-i2 2022-23 Dedham-Dedham High 00730505 344 231 67.2 13.1 59.9 16.6 4.1 22.1 6.1 6.4 0.0
111 9.093333333333334 5 a-curv-i2 2022-23 Dennis-Yarmouth-Dennis-Yarmouth Regional High 06450505 308 210 68.2 30.8 47.1 22.4 7.8 24.0 7.1 6.5 0.0
112 7.306666666666667 5 a-curv-i2 2022-23 Dighton-Rehoboth-Dighton-Rehoboth Regional High School 06500505 330 181 54.8 22.1 46.1 23.0 0.9 23.6 4.8 0.0 0.0
113 6.746666666666667 5 a-curv-i2 2022-23 Douglas-Douglas High School 00770505 180 91 50.6 19.4 40.6 23.3 0.0 16.7 0.0 0.0 0.0
114 12.479999999999999 5 a-curv-i2 2022-23 Dover-Sherborn-Dover-Sherborn Regional High 06550505 326 305 93.6 38.7 91.4 35.6 4.0 46.9 3.4 8.6 0.0
115 8.08 5 a-curv-i2 2022-23 Dracut-Dracut Senior High 00790505 391 237 60.6 14.6 51.4 26.1 0.0 13.6 0.0 2.0 0.0
116 8.453333333333333 5 a-curv-i2 2022-23 Dudley-Charlton Reg-Shepherd Hill Regional High 06580505 426 270 63.4 14.6 47.4 35.2 2.8 6.1 0.5 4.7 0.0
117 11.666666666666666 5 a-curv-i2 2022-23 Duxbury-Duxbury High 00820505 464 406 87.5 25.0 81.9 21.3 0.0 44.2 3.2 8.4 0.0
118 9.013333333333332 5 a-curv-i2 2022-23 East Bridgewater-East Bridgewater JR./SR. High School 00830505 299 202 67.6 30.8 57.5 21.1 0.0 2.7 1.7 0.0 0.0
119 10.186666666666667 5 a-curv-i2 2022-23 East Longmeadow-East Longmeadow High 00870505 423 323 76.4 17.5 71.4 11.6 5.9 20.6 0.0 0.7 0.2
120 6.8133333333333335 5 a-curv-i2 2022-23 Easthampton-Easthampton High 00860505 182 93 51.1 47.3 15.9 1.1 1.1 12.6 0.0 1.6 0.0
121 8.48 5 a-curv-i2 2022-23 Easton-Oliver Ames High 00880505 547 348 63.6 8.2 52.8 23.2 2.7 31.8 2.4 1.8 0.0
122 9.613333333333333 5 a-curv-i2 2022-23 Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School 04520505 179 129 72.1 43.6 60.3 13.4 0.0 0.0 0.0 0.0 0.0
123 10.573333333333332 5 a-curv-i2 2022-23 Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School 08170505 791 627 79.3 5.8 55.4 16.7 0.0 32.4 0.0 0.0 43.5
124 0.0 1 a-curv-i2 2022-23 Everett-Devens School 00930030 8 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
125 7.733333333333333 5 a-curv-i2 2022-23 Everett-Everett High 00930505 1,017 590 58.0 13.5 49.2 5.9 9.1 7.1 0.0 0.0 0.0
126 12.92 5 a-curv-i2 2022-23 Excel Academy Charter (District)-Excel Academy Charter School 04100205 318 308 96.9 72.3 92.8 37.1 5.0 55.0 2.5 16.7 0.0
127 8.146666666666667 5 a-curv-i2 2022-23 Fairhaven-Fairhaven High 00940505 316 193 61.1 17.4 55.4 14.6 0.0 16.5 0.0 0.0 0.0
128 9.066666666666666 5 a-curv-i2 2022-23 Fall River-B M C Durfee High 00950505 1,075 731 68.0 20.0 54.2 34.7 2.1 15.4 1.1 12.9 0.0
129 2.76 2.76 a-curv-i2 2022-23 Fall River-Resiliency Preparatory Academy 00950525 82 17 20.7 0.0 0.0 20.7 0.0 0.0 0.0 0.0 0.0
130 0.0 1 a-curv-i2 2022-23 Fall River-Stone PK-12 School 00950340 14 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
131 9.653333333333334 5 a-curv-i2 2022-23 Falmouth-Falmouth High 00960505 370 268 72.4 13.0 64.6 21.1 7.3 44.9 6.8 8.4 0.0
132 8.0 5 a-curv-i2 2022-23 Fitchburg-Fitchburg High 00970505 567 340 60.0 31.2 44.6 16.0 8.6 26.6 2.6 13.1 0.0
133 3.4266666666666667 3.43 a-curv-i2 2022-23 Fitchburg-Goodrich Academy 00970510 175 45 25.7 0.6 7.4 18.9 0.0 0.6 0.0 0.6 0.0
134 0.0 1 a-curv-i2 2022-23 Four Rivers Charter Public (District)-Four Rivers Charter Public School 04130505 0
135 9.346666666666666 5 a-curv-i2 2022-23 Foxborough Regional Charter (District)-Foxborough Regional Charter School 04460550 174 122 70.1 31.0 37.9 34.5 6.3 30.5 3.4 10.3 0.0
136 8.906666666666666 5 a-curv-i2 2022-23 Foxborough-Foxborough High 00990505 377 252 66.8 22.0 51.7 12.7 4.8 40.3 2.9 9.8 0.0
137 7.760000000000001 5 a-curv-i2 2022-23 Framingham-Framingham High School 01000515 1,187 691 58.2 14.7 43.6 15.4 1.5 22.3 3.5 1.4 0.0
138 11.76 5 a-curv-i2 2022-23 Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School 04780505 119 105 88.2 0.0 80.7 53.8 2.5 5.9 0.0 2.5 0.0
139 6.96 5 a-curv-i2 2022-23 Franklin County Regional Vocational Technical-Franklin County Technical 08180605 272 142 52.2 15.8 26.5 0.0 0.0 0.0 0.0 0.0 25.0
140 10.266666666666667 5 a-curv-i2 2022-23 Franklin-Franklin High 01010505 835 643 77.0 15.0 71.3 25.9 4.2 38.0 3.8 7.5 0.0
141 7.88 5 a-curv-i2 2022-23 Freetown-Lakeville-Apponequet Regional High 06650505 367 217 59.1 29.2 48.0 20.4 3.3 34.3 1.1 5.2 0.0
142 8.786666666666667 5 a-curv-i2 2022-23 Frontier-Frontier Regional 06700505 182 120 65.9 25.3 59.3 23.6 0.0 13.7 0.0 4.4 0.0
143 9.08 5 a-curv-i2 2022-23 Gardner-Gardner Academy for Learning and Technology 01030515 91 62 68.1 28.6 54.9 16.5 7.7 41.8 11.0 65.9 0.0
144 9.586666666666668 5 a-curv-i2 2022-23 Gardner-Gardner High 01030505 267 192 71.9 36.3 69.3 25.5 5.6 23.2 1.5 16.5 0.0
145 6.293333333333334 5 a-curv-i2 2022-23 Gateway-Gateway Regional High 06720505 89 42 47.2 23.6 31.5 20.2 0.0 13.5 0.0 1.1 0.0
146 8.8 5 a-curv-i2 2022-23 Georgetown-Georgetown High School 01050505 150 99 66.0 9.3 61.3 11.3 2.7 24.7 0.0 0.7 0.0
147 7.706666666666666 5 a-curv-i2 2022-23 Gill-Montague-Turners Fall High 06740505 90 52 57.8 21.1 40.0 23.3 2.2 17.8 7.8 20.0 0.0
148 8.893333333333334 5 a-curv-i2 2022-23 Global Learning Charter Public (District)-Global Learning Charter Public School 04960305 69 46 66.7 21.7 62.3 1.4 1.4 17.4 0.0 1.4 0.0
149 5.52 5 a-curv-i2 2022-23 Gloucester-Gloucester High 01070505 391 162 41.4 9.2 33.5 19.7 1.5 4.9 0.0 0.0 0.0
150 8.306666666666667 5 a-curv-i2 2022-23 Grafton-Grafton High School 01100505 430 268 62.3 46.3 45.8 23.5 6.5 16.5 0.0 1.6 0.0
151 8.893333333333334 5 a-curv-i2 2022-23 Granby-Granby Jr Sr High School 01110505 105 70 66.7 23.8 44.8 0.0 24.8 14.3 0.0 19.0 0.0
152 4.733333333333333 4.73 a-curv-i2 2022-23 Greater Commonwealth Virtual District-Greater Commonwealth Virtual School 39010900 349 124 35.5 10.9 29.2 5.2 0.6 8.3 1.4 4.0 0.0
153 8.12 5 a-curv-i2 2022-23 Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High 08210605 663 404 60.9 9.0 33.0 9.8 0.0 0.0 0.0 3.0 43.9
154 8.346666666666668 5 a-curv-i2 2022-23 Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical 08230605 821 514 62.6 6.1 49.5 56.4 0.0 6.0 0.0 0.0 33.9
155 11.173333333333334 5 a-curv-i2 2022-23 Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical 08280605 1,108 929 83.8 7.9 46.1 24.0 1.8 0.0 0.7 52.3 33.6
156 4.72 4.72 a-curv-i2 2022-23 Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical 08250605 970 343 35.4 5.2 16.7 0.0 0.0 1.9 0.0 0.0 25.2
157 6.133333333333334 5 a-curv-i2 2022-23 Greenfield-Greenfield High 01140505 150 69 46.0 32.0 30.0 26.7 0.0 16.7 0.0 4.0 0.0
158 10.386666666666667 5 a-curv-i2 2022-23 Groton-Dunstable-Groton Dunstable Regional 06730505 349 272 77.9 22.3 70.8 37.8 0.0 9.5 3.7 1.7 0.0
159 9.520000000000001 5 a-curv-i2 2022-23 Hadley-Hopkins Academy 01170505 84 60 71.4 11.9 57.1 48.8 1.2 19.0 2.4 0.0 0.0
160 11.360000000000001 5 a-curv-i2 2022-23 Hamilton-Wenham-Hamilton-Wenham Regional High 06750505 237 202 85.2 11.4 77.2 26.6 3.0 41.8 0.0 21.5 0.0
161 13.333333333333334 5 a-curv-i2 2022-23 Hampden Charter School of Science East (District)-Hampden Charter School of Science East 04990305 130 130 100.0 40.0 66.9 55.4 8.5 33.1 0.0 21.5 0.0
162 12.973333333333333 5 a-curv-i2 2022-23 Hampden Charter School of Science West (District)-Hampden Charter School of Science West 35160305 75 73 97.3 42.7 57.3 69.3 2.7 34.7 0.0 25.3 0.0
163 8.626666666666667 5 a-curv-i2 2022-23 Hampden-Wilbraham-Minnechaug Regional High 06800505 467 302 64.7 17.8 61.2 11.8 5.4 15.2 2.6 2.6 0.9
164 10.386666666666667 5 a-curv-i2 2022-23 Hampshire-Hampshire Regional High 06830505 199 155 77.9 7.5 49.2 44.7 7.0 21.6 2.0 15.1 0.0
165 10.053333333333335 5 a-curv-i2 2022-23 Hanover-Hanover High 01220505 350 264 75.4 11.1 72.0 13.1 0.0 20.3 3.4 8.6 0.0
166 11.986666666666668 5 a-curv-i2 2022-23 Harvard-Bromfield 01250505 159 143 89.9 18.2 86.2 33.3 6.9 42.1 0.0 3.1 0.0
167 10.546666666666665 5 a-curv-i2 2022-23 Hatfield-Smith Academy 01270505 43 34 79.1 0.0 79.1 41.9 0.0 14.0 2.3 0.0 0.0
168 0.0 1 a-curv-i2 2022-23 Haverhill-Bartlett School and Assessment Center 01280073 3
169 1.9066666666666667 1.91 a-curv-i2 2022-23 Haverhill-Gateway Academy 01280515 21 3 14.3 0.0 0.0 14.3 0.0 0.0 0.0 0.0 0.0
170 0.0 1 a-curv-i2 2022-23 Haverhill-Greenleaf Academy 01280033 7 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
171 7.946666666666667 5 a-curv-i2 2022-23 Haverhill-Haverhill High 01280505 848 505 59.6 22.2 44.8 12.5 4.2 19.3 0.1 2.6 0.0
172 11.706666666666667 5 a-curv-i2 2022-23 Hingham-Hingham High 01310505 599 526 87.8 12.2 87.3 26.4 2.7 8.3 1.0 18.7 0.0
173 5.346666666666667 5 a-curv-i2 2022-23 Holbrook-Holbrook Middle High School 01330505 162 65 40.1 9.9 37.7 4.3 0.0 4.3 0.0 0.0 0.0
174 10.479999999999999 5 a-curv-i2 2022-23 Holliston-Holliston High 01360505 388 305 78.6 21.1 67.0 32.7 10.6 40.7 2.1 14.2 0.0
175 6.6 5 a-curv-i2 2022-23 Holyoke-Holyoke High 01370505 738 365 49.5 12.5 26.2 4.7 0.1 16.1 1.2 24.1 3.0
176 6.8133333333333335 5 a-curv-i2 2022-23 Hoosac Valley Regional-Hoosac Valley High School 06030505 92 47 51.1 19.6 27.2 6.5 0.0 33.7 0.0 0.0 0.0
177 10.853333333333333 5 a-curv-i2 2022-23 Hopedale-Hopedale Jr Sr High 01380505 145 118 81.4 40.7 64.8 15.9 11.0 39.3 0.0 2.1 0.0
178 10.973333333333333 5 a-curv-i2 2022-23 Hopkinton-Hopkinton High 01390505 593 488 82.3 20.6 67.6 35.2 10.6 59.5 6.7 3.9 0.0
179 9.453333333333335 5 a-curv-i2 2022-23 Hudson-Hudson High 01410505 313 222 70.9 28.4 50.5 42.5 0.0 14.7 1.3 9.9 0.0
180 10.520000000000001 5 a-curv-i2 2022-23 Hull-Hull High 01420505 114 90 78.9 31.6 69.3 23.7 7.0 67.5 0.0 1.8 0.0
181 7.28 5 a-curv-i2 2022-23 Innovation Academy Charter (District)-Innovation Academy Charter School 04350305 174 95 54.6 0.0 50.6 18.4 1.1 0.0 0.0 0.0 0.0
182 9.306666666666667 5 a-curv-i2 2022-23 Ipswich-Ipswich High 01440505 248 173 69.8 23.8 52.8 27.4 10.9 33.5 0.0 9.3 0.0
183 11.44 5 a-curv-i2 2022-23 KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School 04290010 233 200 85.8 51.1 58.4 37.8 12.0 30.5 4.3 27.5 0.0
184 11.04 5 a-curv-i2 2022-23 King Philip-King Philip Regional High 06900505 559 463 82.8 45.3 78.4 25.4 7.9 48.7 3.9 4.7 0.0
185 7.706666666666666 5 a-curv-i2 2022-23 Lawrence-High School Learning Center 01490536 187 108 57.8 0.0 33.2 34.8 0.0 0.0 0.0 0.0 0.0
186 10.466666666666667 5 a-curv-i2 2022-23 Lawrence-Lawrence High School 01490515 1,324 1,040 78.5 19.0 52.9 21.7 9.4 26.1 1.1 25.5 0.0
187 5.613333333333333 5 a-curv-i2 2022-23 Lawrence-RISE Academy 01490615 38 16 42.1 0.0 0.0 42.1 0.0 0.0 0.0 0.0 0.0
188 3.64 3.64 a-curv-i2 2022-23 Lawrence-School for Exceptional Studies 01490537 11 3 27.3 0.0 0.0 27.3 0.0 0.0 0.0 0.0 0.0
189 9.093333333333334 5 a-curv-i2 2022-23 Lee-Lee Middle/High School 01500505 110 75 68.2 33.6 57.3 21.8 9.1 8.2 0.0 7.3 0.0
190 8.346666666666668 5 a-curv-i2 2022-23 Leicester-Leicester High 01510505 211 132 62.6 14.7 58.8 3.3 1.9 9.0 0.0 0.0 0.0
191 10.493333333333334 5 a-curv-i2 2022-23 Lenox-Lenox Memorial High 01520505 127 100 78.7 0.0 71.7 38.6 10.2 0.0 2.4 5.5 0.0
192 7.373333333333333 5 a-curv-i2 2022-23 Leominster-Center For Technical Education Innovation 01530605 284 157 55.3 4.2 28.2 3.2 0.0 19.4 0.0 0.0 27.5
193 0.0 1 a-curv-i2 2022-23 Leominster-Leominster Center for Excellence 01530515 25 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
194 6.4 5 a-curv-i2 2022-23 Leominster-Leominster High School 01530505 615 295 48.0 16.6 34.5 9.8 0.5 21.5 0.3 2.8 0.0
195 12.026666666666667 5 a-curv-i2 2022-23 Lexington-Lexington High 01550505 1,119 1,009 90.2 0.0 84.3 31.6 14.4 62.2 5.8 7.0 0.0
196 11.04 5 a-curv-i2 2022-23 Lincoln-Sudbury-Lincoln-Sudbury Regional High 06950505 711 589 82.8 0.0 82.1 14.8 6.2 0.3 2.1 0.0 0.0
197 10.093333333333334 5 a-curv-i2 2022-23 Littleton-Littleton High School 01580505 226 171 75.7 6.6 68.6 16.8 8.8 40.7 2.2 13.3 0.0
198 9.933333333333334 5 a-curv-i2 2022-23 Longmeadow-Longmeadow High 01590505 436 325 74.5 22.7 62.2 49.3 6.4 20.9 6.9 7.6 0.0
199 0.0 1 a-curv-i2 2022-23 Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School 04580505 62 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
200 0.0 1 a-curv-i2 2022-23 Lowell-Dr. Janice Adie Day School 01600605 4
201 0.0 1 a-curv-i2 2022-23 Lowell-Leblanc Therapeutic Day School 01600320 12 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
202 7.36 5 a-curv-i2 2022-23 Lowell-Lowell High 01600505 1,358 750 55.2 5.3 30.6 35.8 0.0 11.3 0.0 1.3 0.0
203 0.32 1 a-curv-i2 2022-23 Lowell-The Career Academy 01600515 41 1 2.4 0.0 2.4 0.0 0.0 0.0 0.0 0.0 0.0
204 8.173333333333334 5 a-curv-i2 2022-23 Ludlow-Ludlow Senior High 01610505 362 222 61.3 29.6 48.1 29.0 0.0 17.7 0.0 0.0 0.0
205 8.0 5 a-curv-i2 2022-23 Lunenburg-Lunenburg High 01620505 210 126 60.0 35.7 29.0 11.4 3.8 27.6 6.7 0.5 0.0
206 5.64 5 a-curv-i2 2022-23 Lynn-Classical High 01630505 795 336 42.3 16.0 26.3 10.6 7.9 17.9 1.9 19.5 0.0
207 3.3333333333333335 3.33 a-curv-i2 2022-23 Lynn-Fecteau-Leary Junior/Senior High School 01630525 36 9 25.0 2.8 22.2 0.0 0.0 0.0 0.0 0.0 0.0
208 4.386666666666667 4.39 a-curv-i2 2022-23 Lynn-Lynn English High 01630510 907 298 32.9 13.3 18.5 7.6 2.2 14.7 0.1 14.8 0.0
209 5.2 5 a-curv-i2 2022-23 Lynn-Lynn Vocational Technical Institute 01630605 523 204 39.0 10.5 18.0 6.9 0.0 9.6 0.0 13.6 12.2
210 11.853333333333333 5 a-curv-i2 2022-23 Lynnfield-Lynnfield High 01640505 287 255 88.9 32.8 88.2 20.2 11.1 55.4 1.4 14.6 0.0
211 13.333333333333334 5 a-curv-i2 2022-23 Ma Academy for Math and Science-Ma Academy for Math and Science School 04680505 98 98 100.0 51.0 100.0 36.7 33.7 43.9 8.2 10.2 0.0
212 9.653333333333334 5 a-curv-i2 2022-23 Malden-Malden High 01650505 874 633 72.4 10.0 68.2 15.0 1.4 17.8 1.5 3.1 0.0
213 10.146666666666667 5 a-curv-i2 2022-23 Manchester Essex Regional-Manchester Essex Regional High School 06980510 209 159 76.1 28.7 61.7 37.8 1.9 44.5 0.0 20.6 0.0
214 8.72 5 a-curv-i2 2022-23 Mansfield-Mansfield High 01670505 583 381 65.4 17.7 48.9 14.1 5.0 32.2 3.4 3.4 0.0
215 3.2666666666666666 3.27 a-curv-i2 2022-23 Map Academy Charter School (District)-Map Academy Charter School 35170505 159 39 24.5 2.5 20.1 3.8 0.0 0.0 0.0 0.0 0.0
216 9.906666666666666 5 a-curv-i2 2022-23 Marblehead-Marblehead High 01680505 444 330 74.3 25.9 67.1 10.4 11.9 0.0 0.0 5.0 0.0
217 7.173333333333333 5 a-curv-i2 2022-23 Marlborough-Marlborough High 01700505 563 303 53.8 29.0 38.7 9.6 0.0 22.2 0.7 2.0 0.0
218 9.373333333333333 5 a-curv-i2 2022-23 Marshfield-Marshfield High 01710505 556 391 70.3 13.7 64.6 24.5 5.6 29.1 9.5 3.8 0.0
219 13.333333333333334 5 a-curv-i2 2022-23 Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School 04660550 16 16 100.0 100.0 100.0 68.8 0.0 75.0 75.0 0.0 0.0
220 8.373333333333333 5 a-curv-i2 2022-23 Martha's Vineyard-Martha's Vineyard Regional High 07000505 344 216 62.8 26.2 50.6 16.6 3.5 27.3 2.0 14.5 0.0
221 9.8 5 a-curv-i2 2022-23 Masconomet-Masconomet Regional High School 07050505 517 380 73.5 9.5 66.2 23.4 13.2 26.5 4.4 9.5 0.0
222 9.933333333333334 5 a-curv-i2 2022-23 Mashpee-Mashpee Middle-High School 01720505 204 152 74.5 20.1 70.6 28.9 1.5 31.4 11.3 6.4 0.0
223 12.546666666666665 5 a-curv-i2 2022-23 Match Charter Public School (District)-Match Charter Public School 04690505 135 127 94.1 46.7 93.3 26.7 28.9 61.5 0.0 18.5 0.0
224 9.106666666666666 5 a-curv-i2 2022-23 Maynard-Maynard High 01740505 145 99 68.3 22.1 61.4 23.4 2.8 17.2 0.0 7.6 0.0
225 11.186666666666667 5 a-curv-i2 2022-23 Medfield-Medfield Senior High 01750505 386 324 83.9 18.4 66.6 17.9 0.0 57.0 7.0 15.8 0.0
226 6.666666666666667 5 a-curv-i2 2022-23 Medford-Curtis-Tufts 01760510 8 4 50.0 0.0 50.0 0.0 0.0 0.0 0.0 0.0 0.0
227 7.28 5 a-curv-i2 2022-23 Medford-Medford High 01760505 599 327 54.6 15.5 42.7 4.8 12.2 17.0 1.0 3.7 0.0
228 12.04 5 a-curv-i2 2022-23 Medway-Medway High 01770505 308 278 90.3 26.3 84.1 41.6 3.6 45.1 0.3 10.7 0.0
229 10.946666666666665 5 a-curv-i2 2022-23 Melrose-Melrose High 01780505 447 367 82.1 52.1 55.5 36.7 3.1 25.3 0.0 20.6 0.0
230 9.946666666666665 5 a-curv-i2 2022-23 Mendon-Upton-Nipmuc Regional High 07100510 299 223 74.6 25.8 61.2 14.7 5.4 36.5 4.3 6.0 0.0
231 6.706666666666666 5 a-curv-i2 2022-23 Methuen-Methuen High 01810505 953 479 50.3 10.4 39.8 8.0 9.0 17.6 0.4 1.4 0.0
232 9.653333333333334 5 a-curv-i2 2022-23 Middleborough-Middleborough High 01820505 398 288 72.4 12.3 58.0 26.1 8.8 16.6 2.0 9.5 0.0
233 8.266666666666667 5 a-curv-i2 2022-23 Milford-Milford High 01850505 598 371 62.0 23.1 49.3 27.1 5.2 16.7 1.5 4.7 0.0
234 8.76 5 a-curv-i2 2022-23 Millbury-Millbury Junior/Senior High 01860505 239 157 65.7 14.6 54.4 15.5 4.6 1.3 1.3 0.0 0.0
235 11.653333333333334 5 a-curv-i2 2022-23 Millis-Millis High School 01870505 167 146 87.4 12.0 86.2 15.6 17.4 35.3 2.4 16.8 0.0
236 12.866666666666667 5 a-curv-i2 2022-23 Milton-Milton High 01890505 547 528 96.5 32.2 96.3 12.4 4.9 44.1 3.5 19.4 0.0
237 6.84 5 a-curv-i2 2022-23 Minuteman Regional Vocational Technical-Minuteman Regional High 08300605 316 162 51.3 11.1 35.1 33.9 0.0 15.5 0.0 0.0 0.0
238 9.106666666666666 5 a-curv-i2 2022-23 Mohawk Trail-Mohawk Trail Regional School 07170505 63 43 68.3 33.3 54.0 30.2 0.0 19.0 0.0 0.0 0.0
239 9.32 5 a-curv-i2 2022-23 Monomoy Regional School District-Monomoy Regional High School 07120515 239 167 69.9 21.8 49.4 19.7 7.5 46.0 2.1 4.6 0.0
240 5.026666666666667 5 a-curv-i2 2022-23 Monson-Monson High School 01910505 77 29 37.7 14.3 19.5 14.3 1.3 0.0 0.0 2.6 0.0
241 13.146666666666667 5 a-curv-i2 2022-23 Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical 08320605 664 655 98.6 18.7 48.0 50.5 1.4 0.0 0.0 93.5 35.1
242 11.373333333333333 5 a-curv-i2 2022-23 Mount Greylock-Mt Greylock Regional High 07150505 184 157 85.3 37.5 72.8 14.7 8.2 50.5 1.6 16.3 0.0
243 13.013333333333332 5 a-curv-i2 2022-23 Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School 04700105 169 165 97.6 79.9 83.4 87.6 0.0 85.2 7.7 55.6 0.0
244 8.626666666666667 5 a-curv-i2 2022-23 Nantucket-Nantucket High 01970505 269 174 64.7 17.8 59.1 12.3 0.0 14.5 0.4 0.0 0.0
245 6.92 5 a-curv-i2 2022-23 Narragansett-Narragansett Regional High 07200505 133 69 51.9 16.5 33.8 23.3 1.5 30.1 0.0 0.0 0.0
246 10.733333333333333 5 a-curv-i2 2022-23 Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School 08520605 333 268 80.5 18.9 54.4 9.6 0.0 17.7 0.0 44.7 32.1
247 11.16 5 a-curv-i2 2022-23 Nashoba-Nashoba Regional 07250505 416 348 83.7 8.4 82.9 18.0 16.1 41.3 1.7 2.2 0.0
248 9.546666666666665 5 a-curv-i2 2022-23 Natick-Natick High 01980505 771 552 71.6 19.5 58.8 17.9 7.3 37.5 0.4 3.8 0.0
249 9.666666666666666 5 a-curv-i2 2022-23 Nauset-Nauset Regional High 06600505 389 282 72.5 21.1 59.1 27.0 1.8 37.5 7.5 5.4 0.0
250 12.813333333333333 5 a-curv-i2 2022-23 Needham-Needham High 01990505 798 767 96.1 21.8 94.6 16.0 0.0 37.3 1.8 9.0 0.0
251 8.48 5 a-curv-i2 2022-23 Neighborhood House Charter (District)-Neighborhood House Charter School 04440205 129 82 63.6 30.2 48.8 23.3 0.0 20.9 0.0 2.3 0.0
252 6.12 5 a-curv-i2 2022-23 New Bedford-New Bedford High 02010505 1,248 573 45.9 8.0 34.4 7.6 2.5 10.5 2.2 7.4 0.0
253 0.0 1 a-curv-i2 2022-23 New Bedford-Trinity Day Academy 02010510 18 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
254 0.0 1 a-curv-i2 2022-23 New Bedford-Whaling City Junior/Senior High School 02010515 70 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
255 12.146666666666667 5 a-curv-i2 2022-23 New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton 35130305 179 163 91.1 48.6 41.3 30.2 14.5 56.4 5.6 73.7 0.0
256 10.066666666666666 5 a-curv-i2 2022-23 Newburyport-Newburyport High 02040505 421 318 75.5 29.7 57.5 39.9 1.4 17.3 3.1 6.2 0.0
257 11.253333333333334 5 a-curv-i2 2022-23 Newton-Newton North High 02070505 1,019 860 84.4 21.6 82.5 21.4 0.0 33.9 0.9 7.5 0.0
258 9.466666666666667 5 a-curv-i2 2022-23 Newton-Newton South High 02070510 920 653 71.0 9.7 61.1 17.0 0.0 43.5 2.2 5.4 0.0
259 6.72 5 a-curv-i2 2022-23 Norfolk County Agricultural-Norfolk County Agricultural 09150705 274 138 50.4 0.0 50.0 0.0 0.0 0.0 0.0 12.8 0.0
260 9.866666666666667 5 a-curv-i2 2022-23 North Adams-Drury High 02090505 131 97 74.0 45.0 42.7 29.8 7.6 33.6 3.8 0.0 0.0
261 9.04 5 a-curv-i2 2022-23 North Andover-North Andover High 02110505 658 446 67.8 17.9 58.4 21.7 8.8 33.0 2.3 7.6 0.0
262 8.746666666666666 5 a-curv-i2 2022-23 North Attleborough-North Attleboro High 02120505 576 378 65.6 15.3 58.7 14.8 5.4 27.8 0.0 0.2 0.0
263 5.333333333333333 5 a-curv-i2 2022-23 North Brookfield-North Brookfield High 02150505 50 20 40.0 40.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
264 12.093333333333334 5 a-curv-i2 2022-23 North Middlesex-North Middlesex Regional 07350505 355 322 90.7 2.0 86.5 40.0 6.2 13.0 0.6 2.8 0.0
265 9.76 5 a-curv-i2 2022-23 North Reading-North Reading High 02170505 306 224 73.2 14.4 63.4 24.2 3.3 30.4 0.0 2.6 0.0
266 9.933333333333334 5 a-curv-i2 2022-23 Northampton-Northampton High 02100505 444 331 74.5 41.0 58.3 46.2 6.8 35.1 0.0 5.0 0.0
267 6.693333333333333 5 a-curv-i2 2022-23 Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High 04060705 267 134 50.2 13.5 25.8 13.1 0.0 0.0 0.0 0.0 21.7
268 9.746666666666666 5 a-curv-i2 2022-23 Northboro-Southboro-Algonquin Regional High 07300505 633 463 73.1 34.4 63.0 26.2 2.5 42.2 4.4 6.2 0.0
269 4.226666666666667 4.23 a-curv-i2 2022-23 Northbridge-Northbridge High 02140505 230 73 31.7 10.0 20.0 4.8 0.0 10.0 0.0 0.0 0.0
270 6.973333333333333 5 a-curv-i2 2022-23 Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational 08530605 591 309 52.3 3.9 30.6 3.6 1.0 1.7 0.0 4.9 28.4
271 13.333333333333334 5 a-curv-i2 2022-23 Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical 08510605 243 243 100.0 71.2 87.7 56.4 2.9 59.7 0.0 54.3 26.7
272 5.386666666666667 5 a-curv-i2 2022-23 Norton-Norton High 02180505 329 133 40.4 0.0 21.9 5.2 2.7 32.2 0.9 1.5 0.0
273 12.893333333333334 5 a-curv-i2 2022-23 Norwell-Norwell High 02190505 303 293 96.7 16.8 96.4 17.2 5.9 53.8 8.6 15.8 0.0
274 11.346666666666666 5 a-curv-i2 2022-23 Norwood-Norwood High 02200505 503 428 85.1 16.9 84.9 27.0 3.2 34.8 2.4 11.7 0.0
275 12.906666666666666 5 a-curv-i2 2022-23 Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical 08550605 278 269 96.8 25.2 56.8 4.0 2.5 0.0 0.0 50.0 45.3
276 10.706666666666667 5 a-curv-i2 2022-23 Old Rochester-Old Rochester Regional High 07400505 319 256 80.3 15.7 73.7 23.2 16.0 17.9 2.5 13.2 0.0
277 6.666666666666667 5 a-curv-i2 2022-23 Oxford-Oxford High 02260505 170 85 50.0 20.0 34.1 5.3 8.8 14.1 3.5 4.1 0.0
278 8.546666666666665 5 a-curv-i2 2022-23 Palmer-Palmer High 02270505 128 82 64.1 25.8 32.8 42.2 0.0 19.5 9.4 2.3 0.0
279 6.1066666666666665 5 a-curv-i2 2022-23 Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical 08600605 286 131 45.8 11.5 21.3 3.1 7.0 17.8 0.0 0.7 14.3
280 5.2266666666666675 5 a-curv-i2 2022-23 Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School 35010505 143 56 39.2 0.0 37.8 0.0 0.0 0.0 0.0 1.4 0.0
281 5.093333333333334 5 a-curv-i2 2022-23 Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.) 02290705 34 13 38.2 0.0 35.3 0.0 0.0 35.3 0.0 0.0 0.0
282 5.8 5 a-curv-i2 2022-23 Peabody-Peabody Veterans Memorial High 02290510 724 315 43.5 18.0 30.2 20.6 1.7 18.8 1.4 2.1 0.1
283 10.853333333333333 5 a-curv-i2 2022-23 Pembroke-Pembroke High School 02310505 366 298 81.4 14.8 77.3 18.9 8.2 35.8 3.0 7.7 0.0
284 10.213333333333333 5 a-curv-i2 2022-23 Pentucket-Pentucket Regional Sr High 07450505 303 232 76.6 17.2 66.0 23.8 7.6 28.4 0.3 3.3 0.0
285 0.0 1 a-curv-i2 2022-23 Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea 04930505 26 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
286 0.0 1 a-curv-i2 2022-23 Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence 35180505 29 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
287 0.0 1 a-curv-i2 2022-23 Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield 35080505 53 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
288 12.426666666666668 5 a-curv-i2 2022-23 Pioneer Charter School of Science (District)-Pioneer Charter School of Science 04940205 88 82 93.2 30.7 83.0 48.9 9.1 20.5 0.0 4.5 0.0
289 12.04 5 a-curv-i2 2022-23 Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II 35060505 93 84 90.3 35.5 62.4 40.9 25.8 33.3 10.8 12.9 0.0
290 13.333333333333334 5 a-curv-i2 2022-23 Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School 04970205 41 41 100.0 100.0 100.0 100.0 0.0 100.0 22.0 100.0 0.0
291 8.386666666666667 5 a-curv-i2 2022-23 Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School 04790505 116 73 62.9 6.9 62.9 1.7 0.9 0.9 0.9 0.0 0.0
292 12.733333333333333 5 a-curv-i2 2022-23 Pioneer Valley-Pioneer Valley Regional 07500505 88 84 95.5 27.3 95.5 20.5 0.0 17.0 1.1 2.3 0.0
293 7.906666666666666 5 a-curv-i2 2022-23 Pittsfield-Pittsfield High 02360505 332 197 59.3 22.6 47.3 11.4 5.1 21.7 4.5 11.1 0.0
294 0.9466666666666667 1 a-curv-i2 2022-23 Pittsfield-Pittsfield Public Virtual Academy 02360705 28 2 7.1 0.0 7.1 0.0 0.0 0.0 0.0 0.0 0.0
295 6.786666666666666 5 a-curv-i2 2022-23 Pittsfield-Taconic High 02360510 381 194 50.9 12.6 37.8 6.8 0.0 15.5 1.6 6.0 8.1
296 8.28 5 a-curv-i2 2022-23 Plymouth-Plymouth North High 02390505 614 381 62.1 8.1 58.1 17.6 5.9 15.8 2.8 2.0 0.0
297 8.0 5 a-curv-i2 2022-23 Plymouth-Plymouth South High 02390515 498 299 60.0 19.1 54.0 20.1 7.2 25.1 2.0 1.8 0.0
298 11.24 5 a-curv-i2 2022-23 Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School 04870550 134 113 84.3 17.9 64.9 49.3 15.7 0.0 0.0 6.0 0.0
299 12.413333333333332 5 a-curv-i2 2022-23 Quabbin-Quabbin Regional High School 07530505 275 256 93.1 92.0 61.8 20.0 0.0 23.3 0.0 34.2 0.0
300 8.813333333333333 5 a-curv-i2 2022-23 Quaboag Regional-Quaboag Regional High 07780505 183 121 66.1 50.3 43.2 37.2 2.2 24.0 3.8 0.0 0.0
301 9.386666666666667 5 a-curv-i2 2022-23 Quincy-North Quincy High 02430510 712 501 70.4 33.7 58.0 24.7 7.0 33.8 1.5 3.1 0.0
302 7.12 5 a-curv-i2 2022-23 Quincy-Quincy High 02430505 753 402 53.4 19.5 42.2 10.8 2.0 24.3 1.1 2.1 0.0
303 5.8 5 a-curv-i2 2022-23 Ralph C Mahar-Ralph C Mahar Regional 07550505 138 60 43.5 29.0 26.1 26.1 0.0 15.2 5.1 1.4 0.0
304 9.613333333333333 5 a-curv-i2 2022-23 Randolph-Randolph High 02440505 272 196 72.1 4.0 22.4 43.4 25.7 11.8 2.2 0.0 0.0
305 9.093333333333334 5 a-curv-i2 2022-23 Reading-Reading Memorial High 02460505 585 399 68.2 11.6 56.4 35.6 9.1 25.3 1.7 6.2 0.0
306 7.1066666666666665 5 a-curv-i2 2022-23 Revere-CityLab Innovation High School 02480520 30 16 53.3 36.7 13.3 10.0 6.7 0.0 3.3 6.7 0.0
307 10.333333333333334 5 a-curv-i2 2022-23 Revere-Revere High 02480505 906 702 77.5 18.5 74.9 14.6 4.9 14.9 0.0 10.5 0.0
308 9.973333333333333 5 a-curv-i2 2022-23 Rising Tide Charter Public (District)-Rising Tide Charter Public School 04830305 119 89 74.8 0.0 70.6 25.2 6.7 12.6 0.0 0.0 0.0
309 9.2 5 a-curv-i2 2022-23 Rockland-Rockland Senior High 02510505 258 178 69.0 25.6 41.9 45.0 0.4 26.0 0.4 1.9 0.0
310 10.933333333333334 5 a-curv-i2 2022-23 Rockport-Rockport High 02520510 128 105 82.0 14.1 73.4 39.1 4.7 50.8 0.0 0.8 0.0
311 13.333333333333334 5 a-curv-i2 2022-23 Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School 04840505 223 223 100.0 80.7 55.2 31.8 0.0 97.8 0.0 72.2 0.0
312 11.346666666666666 5 a-curv-i2 2022-23 Salem Academy Charter (District)-Salem Academy Charter School 04850485 134 114 85.1 47.8 50.0 50.7 0.0 64.9 9.0 0.0 0.0
313 6.253333333333333 5 a-curv-i2 2022-23 Salem-New Liberty Innovation School 02580510 32 15 46.9 0.0 0.0 46.9 0.0 0.0 0.0 0.0 0.0
314 6.973333333333333 5 a-curv-i2 2022-23 Salem-Salem High 02580505 413 216 52.3 16.5 25.4 15.0 6.3 22.8 7.7 9.7 2.4
315 1.9066666666666667 1.91 a-curv-i2 2022-23 Salem-Salem Prep High School 02580515 7 1 14.3 0.0 0.0 0.0 14.3 0.0 0.0 0.0 0.0
316 8.946666666666665 5 a-curv-i2 2022-23 Sandwich-Sandwich Middle High School 02610505 298 200 67.1 28.5 59.1 19.8 13.4 28.5 0.0 2.0 0.0
317 11.573333333333332 5 a-curv-i2 2022-23 Saugus-Saugus High 02620505 356 309 86.8 22.2 64.9 39.9 11.8 23.0 0.0 52.8 0.0
318 11.466666666666667 5 a-curv-i2 2022-23 Scituate-Scituate High School 02640505 401 345 86.0 44.9 83.3 43.6 7.5 35.2 3.2 11.0 0.0
319 8.68 5 a-curv-i2 2022-23 Seekonk-Seekonk High 02650505 261 170 65.1 8.4 58.6 27.6 8.8 27.2 0.8 0.8 0.0
320 10.026666666666667 5 a-curv-i2 2022-23 Sharon-Sharon High 02660505 565 425 75.2 10.1 70.3 19.5 10.6 43.9 2.5 3.5 0.0
321 9.573333333333332 5 a-curv-i2 2022-23 Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School 08710605 621 446 71.8 5.6 47.2 1.6 0.0 0.0 0.0 0.0 58.5
322 12.360000000000001 5 a-curv-i2 2022-23 Shrewsbury-Shrewsbury High School 02710505 885 820 92.7 20.7 92.2 47.1 1.7 29.4 1.4 3.7 0.0
323 7.533333333333333 5 a-curv-i2 2022-23 Silver Lake-Silver Lake Regional High 07600505 506 286 56.5 24.1 48.4 30.4 4.5 30.4 0.0 1.2 4.9
324 6.026666666666667 5 a-curv-i2 2022-23 Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School 04740505 93 42 45.2 29.0 24.7 3.2 3.2 9.7 1.1 1.1 0.0
325 7.693333333333333 5 a-curv-i2 2022-23 Somerset Berkley Regional School District-Somerset Berkley Regional High School 07630505 492 284 57.7 35.4 44.9 19.5 4.7 26.0 3.0 0.0 0.0
326 0.0 1 a-curv-i2 2022-23 Somerville-Full Circle High School 02740510 24 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
327 8.013333333333334 5 a-curv-i2 2022-23 Somerville-Somerville High 02740505 589 354 60.1 20.5 55.2 17.7 2.4 21.7 0.0 4.9 3.4
328 5.8533333333333335 5 a-curv-i2 2022-23 South Hadley-South Hadley High 02780505 253 111 43.9 16.6 33.6 13.4 3.6 15.8 1.6 0.0 0.4
329 6.053333333333333 5 a-curv-i2 2022-23 South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School 08290605 381 173 45.4 11.5 19.2 24.4 3.1 3.1 0.0 0.0 17.6
330 10.946666666666665 5 a-curv-i2 2022-23 South Shore Charter Public (District)-South Shore Charter Public School 04880550 145 119 82.1 24.8 71.0 5.5 12.4 22.1 0.0 0.0 0.0
331 9.026666666666667 5 a-curv-i2 2022-23 South Shore Regional Vocational Technical-South Shore Vocational Technical High 08730605 313 212 67.7 0.0 50.8 0.0 0.0 0.0 0.0 0.0 46.0
332 0.0 1 a-curv-i2 2022-23 Southbridge-Southbridge Academy 02770525 1
333 8.026666666666667 5 a-curv-i2 2022-23 Southbridge-Southbridge High School 02770515 206 124 60.2 5.8 46.1 12.1 14.6 15.5 0.0 0.0 0.0
334 12.32 5 a-curv-i2 2022-23 Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical 08720605 751 694 92.4 21.0 58.5 30.2 0.0 9.6 2.7 60.6 50.1
335 10.520000000000001 5 a-curv-i2 2022-23 Southern Berkshire-Mt Everett Regional 07650505 76 60 78.9 34.2 65.8 2.6 0.0 35.5 7.9 26.3 0.0
336 7.04 5 a-curv-i2 2022-23 Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School 08760605 553 292 52.8 13.2 26.9 12.7 0.0 0.0 0.0 0.0 31.1
337 4.346666666666667 4.35 a-curv-i2 2022-23 Southwick-Tolland-Granville Regional School District-Southwick Regional School 07660505 190 62 32.6 1.6 21.1 16.3 5.8 5.8 0.0 1.1 0.0
338 10.146666666666667 5 a-curv-i2 2022-23 Spencer-E Brookfield-David Prouty High 07670505 163 124 76.1 35.0 76.1 0.0 0.0 20.9 0.0 0.0 0.0
339 6.96 5 a-curv-i2 2022-23 Springfield International Charter (District)-Springfield International Charter School 04410505 184 96 52.2 27.2 21.7 19.6 0.0 29.9 0.0 0.0 0.0
340 6.026666666666667 5 a-curv-i2 2022-23 Springfield-Conservatory of the Arts 02810475 84 38 45.2 27.4 14.3 1.2 0.0 0.0 13.1 13.1 0.0
341 3.1733333333333333 3.17 a-curv-i2 2022-23 Springfield-Gateway to College at Holyoke Community College 02810575 21 5 23.8 4.8 19.0 4.8 0.0 4.8 0.0 0.0 0.0
342 13.333333333333334 5 a-curv-i2 2022-23 Springfield-Gateway to College at Springfield Technical Community College 02810580 17 17 100.0 0.0 29.4 11.8 0.0 17.6 11.8 29.4 0.0
343 8.52 5 a-curv-i2 2022-23 Springfield-High School Of Commerce 02810510 452 289 63.9 12.6 38.5 9.7 2.2 21.2 10.6 17.9 0.0
344 8.213333333333333 5 a-curv-i2 2022-23 Springfield-John J Duggan Academy 02810320 138 85 61.6 21.7 52.2 0.0 12.3 15.9 0.0 1.4 0.0
345 0.0 1 a-curv-i2 2022-23 Springfield-Liberty Preparatory Academy 02810560 6 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
346 6.386666666666667 5 a-curv-i2 2022-23 Springfield-Roger L. Putnam Vocational Technical Academy 02810620 622 298 47.9 9.8 37.8 2.6 1.4 6.3 1.8 1.8 10.1
347 4.760000000000001 4.76 a-curv-i2 2022-23 Springfield-Springfield Central High 02810500 855 305 35.7 21.9 21.5 6.9 1.5 13.0 0.6 1.3 0.0
348 1.24 1.24 a-curv-i2 2022-23 Springfield-Springfield High School 02810570 43 4 9.3 0.0 9.3 0.0 0.0 0.0 0.0 0.0 0.0
349 4.319999999999999 4.32 a-curv-i2 2022-23 Springfield-Springfield High School of Science and Technology 02810530 429 139 32.4 13.8 14.0 7.5 0.7 9.1 5.8 0.0 0.0
350 0.0 1 a-curv-i2 2022-23 Springfield-Springfield International Academy at Sci-Tech 02810700 19 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
351 0.0 1 a-curv-i2 2022-23 Springfield-Springfield Public Day High School 02810550 23 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
352 8.266666666666667 5 a-curv-i2 2022-23 Springfield-The Springfield Renaissance School an Expeditionary Learning School 02810205 137 85 62.0 31.4 55.5 11.7 1.5 24.8 0.0 0.0 0.0
353 0.0 1 a-curv-i2 2022-23 Springfield-The Springfield Virtual School 02810705 48 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
354 9.786666666666667 5 a-curv-i2 2022-23 Stoneham-Stoneham High 02840505 297 218 73.4 44.1 63.6 26.3 3.7 20.2 0.0 6.1 0.0
355 7.373333333333333 5 a-curv-i2 2022-23 Stoughton-Stoughton High 02850505 503 278 55.3 7.6 48.5 13.9 10.9 12.5 0.0 0.0 0.0
356 13.293333333333333 5 a-curv-i2 2022-23 Sturgis Charter Public (District)-Sturgis Charter Public School 04890505 392 391 99.7 99.7 99.7 96.2 8.7 99.5 39.5 87.0 0.0
357 11.32 5 a-curv-i2 2022-23 Sutton-Sutton High School 02900510 186 158 84.9 67.2 65.1 21.0 0.0 8.1 0.0 8.1 0.0
358 9.293333333333333 5 a-curv-i2 2022-23 Swampscott-Swampscott High 02910505 310 216 69.7 32.6 54.8 20.6 6.5 43.5 6.1 3.9 0.0
359 4.626666666666667 4.63 a-curv-i2 2022-23 Swansea-Joseph Case High 02920505 262 91 34.7 7.6 8.0 21.8 10.7 3.8 2.7 0.0 0.0
360 2.8266666666666667 2.83 a-curv-i2 2022-23 TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School 39020900 886 188 21.2 5.0 17.6 1.1 0.6 3.0 0.0 0.2 0.0
361 9.520000000000001 5 a-curv-i2 2022-23 Tantasqua-Tantasqua Regional Sr High 07700505 336 240 71.4 36.9 65.8 22.0 0.6 18.5 3.9 1.2 0.0
362 3.6533333333333333 3.65 a-curv-i2 2022-23 Tantasqua-Tantasqua Regional Vocational 07700605 223 61 27.4 5.4 24.2 2.2 0.0 1.3 0.0 0.0 0.0
363 1.0933333333333333 1.09 a-curv-i2 2022-23 Taunton-Taunton Alternative High School 02930525 73 6 8.2 0.0 0.0 8.2 0.0 0.0 0.0 0.0 0.0
364 6.293333333333334 5 a-curv-i2 2022-23 Taunton-Taunton High 02930505 998 471 47.2 10.7 42.6 9.9 3.1 16.6 0.4 2.8 0.0
365 9.533333333333333 5 a-curv-i2 2022-23 Tewksbury-Tewksbury Memorial High 02950505 386 276 71.5 20.7 58.8 29.3 4.9 29.8 0.0 4.1 0.0
366 11.653333333333334 5 a-curv-i2 2022-23 Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical 08780605 444 388 87.4 5.6 60.4 26.1 0.0 13.3 0.0 64.9 39.2
367 7.933333333333334 5 a-curv-i2 2022-23 Triton-Triton Regional High School 07730505 316 188 59.5 7.6 54.7 19.0 1.6 14.2 0.0 6.3 0.0
368 10.2 5 a-curv-i2 2022-23 Tyngsborough-Tyngsborough High School 03010505 200 153 76.5 11.5 67.0 16.0 20.0 5.0 0.0 2.5 0.0
369 7.973333333333333 5 a-curv-i2 2022-23 Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical 08790605 333 199 59.8 4.8 39.9 0.0 0.0 0.0 0.0 0.0 40.8
370 0.36000000000000004 1 a-curv-i2 2022-23 Uxbridge-Gateway to College 03040515 37 1 2.7 0.0 2.7 0.0 0.0 0.0 0.0 0.0 0.0
371 10.479999999999999 5 a-curv-i2 2022-23 Uxbridge-Uxbridge High 03040505 215 169 78.6 40.9 54.4 47.9 4.2 15.3 0.0 19.1 0.0
372 8.666666666666666 5 a-curv-i2 2022-23 Wachusett-Wachusett Regional High 07750505 973 632 65.0 12.0 60.2 6.3 4.5 26.5 1.6 2.5 0.0
373 10.173333333333334 5 a-curv-i2 2022-23 Wakefield-Wakefield Memorial High 03050505 393 300 76.3 21.1 69.5 20.1 5.1 23.2 2.8 1.0 0.0
374 8.04 5 a-curv-i2 2022-23 Walpole-Walpole High 03070505 501 302 60.3 19.2 45.1 7.8 8.6 19.6 0.0 2.6 0.0
375 7.2 5 a-curv-i2 2022-23 Waltham-Waltham Sr High 03080505 816 441 54.0 17.6 29.0 11.8 4.5 32.0 1.7 7.0 1.6
376 6.2266666666666675 5 a-curv-i2 2022-23 Ware-Ware Junior/Senior High School 03090505 120 56 46.7 15.8 44.2 15.0 0.8 0.8 0.0 0.0 0.0
377 0.0 1 a-curv-i2 2022-23 Wareham-Wareham Cooperative Alternative School 03100315 19 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
378 5.7733333333333325 5 a-curv-i2 2022-23 Wareham-Wareham Senior High 03100505 180 78 43.3 28.9 24.4 11.7 1.7 23.3 11.1 7.8 0.0
379 8.133333333333333 5 a-curv-i2 2022-23 Watertown-Watertown High 03140505 333 203 61.0 7.5 58.3 26.7 5.4 10.8 1.5 2.1 0.0
380 11.453333333333335 5 a-curv-i2 2022-23 Wayland-Wayland High School 03150505 397 341 85.9 11.8 80.9 17.6 15.1 25.4 2.3 0.0 0.0
381 6.239999999999999 5 a-curv-i2 2022-23 Webster-Bartlett High School 03160505 158 74 46.8 10.1 19.6 31.0 6.3 9.5 0.0 2.5 0.0
382 12.226666666666667 5 a-curv-i2 2022-23 Wellesley-Wellesley Sr High 03170505 708 649 91.7 0.3 85.9 64.1 6.6 30.2 0.3 9.3 0.0
383 9.413333333333332 5 a-curv-i2 2022-23 West Boylston-West Boylston Junior/Senior High 03220505 119 84 70.6 13.4 65.5 42.0 1.7 10.9 5.9 0.0 0.0
384 10.413333333333332 5 a-curv-i2 2022-23 West Bridgewater-West Bridgewater Junior/Senior 03230505 201 157 78.1 26.9 68.7 34.3 6.5 2.0 0.0 1.0 0.0
385 8.360000000000001 5 a-curv-i2 2022-23 West Springfield-West Springfield High 03320505 547 343 62.7 27.8 42.0 34.9 0.9 24.3 2.7 4.4 1.1
386 8.8 5 a-curv-i2 2022-23 Westborough-Westborough High 03210505 553 365 66.0 5.4 60.0 28.6 7.4 21.7 4.3 4.9 0.0
387 7.8133333333333335 5 a-curv-i2 2022-23 Westfield-Westfield High 03250505 483 283 58.6 30.4 42.7 14.1 2.7 24.2 0.6 3.5 0.0
388 1.9333333333333333 1.93 a-curv-i2 2022-23 Westfield-Westfield Technical Academy 03250605 249 36 14.5 7.6 3.6 0.0 0.0 6.8 0.0 0.0 0.0
389 0.0 1 a-curv-i2 2022-23 Westfield-Westfield Virtual School 03250705 11 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
390 9.226666666666667 5 a-curv-i2 2022-23 Westford-Westford Academy 03260505 798 552 69.2 16.4 59.8 28.8 5.6 33.6 4.9 0.5 0.0
391 12.866666666666667 5 a-curv-i2 2022-23 Weston-Weston High 03300505 314 303 96.5 5.4 93.0 55.4 8.0 74.2 4.8 16.6 0.0
392 6.666666666666667 5 a-curv-i2 2022-23 Westport-Westport Middle-High School 03310515 154 77 50.0 16.2 39.6 15.6 3.2 3.2 0.0 0.6 0.0
393 10.266666666666667 5 a-curv-i2 2022-23 Westwood-Westwood High 03350505 488 376 77.0 21.7 65.4 23.6 10.0 51.4 8.0 4.7 0.0
394 7.586666666666667 5 a-curv-i2 2022-23 Weymouth-Weymouth High School 03360505 867 493 56.9 11.0 51.7 11.3 4.3 16.5 0.6 4.6 2.0
395 3.1199999999999997 3.12 a-curv-i2 2022-23 Whitman-Hanson-Whitman Hanson Regional 07800505 548 128 23.4 18.6 16.1 9.7 0.0 8.9 0.0 0.0 0.0
396 13.306666666666667 5 a-curv-i2 2022-23 Whittier Regional Vocational Technical-Whittier Regional Vocational 08850605 639 638 99.8 32.1 99.5 1.6 1.7 18.3 0.0 58.8 57.7
397 9.360000000000001 5 a-curv-i2 2022-23 Wilmington-Wilmington High 03420505 359 252 70.2 22.0 61.0 32.9 2.2 33.7 0.0 6.1 0.0
398 0.0 1 a-curv-i2 2022-23 Winchendon-Murdock Academy for Success 03430405 19 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
399 5.413333333333333 5 a-curv-i2 2022-23 Winchendon-Murdock High School 03430515 101 41 40.6 24.8 22.8 8.9 5.9 4.0 0.0 0.0 0.0
400 12.866666666666667 5 a-curv-i2 2022-23 Winchester-Winchester High School 03440505 688 664 96.5 25.3 94.9 69.3 8.9 35.9 0.0 13.8 0.0
401 11.106666666666666 5 a-curv-i2 2022-23 Winthrop-Winthrop High School 03460505 275 229 83.3 34.9 71.6 26.5 1.8 37.8 0.0 0.0 0.0
402 8.04 5 a-curv-i2 2022-23 Woburn-Woburn High 03470505 557 336 60.3 11.0 45.8 17.4 5.2 28.9 0.9 12.4 0.0
403 6.293333333333334 5 a-curv-i2 2022-23 Worcester-Burncoat Senior High 03480503 570 269 47.2 20.5 26.7 9.8 3.3 17.5 8.4 8.1 0.0
404 7.426666666666667 5 a-curv-i2 2022-23 Worcester-Claremont Academy 03480350 149 83 55.7 10.7 24.2 18.8 2.0 26.8 0.7 12.8 0.0
405 6.48 5 a-curv-i2 2022-23 Worcester-Doherty Memorial High 03480512 621 302 48.6 13.8 30.6 15.1 4.5 19.6 3.7 11.9 0.0
406 5.506666666666666 5 a-curv-i2 2022-23 Worcester-North High 03480515 624 258 41.3 14.1 19.6 7.2 3.7 6.1 5.9 4.2 0.0
407 6.16 5 a-curv-i2 2022-23 Worcester-South High Community 03480520 770 356 46.2 13.9 29.2 19.6 6.2 16.4 1.6 5.8 0.0
408 10.626666666666667 5 a-curv-i2 2022-23 Worcester-University Pk Campus School 03480285 74 59 79.7 54.1 29.7 20.3 24.3 32.4 1.4 24.3 0.0
409 5.88 5 a-curv-i2 2022-23 Worcester-Worcester Technical High 03480605 690 304 44.1 19.3 27.0 5.8 1.2 11.4 1.4 9.0 0.0
410 11.213333333333333 5 a-curv-i2 2021-22 Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School 04450105 182 153 84.1 31.9 68.1 28.0 0.0 35.7 16.5 30.8 0.0
411 10.520000000000001 5 a-curv-i2 2021-22 Abington-Abington High 00010505 294 232 78.9 13.6 78.2 6.8 0.0 14.3 0.7 0.0 0.0
412 11.360000000000001 5 a-curv-i2 2021-22 Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School 04120530 115 98 85.2 1.7 51.3 35.7 23.5 60.0 2.6 37.4 0.0

@ -1,4 +1,342 @@
Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Tests Taken,Score=1,Score=2,Score=3,Score=4,Score=5,% Score 1-2,% Score 3-5
9.14,5,a-curv-i3,2022-23,Abington - Abington High,00010505, 164, 40, 49, 51, 21, 3, 54.3, 45.7
1.16,1.16,a-curv-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 154, 120, 25, 5, 3, 1, 94.2, 5.8
18.6,5,a-curv-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,442", 22, 79, 229, 473, 639, 7.0, 93.0
16.48,5,a-curv-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 387, 17, 51, 87, 118, 114, 17.6, 82.4
12.24,5,a-curv-i3,2022-23,Agawam - Agawam High,00050505, 423, 60, 104, 140, 82, 37, 38.8, 61.2
16.8,5,a-curv-i3,2022-23,Amesbury - Amesbury High,00070505, 100, 4, 12, 31, 27, 26, 16.0, 84.0
16.78,5,a-curv-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 224, 7, 29, 58, 79, 51, 16.1, 83.9
16.22,5,a-curv-i3,2022-23,Andover - Andover High,00090505," 1,173", 55, 167, 281, 378, 292, 18.9, 81.1
15.62,5,a-curv-i3,2022-23,Arlington - Arlington High,00100505," 1,408", 94, 215, 379, 397, 323, 21.9, 78.1
11.9,5,a-curv-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 195, 21, 58, 62, 35, 19, 40.5, 59.5
18.4,5,a-curv-i3,2022-23,Ashland - Ashland High,00140505, 436, 10, 25, 78, 146, 177, 8.0, 92.0
7.459999999999999,5,a-curv-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110, 32, 37, 31, 9, 1, 62.7, 37.3
6.0600000000000005,5,a-curv-i3,2022-23,Athol-Royalston - Athol High,06150505, 99, 56, 13, 18, 9, 3, 69.7, 30.3
3.1,3.1,a-curv-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 116, 67, 31, 14, 4, 0, 84.5, 15.5
8.6,5,a-curv-i3,2022-23,Attleboro - Attleboro High,00160505, 646, 187, 181, 152, 99, 27, 57.0, 43.0
10.0,5,a-curv-i3,2022-23,Auburn - Auburn Senior High,00170505, 352, 70, 106, 109, 43, 24, 50.0, 50.0
9.559999999999999,5,a-curv-i3,2022-23,Avon - Avon Middle High School,00180510, 23, 3, 9, 6, 5, 0, 52.2, 47.8
13.219999999999999,5,a-curv-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 118, 12, 28, 33, 35, 10, 33.9, 66.1
8.6,5,a-curv-i3,2022-23,Barnstable - Barnstable High,00200505, 565, 146, 176, 125, 85, 33, 57.0, 43.0
1.8199999999999998,1.82,a-curv-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 22, 14, 6, 1, 1, 0, 90.9, 9.1
17.78,5,a-curv-i3,2022-23,Bedford - Bedford High,00230505, 478, 13, 40, 88, 139, 198, 11.1, 88.9
13.34,5,a-curv-i3,2022-23,Belchertown - Belchertown High,00240505, 111, 6, 31, 32, 24, 18, 33.3, 66.7
8.84,5,a-curv-i3,2022-23,Bellingham - Bellingham High School,00250505, 163, 45, 46, 43, 23, 6, 55.8, 44.2
18.5,5,a-curv-i3,2022-23,Belmont - Belmont High,00260505," 1,391", 16, 88, 232, 448, 607, 7.5, 92.5
14.280000000000001,5,a-curv-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 5, 3, 12, 7, 1, 28.6, 71.4
14.219999999999999,5,a-curv-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 90, 5, 21, 24, 17, 23, 28.9, 71.1
13.48,5,a-curv-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 144, 11, 36, 60, 22, 15, 32.6, 67.4
12.64,5,a-curv-i3,2022-23,Beverly - Beverly High,00300505, 456, 67, 101, 135, 98, 55, 36.8, 63.2
10.92,5,a-curv-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 599, 127, 145, 163, 102, 62, 45.4, 54.6
9.74,5,a-curv-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 374, 82, 110, 89, 68, 25, 51.3, 48.7
14.8,5,a-curv-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 77, 3, 17, 31, 17, 9, 26.0, 74.0
14.52,5,a-curv-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 62, 3, 14, 24, 16, 5, 27.4, 72.6
1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Another Course To College,00350541, 118, 97, 14, 3, 4, 0, 94.1, 5.9
1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Boston Arts Academy,00350546, 34, 28, 4, 2, 0, 0, 94.1, 5.9
0.0,1,a-curv-i3,2022-23,Boston - Boston Collaborative High School,00350755, 1,"","","","","","",""
3.5,3.5,a-curv-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 120, 59, 40, 21, 0, 0, 82.5, 17.5
3.34,3.34,a-curv-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 30, 18, 7, 4, 1, 0, 83.3, 16.7
10.459999999999999,5,a-curv-i3,2022-23,Boston - Boston Latin Academy,00350545," 1,107", 198, 330, 332, 160, 87, 47.7, 52.3
16.84,5,a-curv-i3,2022-23,Boston - Boston Latin School,00350560," 2,341", 111, 259, 585, 709, 677, 15.8, 84.2
5.42,5,a-curv-i3,2022-23,Boston - Brighton High School,00350505, 70, 40, 11, 5, 3, 11, 72.9, 27.1
1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Burke High School,00350525, 68, 59, 5, 4, 0, 0, 94.1, 5.9
2.8,2.8,a-curv-i3,2022-23,Boston - Charlestown High School,00350515, 93, 64, 16, 12, 1, 0, 86.0, 14.0
2.98,2.98,a-curv-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 47, 28, 12, 6, 0, 1, 85.1, 14.9
0.0,1,a-curv-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 36, 26, 10, 0, 0, 0, 100.0, .0
3.18,3.18,a-curv-i3,2022-23,Boston - East Boston High School,00350530, 88, 56, 18, 5, 4, 5, 84.1, 15.9
1.7,1.7,a-curv-i3,2022-23,Boston - English High School,00350535, 82, 58, 17, 4, 2, 1, 91.5, 8.5
3.8200000000000003,3.82,a-curv-i3,2022-23,Boston - Excel High School,00350522, 94, 48, 28, 12, 5, 1, 80.9, 19.1
10.28,5,a-curv-i3,2022-23,Boston - Fenway High School,00350540, 35, 11, 6, 11, 5, 2, 48.6, 51.4
2.32,2.32,a-curv-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 86, 49, 27, 6, 3, 1, 88.4, 11.6
0.0,1,a-curv-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"","","","","","",""
2.3,2.3,a-curv-i3,2022-23,Boston - Lyon High School,00350655, 26, 17, 6, 2, 1, 0, 88.5, 11.5
0.64,1,a-curv-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 31, 15, 15, 1, 0, 0, 96.8, 3.2
13.34,5,a-curv-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 42, 5, 9, 22, 1, 5, 33.3, 66.7
2.6,2.6,a-curv-i3,2022-23,Boston - New Mission High School,00350542, 192, 122, 45, 16, 4, 5, 87.0, 13.0
9.14,5,a-curv-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,288", 279, 421, 351, 162, 75, 54.3, 45.7
0.0,1,a-curv-i3,2022-23,Boston - Snowden International High School,00350690, 3,"","","","","","",""
6.6,5,a-curv-i3,2022-23,Boston - TechBoston Academy,00350657, 112, 28, 47, 27, 10, 0, 67.0, 33.0
6.0,5,a-curv-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 223, 91, 65, 42, 18, 7, 70.0, 30.0
1.98,1.98,a-curv-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 71, 47, 17, 6, 1, 0, 90.1, 9.9
3.54,3.54,a-curv-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 175, 90, 54, 24, 2, 5, 82.3, 17.7
7.5,5,a-curv-i3,2022-23,Bourne - Bourne High School,00360505, 128, 47, 33, 24, 17, 7, 62.5, 37.5
16.7,5,a-curv-i3,2022-23,Braintree - Braintree High,00400505, 771, 25, 102, 192, 235, 217, 16.5, 83.5
11.4,5,a-curv-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 440, 77, 112, 123, 80, 48, 43.0, 57.0
13.580000000000002,5,a-curv-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 81, 7, 19, 31, 20, 4, 32.1, 67.9
5.24,5,a-curv-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 61, 24, 21, 5, 11, 0, 73.8, 26.2
6.840000000000001,5,a-curv-i3,2022-23,Brockton - Brockton High,00440505, 407, 124, 144, 99, 32, 8, 65.8, 34.2
5.16,5,a-curv-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 597, 262, 181, 92, 44, 18, 74.2, 25.8
18.64,5,a-curv-i3,2022-23,Brookline - Brookline High,00460505," 1,109", 9, 66, 225, 316, 493, 6.8, 93.2
13.12,5,a-curv-i3,2022-23,Burlington - Burlington High,00480505, 462, 70, 89, 106, 111, 86, 34.4, 65.6
16.1,5,a-curv-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 841, 53, 111, 209, 209, 259, 19.5, 80.5
13.680000000000001,5,a-curv-i3,2022-23,Canton - Canton High,00500505, 500, 48, 110, 149, 128, 65, 31.6, 68.4
7.94,5,a-curv-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 58, 3, 32, 18, 5, 0, 60.3, 39.7
10.0,5,a-curv-i3,2022-23,Carver - Carver Middle/High School,00520405, 130, 30, 35, 32, 26, 7, 50.0, 50.0
9.68,5,a-curv-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 157, 25, 56, 42, 27, 7, 51.6, 48.4
14.459999999999999,5,a-curv-i3,2022-23,Chelmsford - Chelmsford High,00560505, 552, 42, 111, 187, 140, 72, 27.7, 72.3
7.140000000000001,5,a-curv-i3,2022-23,Chelsea - Chelsea High,00570505, 367, 120, 116, 67, 42, 22, 64.3, 35.7
0.0,1,a-curv-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 2,"","","","","","",""
8.98,5,a-curv-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 225, 46, 78, 55, 32, 14, 55.1, 44.9
10.5,5,a-curv-i3,2022-23,Chicopee - Chicopee High,00610505, 122, 17, 41, 46, 13, 5, 47.5, 52.5
2.2199999999999998,2.22,a-curv-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27, 16, 8, 3, 0, 0, 88.9, 11.1
7.42,5,a-curv-i3,2022-23,Clinton - Clinton Senior High,00640505, 167, 66, 39, 36, 18, 8, 62.9, 37.1
0.0,1,a-curv-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 61, 59, 2, 0, 0, 0, 100.0, .0
15.940000000000001,5,a-curv-i3,2022-23,Cohasset - Cohasset High School,00650505, 409, 34, 49, 107, 105, 114, 20.3, 79.7
8.48,5,a-curv-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33, 6, 13, 8, 4, 2, 57.6, 42.4
6.959999999999999,5,a-curv-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 69, 23, 22, 13, 6, 5, 65.2, 34.8
18.1,5,a-curv-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 783, 15, 59, 138, 263, 308, 9.5, 90.5
10.459999999999999,5,a-curv-i3,2022-23,Danvers - Danvers High,00710505, 486, 90, 142, 119, 99, 36, 47.7, 52.3
13.559999999999999,5,a-curv-i3,2022-23,Dartmouth - Dartmouth High,00720505, 550, 65, 112, 159, 140, 74, 32.2, 67.8
12.72,5,a-curv-i3,2022-23,Dedham - Dedham High,00730505, 382, 63, 76, 109, 78, 56, 36.4, 63.6
10.6,5,a-curv-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 315, 55, 93, 74, 70, 23, 47.0, 53.0
13.5,5,a-curv-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 197, 15, 49, 58, 49, 26, 32.5, 67.5
11.84,5,a-curv-i3,2022-23,Douglas - Douglas High School,00770505, 157, 17, 47, 54, 30, 9, 40.8, 59.2
18.98,5,a-curv-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 534, 1, 26, 105, 183, 219, 5.1, 94.9
10.559999999999999,5,a-curv-i3,2022-23,Dracut - Dracut Senior High,00790505, 265, 42, 83, 73, 51, 16, 47.2, 52.8
12.120000000000001,5,a-curv-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 325, 66, 62, 79, 72, 46, 39.4, 60.6
13.52,5,a-curv-i3,2022-23,Duxbury - Duxbury High,00820505, 749, 98, 145, 222, 167, 117, 32.4, 67.6
11.559999999999999,5,a-curv-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 268, 40, 73, 90, 48, 17, 42.2, 57.8
13.02,5,a-curv-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 335, 40, 77, 92, 76, 50, 34.9, 65.1
12.459999999999999,5,a-curv-i3,2022-23,Easthampton - Easthampton High,00860505, 167, 25, 38, 64, 21, 19, 37.7, 62.3
15.52,5,a-curv-i3,2022-23,Easton - Oliver Ames High,00880505, 575, 27, 102, 161, 171, 114, 22.4, 77.6
2.18,2.18,a-curv-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 101, 47, 43, 8, 2, 1, 89.1, 10.9
13.52,5,a-curv-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 148, 17, 31, 43, 36, 21, 32.4, 67.6
8.58,5,a-curv-i3,2022-23,Everett - Everett High,00930505, 476, 136, 136, 133, 43, 28, 57.1, 42.9
6.7,5,a-curv-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 768, 321, 190, 156, 72, 29, 66.5, 33.5
12.440000000000001,5,a-curv-i3,2022-23,Fairhaven - Fairhaven High,00940505, 275, 35, 69, 87, 54, 30, 37.8, 62.2
8.8,5,a-curv-i3,2022-23,Fall River - B M C Durfee High,00950505, 614, 148, 196, 188, 54, 28, 56.0, 44.0
14.36,5,a-curv-i3,2022-23,Falmouth - Falmouth High,00960505, 372, 32, 73, 100, 95, 72, 28.2, 71.8
6.540000000000001,5,a-curv-i3,2022-23,Fitchburg - Fitchburg High,00970505, 520, 203, 147, 101, 38, 31, 67.3, 32.7
0.0,1,a-curv-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 3,"","","","","","",""
14.12,5,a-curv-i3,2022-23,Foxborough - Foxborough High,00990505, 480, 35, 106, 148, 123, 68, 29.4, 70.6
10.040000000000001,5,a-curv-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 255, 58, 69, 76, 34, 18, 49.8, 50.2
15.52,5,a-curv-i3,2022-23,Framingham - Framingham High School,01000515, 924, 69, 138, 233, 272, 212, 22.4, 77.6
18.0,5,a-curv-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 20, 0, 2, 8, 6, 4, 10.0, 90.0
14.959999999999999,5,a-curv-i3,2022-23,Franklin - Franklin High,01010505," 1,157", 90, 201, 345, 297, 224, 25.2, 74.8
5.88,5,a-curv-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51, 15, 21, 12, 3, 0, 70.6, 29.4
16.0,5,a-curv-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 365, 15, 58, 116, 116, 60, 20.0, 80.0
16.56,5,a-curv-i3,2022-23,Frontier - Frontier Regional,06700505, 157, 1, 26, 47, 38, 45, 17.2, 82.8
8.36,5,a-curv-i3,2022-23,Gardner - Gardner High,01030505, 67, 17, 22, 17, 6, 5, 58.2, 41.8
11.0,5,a-curv-i3,2022-23,Gateway - Gateway Regional High,06720505, 40, 6, 12, 11, 8, 3, 45.0, 55.0
17.18,5,a-curv-i3,2022-23,Georgetown - Georgetown High School,01050505, 99, 3, 11, 21, 39, 25, 14.1, 85.9
11.42,5,a-curv-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 21, 2, 7, 1, 8, 3, 42.9, 57.1
0.0,1,a-curv-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 1,"","","","","","",""
10.559999999999999,5,a-curv-i3,2022-23,Gloucester - Gloucester High,01070505, 246, 58, 58, 63, 40, 27, 47.2, 52.8
15.440000000000001,5,a-curv-i3,2022-23,Grafton - Grafton High School,01100505, 337, 26, 51, 90, 122, 48, 22.8, 77.2
8.8,5,a-curv-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 50, 9, 19, 12, 8, 2, 56.0, 44.0
14.540000000000001,5,a-curv-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 11, 2, 1, 2, 3, 3, 27.3, 72.7
6.659999999999999,5,a-curv-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 114, 32, 44, 29, 7, 2, 66.7, 33.3
7.359999999999999,5,a-curv-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 223, 62, 79, 56, 21, 5, 63.2, 36.8
7.12,5,a-curv-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 104, 35, 32, 20, 17, 0, 64.4, 35.6
11.879999999999999,5,a-curv-i3,2022-23,Greenfield - Greenfield High,01140505, 96, 14, 25, 35, 15, 7, 40.6, 59.4
14.86,5,a-curv-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 335, 20, 66, 87, 84, 78, 25.7, 74.3
11.82,5,a-curv-i3,2022-23,Hadley - Hopkins Academy,01170505, 44, 6, 12, 12, 9, 5, 40.9, 59.1
16.740000000000002,5,a-curv-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 331, 17, 37, 107, 98, 72, 16.3, 83.7
10.84,5,a-curv-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 192, 44, 44, 46, 37, 21, 45.8, 54.2
0.0,1,a-curv-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 4,"","","","","","",""
15.1,5,a-curv-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 298, 24, 49, 85, 86, 54, 24.5, 75.5
15.040000000000001,5,a-curv-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 157, 7, 32, 46, 49, 23, 24.8, 75.2
15.38,5,a-curv-i3,2022-23,Hanover - Hanover High,01220505, 428, 26, 73, 134, 139, 56, 23.1, 76.9
18.82,5,a-curv-i3,2022-23,Harvard - Bromfield,01250505, 237, 5, 9, 41, 77, 105, 5.9, 94.1
7.779999999999999,5,a-curv-i3,2022-23,Hatfield - Smith Academy,01270505, 18, 2, 9, 6, 1, 0, 61.1, 38.9
11.18,5,a-curv-i3,2022-23,Haverhill - Haverhill High,01280505, 406, 60, 119, 104, 81, 42, 44.1, 55.9
18.78,5,a-curv-i3,2022-23,Hingham - Hingham High,01310505, 588, 7, 29, 144, 184, 224, 6.1, 93.9
14.6,5,a-curv-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 37, 4, 6, 9, 14, 4, 27.0, 73.0
14.940000000000001,5,a-curv-i3,2022-23,Holliston - Holliston High,01360505, 423, 36, 71, 112, 118, 86, 25.3, 74.7
5.62,5,a-curv-i3,2022-23,Holyoke - Holyoke High,01370505, 196, 72, 69, 38, 14, 3, 71.9, 28.1
5.46,5,a-curv-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 121, 50, 38, 25, 8, 0, 72.7, 27.3
15.62,5,a-curv-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 192, 18, 24, 71, 53, 26, 21.9, 78.1
18.080000000000002,5,a-curv-i3,2022-23,Hopkinton - Hopkinton High,01390505," 1,236", 26, 93, 227, 387, 503, 9.6, 90.4
10.18,5,a-curv-i3,2022-23,Hudson - Hudson High,01410505, 334, 67, 97, 102, 39, 29, 49.1, 50.9
14.64,5,a-curv-i3,2022-23,Hull - Hull High,01420505, 138, 11, 26, 36, 38, 27, 26.8, 73.2
2.2199999999999998,2.22,a-curv-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 18, 10, 6, 1, 1, 0, 88.9, 11.1
18.14,5,a-curv-i3,2022-23,Ipswich - Ipswich High,01440505, 302, 4, 24, 83, 111, 80, 9.3, 90.7
8.86,5,a-curv-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 246, 66, 71, 66, 32, 11, 55.7, 44.3
13.2,5,a-curv-i3,2022-23,King Philip - King Philip Regional High,06900505, 987, 145, 191, 260, 226, 165, 34.0, 66.0
5.32,5,a-curv-i3,2022-23,Lawrence - Lawrence High School,01490515, 925, 540, 139, 121, 74, 51, 73.4, 26.6
12.26,5,a-curv-i3,2022-23,Lee - Lee Middle/High School,01500505, 93, 14, 22, 40, 13, 4, 38.7, 61.3
15.0,5,a-curv-i3,2022-23,Leicester - Leicester High,01510505, 100, 6, 19, 42, 20, 13, 25.0, 75.0
8.74,5,a-curv-i3,2022-23,Lenox - Lenox Memorial High,01520505, 119, 34, 33, 23, 15, 14, 56.3, 43.7
11.7,5,a-curv-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 41, 3, 14, 8, 13, 3, 41.5, 58.5
12.379999999999999,5,a-curv-i3,2022-23,Leominster - Leominster High School,01530505, 226, 34, 52, 61, 62, 17, 38.1, 61.9
18.28,5,a-curv-i3,2022-23,Lexington - Lexington High,01550505," 2,555", 52, 169, 402, 744," 1,188", 8.6, 91.4
4.4799999999999995,4.48,a-curv-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 76, 49, 10, 10, 6, 1, 77.6, 22.4
18.98,5,a-curv-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 530, 11, 16, 89, 161, 253, 5.1, 94.9
15.440000000000001,5,a-curv-i3,2022-23,Littleton - Littleton High School,01580505, 237, 22, 32, 56, 72, 55, 22.8, 77.2
18.16,5,a-curv-i3,2022-23,Longmeadow - Longmeadow High,01590505, 444, 6, 35, 121, 144, 138, 9.2, 90.8
9.2,5,a-curv-i3,2022-23,Lowell - Lowell High,01600505, 389, 99, 111, 95, 56, 28, 54.0, 46.0
13.080000000000002,5,a-curv-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 315, 36, 73, 91, 74, 41, 34.6, 65.4
15.16,5,a-curv-i3,2022-23,Lunenburg - Lunenburg High,01620505, 165, 8, 32, 63, 43, 19, 24.2, 75.8
7.06,5,a-curv-i3,2022-23,Lynn - Classical High,01630505, 371, 144, 96, 81, 36, 14, 64.7, 35.3
7.1,5,a-curv-i3,2022-23,Lynn - Lynn English High,01630510, 287, 117, 68, 58, 29, 15, 64.5, 35.5
7.62,5,a-curv-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 21, 7, 6, 5, 3, 0, 61.9, 38.1
14.459999999999999,5,a-curv-i3,2022-23,Lynnfield - Lynnfield High,01640505, 488, 52, 83, 148, 125, 80, 27.7, 72.3
17.46,5,a-curv-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 142, 7, 11, 24, 43, 57, 12.7, 87.3
12.02,5,a-curv-i3,2022-23,Malden - Malden High,01650505, 594, 101, 136, 159, 113, 85, 39.9, 60.1
16.44,5,a-curv-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 349, 13, 49, 106, 105, 76, 17.8, 82.2
15.559999999999999,5,a-curv-i3,2022-23,Mansfield - Mansfield High,01670505, 553, 33, 90, 151, 176, 103, 22.2, 77.8
13.88,5,a-curv-i3,2022-23,Marblehead - Marblehead High,01680505, 677, 72, 135, 191, 177, 102, 30.6, 69.4
10.02,5,a-curv-i3,2022-23,Marlborough - Marlborough High,01700505, 359, 82, 97, 93, 51, 36, 49.9, 50.1
14.74,5,a-curv-i3,2022-23,Marshfield - Marshfield High,01710505, 520, 36, 101, 185, 119, 79, 26.3, 73.7
12.32,5,a-curv-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 323, 53, 71, 84, 81, 34, 38.4, 61.6
17.48,5,a-curv-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 437, 14, 41, 117, 150, 115, 12.6, 87.4
10.66,5,a-curv-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 246, 57, 58, 75, 46, 10, 46.7, 53.3
4.8,4.8,a-curv-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 304, 157, 74, 48, 20, 5, 76.0, 24.0
15.180000000000001,5,a-curv-i3,2022-23,Maynard - Maynard High,01740505, 158, 18, 20, 44, 43, 33, 24.1, 75.9
15.280000000000001,5,a-curv-i3,2022-23,Medfield - Medfield Senior High,01750505, 538, 46, 81, 155, 148, 108, 23.6, 76.4
15.36,5,a-curv-i3,2022-23,Medford - Medford High,01760505, 332, 34, 43, 98, 89, 68, 23.2, 76.8
13.14,5,a-curv-i3,2022-23,Medway - Medway High,01770505, 568, 66, 129, 147, 118, 108, 34.3, 65.7
12.4,5,a-curv-i3,2022-23,Melrose - Melrose High,01780505, 747, 94, 190, 190, 180, 93, 38.0, 62.0
15.280000000000001,5,a-curv-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 368, 24, 63, 91, 103, 87, 23.6, 76.4
11.959999999999999,5,a-curv-i3,2022-23,Methuen - Methuen High,01810505, 570, 99, 130, 193, 111, 37, 40.2, 59.8
11.14,5,a-curv-i3,2022-23,Middleborough - Middleborough High,01820505, 253, 49, 63, 69, 49, 23, 44.3, 55.7
10.14,5,a-curv-i3,2022-23,Milford - Milford High,01850505, 458, 101, 125, 129, 75, 28, 49.3, 50.7
12.620000000000001,5,a-curv-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 130, 18, 30, 46, 30, 6, 36.9, 63.1
12.98,5,a-curv-i3,2022-23,Millis - Millis High School,01870505, 194, 37, 31, 47, 43, 36, 35.1, 64.9
16.68,5,a-curv-i3,2022-23,Milton - Milton High,01890505, 819, 51, 85, 219, 294, 170, 16.6, 83.4
9.26,5,a-curv-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 67, 18, 18, 18, 6, 7, 53.7, 46.3
13.959999999999999,5,a-curv-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 53, 0, 16, 18, 15, 4, 30.2, 69.8
10.66,5,a-curv-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 317, 53, 95, 97, 52, 20, 46.7, 53.3
8.7,5,a-curv-i3,2022-23,Monson - Monson High School,01910505, 23, 7, 6, 6, 3, 1, 56.5, 43.5
11.32,5,a-curv-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 244, 34, 72, 80, 40, 18, 43.4, 56.6
13.8,5,a-curv-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 352, 43, 66, 108, 84, 51, 31.0, 69.0
11.959999999999999,5,a-curv-i3,2022-23,Nantucket - Nantucket High,01970505, 164, 27, 39, 48, 30, 20, 40.2, 59.8
6.94,5,a-curv-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 101, 27, 39, 25, 8, 2, 65.3, 34.7
15.52,5,a-curv-i3,2022-23,Nashoba - Nashoba Regional,07250505, 460, 34, 69, 112, 150, 95, 22.4, 77.6
4.16,4.16,a-curv-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 77, 36, 25, 12, 3, 1, 79.2, 20.8
17.68,5,a-curv-i3,2022-23,Natick - Natick High,01980505," 1,053", 29, 93, 227, 328, 376, 11.6, 88.4
14.780000000000001,5,a-curv-i3,2022-23,Nauset - Nauset Regional High,06600505, 501, 41, 90, 154, 134, 82, 26.1, 73.9
17.96,5,a-curv-i3,2022-23,Needham - Needham High,01990505, 958, 20, 78, 194, 299, 367, 10.2, 89.8
3.78,3.78,a-curv-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 90, 51, 22, 16, 1, 0, 81.1, 18.9
11.24,5,a-curv-i3,2022-23,New Bedford - New Bedford High,02010505, 553, 95, 147, 172, 92, 47, 43.8, 56.2
16.34,5,a-curv-i3,2022-23,Newburyport - Newburyport High,02040505, 416, 17, 59, 124, 140, 76, 18.3, 81.7
16.44,5,a-curv-i3,2022-23,Newton - Newton North High,02070505," 1,237", 55, 165, 275, 369, 373, 17.8, 82.2
17.32,5,a-curv-i3,2022-23,Newton - Newton South High,02070510," 1,118", 35, 115, 234, 347, 387, 13.4, 86.6
9.1,5,a-curv-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 11, 0, 6, 2, 3, 0, 54.5, 45.5
4.46,4.46,a-curv-i3,2022-23,North Adams - Drury High,02090505, 179, 103, 36, 34, 5, 1, 77.7, 22.3
14.8,5,a-curv-i3,2022-23,North Andover - North Andover High,02110505, 543, 40, 101, 159, 146, 97, 26.0, 74.0
14.2,5,a-curv-i3,2022-23,North Attleborough - North Attleboro High,02120505, 573, 44, 122, 162, 161, 84, 29.0, 71.0
3.44,3.44,a-curv-i3,2022-23,North Brookfield - North Brookfield High,02150505, 29, 8, 16, 4, 1, 0, 82.8, 17.2
13.14,5,a-curv-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 204, 18, 52, 69, 41, 24, 34.3, 65.7
16.06,5,a-curv-i3,2022-23,North Reading - North Reading High,02170505, 319, 15, 48, 65, 117, 74, 19.7, 80.3
14.34,5,a-curv-i3,2022-23,Northampton - Northampton High,02100505, 484, 31, 106, 147, 131, 69, 28.3, 71.7
2.3,2.3,a-curv-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 61, 41, 13, 5, 2, 0, 88.5, 11.5
16.94,5,a-curv-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 962, 56, 91, 224, 284, 307, 15.3, 84.7
12.78,5,a-curv-i3,2022-23,Northbridge - Northbridge High,02140505, 158, 27, 30, 46, 31, 24, 36.1, 63.9
3.38,3.38,a-curv-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 136, 82, 31, 18, 3, 2, 83.1, 16.9
4.4799999999999995,4.48,a-curv-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 49, 23, 15, 3, 8, 0, 77.6, 22.4
14.2,5,a-curv-i3,2022-23,Norton - Norton High,02180505, 338, 27, 71, 115, 85, 40, 29.0, 71.0
15.98,5,a-curv-i3,2022-23,Norwell - Norwell High,02190505, 433, 20, 67, 131, 125, 90, 20.1, 79.9
11.08,5,a-curv-i3,2022-23,Norwood - Norwood High,02200505, 527, 87, 148, 172, 85, 35, 44.6, 55.4
9.9,5,a-curv-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 97, 11, 38, 28, 17, 3, 50.5, 49.5
13.080000000000002,5,a-curv-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 332, 53, 62, 104, 72, 41, 34.6, 65.4
7.7,5,a-curv-i3,2022-23,Oxford - Oxford High,02260505, 78, 16, 32, 14, 9, 7, 61.5, 38.5
9.120000000000001,5,a-curv-i3,2022-23,Palmer - Palmer High,02270505, 103, 26, 30, 20, 25, 2, 54.4, 45.6
3.5200000000000005,3.52,a-curv-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 136, 68, 44, 19, 5, 0, 82.4, 17.6
0.0,1,a-curv-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 10, 9, 1, 0, 0, 0, 100.0, .0
13.02,5,a-curv-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 564, 56, 141, 178, 137, 52, 34.9, 65.1
13.040000000000001,5,a-curv-i3,2022-23,Pembroke - Pembroke High School,02310505, 428, 53, 96, 130, 81, 68, 34.8, 65.2
15.02,5,a-curv-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 297, 30, 44, 87, 97, 39, 24.9, 75.1
12.040000000000001,5,a-curv-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 123, 19, 30, 36, 26, 12, 39.8, 60.2
14.9,5,a-curv-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 161, 16, 25, 56, 44, 20, 25.5, 74.5
7.92,5,a-curv-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 48, 16, 13, 8, 7, 4, 60.4, 39.6
0.0,1,a-curv-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8,"","","","","","",""
10.18,5,a-curv-i3,2022-23,Pittsfield - Pittsfield High,02360505, 344, 72, 97, 99, 51, 25, 49.1, 50.9
6.840000000000001,5,a-curv-i3,2022-23,Pittsfield - Taconic High,02360510, 184, 62, 59, 42, 16, 5, 65.8, 34.2
14.059999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth North High,02390505, 367, 30, 79, 110, 93, 55, 29.7, 70.3
12.379999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth South High,02390515, 428, 64, 99, 124, 88, 53, 38.1, 61.9
5.779999999999999,5,a-curv-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 142, 71, 30, 23, 14, 4, 71.1, 28.9
12.14,5,a-curv-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 122, 18, 30, 39, 20, 15, 39.3, 60.7
13.34,5,a-curv-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 207, 22, 47, 68, 44, 26, 33.3, 66.7
14.8,5,a-curv-i3,2022-23,Quincy - North Quincy High,02430510, 739, 91, 101, 213, 200, 134, 26.0, 74.0
11.68,5,a-curv-i3,2022-23,Quincy - Quincy High,02430505, 461, 76, 116, 107, 104, 58, 41.6, 58.4
11.64,5,a-curv-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 55, 12, 11, 15, 12, 5, 41.8, 58.2
5.96,5,a-curv-i3,2022-23,Randolph - Randolph High,02440505, 168, 79, 39, 36, 9, 5, 70.2, 29.8
12.459999999999999,5,a-curv-i3,2022-23,Reading - Reading Memorial High,02460505, 616, 98, 134, 157, 129, 98, 37.7, 62.3
8.8,5,a-curv-i3,2022-23,Revere - Revere High,02480505, 639, 189, 169, 129, 86, 66, 56.0, 44.0
8.24,5,a-curv-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 34, 8, 12, 9, 4, 1, 58.8, 41.2
9.14,5,a-curv-i3,2022-23,Rockland - Rockland Senior High,02510505, 232, 41, 85, 69, 24, 13, 54.3, 45.7
9.68,5,a-curv-i3,2022-23,Rockport - Rockport High,02520510, 159, 25, 57, 46, 23, 8, 51.6, 48.4
3.8600000000000003,3.86,a-curv-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 876, 443, 264, 140, 27, 2, 80.7, 19.3
9.28,5,a-curv-i3,2022-23,Salem - Salem High,02580505, 207, 68, 43, 44, 39, 13, 53.6, 46.4
7.2,5,a-curv-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 333, 120, 93, 66, 42, 12, 64.0, 36.0
14.16,5,a-curv-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 367, 40, 67, 106, 102, 52, 29.2, 70.8
8.66,5,a-curv-i3,2022-23,Saugus - Saugus High,02620505, 270, 86, 67, 59, 41, 17, 56.7, 43.3
13.680000000000001,5,a-curv-i3,2022-23,Scituate - Scituate High School,02640505, 585, 61, 124, 182, 145, 73, 31.6, 68.4
9.72,5,a-curv-i3,2022-23,Seekonk - Seekonk High,02650505, 249, 64, 64, 58, 39, 24, 51.4, 48.6
18.2,5,a-curv-i3,2022-23,Sharon - Sharon High,02660505, 800, 20, 52, 163, 228, 337, 9.0, 91.0
16.8,5,a-curv-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 909, 35, 110, 198, 285, 281, 16.0, 84.0
13.419999999999998,5,a-curv-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 431, 46, 96, 130, 99, 60, 32.9, 67.1
8.879999999999999,5,a-curv-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 18, 5, 5, 3, 3, 2, 55.6, 44.4
15.059999999999999,5,a-curv-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 465, 39, 76, 139, 149, 62, 24.7, 75.3
12.059999999999999,5,a-curv-i3,2022-23,Somerville - Somerville High,02740505, 605, 106, 134, 136, 123, 106, 39.7, 60.3
16.2,5,a-curv-i3,2022-23,South Hadley - South Hadley High,02780505, 158, 8, 22, 41, 52, 35, 19.0, 81.0
9.379999999999999,5,a-curv-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 113, 28, 32, 31, 10, 12, 53.1, 46.9
10.059999999999999,5,a-curv-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 145, 26, 46, 30, 27, 16, 49.7, 50.3
0.0,1,a-curv-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 8,"","","","","","",""
5.42,5,a-curv-i3,2022-23,Southbridge - Southbridge High School,02770515, 59, 22, 21, 10, 3, 3, 72.9, 27.1
9.92,5,a-curv-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 268, 63, 72, 106, 20, 7, 50.4, 49.6
15.34,5,a-curv-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 30, 3, 4, 12, 7, 4, 23.3, 76.7
9.28,5,a-curv-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 183, 46, 52, 44, 32, 9, 53.6, 46.4
11.0,5,a-curv-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 120, 19, 35, 23, 28, 15, 45.0, 55.0
10.08,5,a-curv-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 119, 33, 26, 28, 16, 16, 49.6, 50.4
3.84,3.84,a-curv-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 26, 12, 9, 3, 2, 0, 80.8, 19.2
6.44,5,a-curv-i3,2022-23,Springfield - High School Of Commerce,02810510, 171, 66, 50, 43, 9, 3, 67.8, 32.2
3.9,3.9,a-curv-i3,2022-23,Springfield - John J Duggan Academy,02810320, 87, 48, 22, 15, 2, 0, 80.5, 19.5
4.0,4.0,a-curv-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 115, 52, 40, 16, 7, 0, 80.0, 20.0
7.62,5,a-curv-i3,2022-23,Springfield - Springfield Central High,02810500, 412, 144, 111, 103, 42, 12, 61.9, 38.1
2.48,2.48,a-curv-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 145, 89, 38, 16, 2, 0, 87.6, 12.4
4.0,4.0,a-curv-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 130, 78, 26, 15, 8, 3, 80.0, 20.0
4.279999999999999,4.28,a-curv-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 131, 72, 31, 17, 10, 1, 78.6, 21.4
10.8,5,a-curv-i3,2022-23,Stoneham - Stoneham High,02840505, 337, 59, 96, 100, 59, 23, 46.0, 54.0
10.72,5,a-curv-i3,2022-23,Stoughton - Stoughton High,02850505, 321, 75, 74, 77, 56, 39, 46.4, 53.6
10.459999999999999,5,a-curv-i3,2022-23,Sutton - Sutton High School,02900510, 279, 50, 83, 74, 50, 22, 47.7, 52.3
13.919999999999998,5,a-curv-i3,2022-23,Swampscott - Swampscott High,02910505, 438, 45, 88, 125, 114, 66, 30.4, 69.6
10.98,5,a-curv-i3,2022-23,Swansea - Joseph Case High,02920505, 162, 30, 43, 48, 31, 10, 45.1, 54.9
12.059999999999999,5,a-curv-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 68, 13, 14, 20, 10, 11, 39.7, 60.3
16.5,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 246, 6, 37, 83, 69, 51, 17.5, 82.5
12.0,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 15, 0, 6, 4, 4, 1, 40.0, 60.0
9.2,5,a-curv-i3,2022-23,Taunton - Taunton High,02930505, 641, 178, 168, 175, 90, 30, 54.0, 46.0
13.36,5,a-curv-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 416, 45, 93, 122, 88, 68, 33.2, 66.8
7.6,5,a-curv-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 142, 42, 46, 31, 17, 6, 62.0, 38.0
12.9,5,a-curv-i3,2022-23,Triton - Triton Regional High School,07730505, 203, 21, 51, 55, 48, 28, 35.5, 64.5
14.48,5,a-curv-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 105, 6, 23, 31, 24, 21, 27.6, 72.4
14.66,5,a-curv-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 15, 2, 2, 10, 1, 0, 26.7, 73.3
11.2,5,a-curv-i3,2022-23,Uxbridge - Uxbridge High,03040505, 116, 20, 31, 37, 18, 10, 44.0, 56.0
16.64,5,a-curv-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 786, 22, 110, 192, 237, 225, 16.8, 83.2
10.36,5,a-curv-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 409, 116, 81, 89, 79, 44, 48.2, 51.8
17.36,5,a-curv-i3,2022-23,Walpole - Walpole High,03070505, 425, 11, 45, 102, 152, 115, 13.2, 86.8
10.74,5,a-curv-i3,2022-23,Waltham - Waltham Sr High,03080505, 620, 118, 169, 151, 108, 74, 46.3, 53.7
11.48,5,a-curv-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 47, 7, 13, 17, 9, 1, 42.6, 57.4
4.1,4.1,a-curv-i3,2022-23,Wareham - Wareham Senior High,03100505, 73, 37, 21, 9, 6, 0, 79.5, 20.5
14.74,5,a-curv-i3,2022-23,Watertown - Watertown High,03140505, 281, 32, 42, 79, 76, 52, 26.3, 73.7
18.36,5,a-curv-i3,2022-23,Wayland - Wayland High School,03150505, 561, 11, 35, 111, 183, 221, 8.2, 91.8
9.42,5,a-curv-i3,2022-23,Webster - Bartlett High School,03160505, 68, 18, 18, 15, 13, 4, 52.9, 47.1
18.16,5,a-curv-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 925, 16, 69, 151, 322, 367, 9.2, 90.8
15.559999999999999,5,a-curv-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 72, 5, 11, 27, 17, 12, 22.2, 77.8
8.66,5,a-curv-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 203, 29, 86, 60, 19, 9, 56.7, 43.3
12.42,5,a-curv-i3,2022-23,West Springfield - West Springfield High,03320505, 480, 73, 109, 167, 88, 43, 37.9, 62.1
17.580000000000002,5,a-curv-i3,2022-23,Westborough - Westborough High,03210505, 628, 10, 66, 118, 224, 210, 12.1, 87.9
8.98,5,a-curv-i3,2022-23,Westfield - Westfield High,03250505, 216, 56, 63, 50, 33, 14, 55.1, 44.9
18.16,5,a-curv-i3,2022-23,Westford - Westford Academy,03260505," 1,063", 21, 77, 192, 359, 414, 9.2, 90.8
17.32,5,a-curv-i3,2022-23,Weston - Weston High,03300505, 610, 21, 61, 137, 162, 229, 13.4, 86.6
10.48,5,a-curv-i3,2022-23,Westport - Westport Middle-High School,03310515, 82, 20, 19, 23, 13, 7, 47.6, 52.4
17.580000000000002,5,a-curv-i3,2022-23,Westwood - Westwood High,03350505, 841, 17, 85, 190, 255, 294, 12.1, 87.9
14.66,5,a-curv-i3,2022-23,Weymouth - Weymouth High School,03360505, 555, 54, 94, 169, 164, 74, 26.7, 73.3
12.1,5,a-curv-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 458, 61, 120, 127, 106, 44, 39.5, 60.5
7.92,5,a-curv-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 48, 14, 15, 15, 3, 1, 60.4, 39.6
13.64,5,a-curv-i3,2022-23,Wilmington - Wilmington High,03420505, 403, 45, 83, 108, 94, 73, 31.8, 68.2
10.18,5,a-curv-i3,2022-23,Winchendon - Murdock High School,03430515, 53, 10, 16, 10, 14, 3, 49.1, 50.9
17.54,5,a-curv-i3,2022-23,Winchester - Winchester High School,03440505," 1,165", 28, 115, 289, 365, 368, 12.3, 87.7
5.4,5,a-curv-i3,2022-23,Winthrop - Winthrop High School,03460505, 319, 157, 76, 54, 29, 3, 73.0, 27.0
11.379999999999999,5,a-curv-i3,2022-23,Woburn - Woburn High,03470505, 397, 103, 68, 108, 79, 39, 43.1, 56.9
7.08,5,a-curv-i3,2022-23,Worcester - Burncoat Senior High,03480503, 396, 160, 96, 70, 49, 21, 64.6, 35.4
3.4200000000000004,3.42,a-curv-i3,2022-23,Worcester - Claremont Academy,03480350, 117, 95, 2, 10, 6, 4, 82.9, 17.1
8.82,5,a-curv-i3,2022-23,Worcester - Doherty Memorial High,03480512, 513, 176, 111, 118, 71, 37, 55.9, 44.1
3.3,3.3,a-curv-i3,2022-23,Worcester - North High,03480515, 249, 141, 67, 26, 12, 3, 83.5, 16.5
10.459999999999999,5,a-curv-i3,2022-23,Worcester - South High Community,03480520, 618, 153, 142, 156, 101, 66, 47.7, 52.3
5.84,5,a-curv-i3,2022-23,Worcester - University Pk Campus School,03480285, 72, 33, 18, 16, 4, 1, 70.8, 29.2
5.92,5,a-curv-i3,2022-23,Worcester - Worcester Technical High,03480605, 318, 102, 122, 50, 34, 10, 70.4, 29.6
12.88,5,a-curv-i3,2021-22,Abington - Abington High,00010505, 149, 15, 38, 50, 33, 13, 35.6, 64.4
1.48,1.48,a-curv-i3,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 135, 110, 15, 9, 1, 0, 92.6, 7.4
18.740000000000002,5,a-curv-i3,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,134", 19, 52, 145, 337, 581, 6.3, 93.7

1 Raw likert calculation Likert Score Admin Data Item Academic Year School Name DESE ID Tests Taken Score=1 Score=2 Score=3 Score=4 Score=5 % Score 1-2 % Score 3-5
2 9.14 5 a-curv-i3 2022-23 Abington - Abington High 00010505 164 40 49 51 21 3 54.3 45.7
3 1.16 1.16 a-curv-i3 2022-23 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 04120530 154 120 25 5 3 1 94.2 5.8
4 18.6 5 a-curv-i3 2022-23 Acton-Boxborough - Acton-Boxborough Regional High 06000505 1,442 22 79 229 473 639 7.0 93.0
5 16.48 5 a-curv-i3 2022-23 Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School 04300305 387 17 51 87 118 114 17.6 82.4
6 12.24 5 a-curv-i3 2022-23 Agawam - Agawam High 00050505 423 60 104 140 82 37 38.8 61.2
7 16.8 5 a-curv-i3 2022-23 Amesbury - Amesbury High 00070505 100 4 12 31 27 26 16.0 84.0
8 16.78 5 a-curv-i3 2022-23 Amherst-Pelham - Amherst Regional High 06050505 224 7 29 58 79 51 16.1 83.9
9 16.22 5 a-curv-i3 2022-23 Andover - Andover High 00090505 1,173 55 167 281 378 292 18.9 81.1
10 15.62 5 a-curv-i3 2022-23 Arlington - Arlington High 00100505 1,408 94 215 379 397 323 21.9 78.1
11 11.9 5 a-curv-i3 2022-23 Ashburnham-Westminster - Oakmont Regional High School 06100505 195 21 58 62 35 19 40.5 59.5
12 18.4 5 a-curv-i3 2022-23 Ashland - Ashland High 00140505 436 10 25 78 146 177 8.0 92.0
13 7.459999999999999 5 a-curv-i3 2022-23 Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School 08010605 110 32 37 31 9 1 62.7 37.3
14 6.0600000000000005 5 a-curv-i3 2022-23 Athol-Royalston - Athol High 06150505 99 56 13 18 9 3 69.7 30.3
15 3.1 3.1 a-curv-i3 2022-23 Atlantis Charter (District) - Atlantis Charter School 04910550 116 67 31 14 4 0 84.5 15.5
16 8.6 5 a-curv-i3 2022-23 Attleboro - Attleboro High 00160505 646 187 181 152 99 27 57.0 43.0
17 10.0 5 a-curv-i3 2022-23 Auburn - Auburn Senior High 00170505 352 70 106 109 43 24 50.0 50.0
18 9.559999999999999 5 a-curv-i3 2022-23 Avon - Avon Middle High School 00180510 23 3 9 6 5 0 52.2 47.8
19 13.219999999999999 5 a-curv-i3 2022-23 Ayer Shirley School District - Ayer Shirley Regional High School 06160505 118 12 28 33 35 10 33.9 66.1
20 8.6 5 a-curv-i3 2022-23 Barnstable - Barnstable High 00200505 565 146 176 125 85 33 57.0 43.0
21 1.8199999999999998 1.82 a-curv-i3 2022-23 Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School 35020405 22 14 6 1 1 0 90.9 9.1
22 17.78 5 a-curv-i3 2022-23 Bedford - Bedford High 00230505 478 13 40 88 139 198 11.1 88.9
23 13.34 5 a-curv-i3 2022-23 Belchertown - Belchertown High 00240505 111 6 31 32 24 18 33.3 66.7
24 8.84 5 a-curv-i3 2022-23 Bellingham - Bellingham High School 00250505 163 45 46 43 23 6 55.8 44.2
25 18.5 5 a-curv-i3 2022-23 Belmont - Belmont High 00260505 1,391 16 88 232 448 607 7.5 92.5
26 14.280000000000001 5 a-curv-i3 2022-23 Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School 04140305 28 5 3 12 7 1 28.6 71.4
27 14.219999999999999 5 a-curv-i3 2022-23 Berkshire Hills - Monument Mt Regional High 06180505 90 5 21 24 17 23 28.9 71.1
28 13.48 5 a-curv-i3 2022-23 Berlin-Boylston - Tahanto Regional High 06200505 144 11 36 60 22 15 32.6 67.4
29 12.64 5 a-curv-i3 2022-23 Beverly - Beverly High 00300505 456 67 101 135 98 55 36.8 63.2
30 10.92 5 a-curv-i3 2022-23 Billerica - Billerica Memorial High School 00310505 599 127 145 163 102 62 45.4 54.6
31 9.74 5 a-curv-i3 2022-23 Blackstone Valley Regional Vocational Technical - Blackstone Valley 08050605 374 82 110 89 68 25 51.3 48.7
32 14.8 5 a-curv-i3 2022-23 Blackstone-Millville - Blackstone Millville RHS 06220505 77 3 17 31 17 9 26.0 74.0
33 14.52 5 a-curv-i3 2022-23 Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical 08060605 62 3 14 24 16 5 27.4 72.6
34 1.1800000000000002 1.18 a-curv-i3 2022-23 Boston - Another Course To College 00350541 118 97 14 3 4 0 94.1 5.9
35 1.1800000000000002 1.18 a-curv-i3 2022-23 Boston - Boston Arts Academy 00350546 34 28 4 2 0 0 94.1 5.9
36 0.0 1 a-curv-i3 2022-23 Boston - Boston Collaborative High School 00350755 1
37 3.5 3.5 a-curv-i3 2022-23 Boston - Boston Community Leadership Academy 00350558 120 59 40 21 0 0 82.5 17.5
38 3.34 3.34 a-curv-i3 2022-23 Boston - Boston International High School & Newcomers Academy 00350507 30 18 7 4 1 0 83.3 16.7
39 10.459999999999999 5 a-curv-i3 2022-23 Boston - Boston Latin Academy 00350545 1,107 198 330 332 160 87 47.7 52.3
40 16.84 5 a-curv-i3 2022-23 Boston - Boston Latin School 00350560 2,341 111 259 585 709 677 15.8 84.2
41 5.42 5 a-curv-i3 2022-23 Boston - Brighton High School 00350505 70 40 11 5 3 11 72.9 27.1
42 1.1800000000000002 1.18 a-curv-i3 2022-23 Boston - Burke High School 00350525 68 59 5 4 0 0 94.1 5.9
43 2.8 2.8 a-curv-i3 2022-23 Boston - Charlestown High School 00350515 93 64 16 12 1 0 86.0 14.0
44 2.98 2.98 a-curv-i3 2022-23 Boston - Community Academy of Science and Health 00350581 47 28 12 6 0 1 85.1 14.9
45 0.0 1 a-curv-i3 2022-23 Boston - Dearborn 6-12 STEM Academy 00350074 36 26 10 0 0 0 100.0 .0
46 3.18 3.18 a-curv-i3 2022-23 Boston - East Boston High School 00350530 88 56 18 5 4 5 84.1 15.9
47 1.7 1.7 a-curv-i3 2022-23 Boston - English High School 00350535 82 58 17 4 2 1 91.5 8.5
48 3.8200000000000003 3.82 a-curv-i3 2022-23 Boston - Excel High School 00350522 94 48 28 12 5 1 80.9 19.1
49 10.28 5 a-curv-i3 2022-23 Boston - Fenway High School 00350540 35 11 6 11 5 2 48.6 51.4
50 2.32 2.32 a-curv-i3 2022-23 Boston - Henderson K-12 Inclusion School Upper 00350426 86 49 27 6 3 1 88.4 11.6
51 0.0 1 a-curv-i3 2022-23 Boston - Horace Mann School for the Deaf Hard of Hearing 00350750 1
52 2.3 2.3 a-curv-i3 2022-23 Boston - Lyon High School 00350655 26 17 6 2 1 0 88.5 11.5
53 0.64 1 a-curv-i3 2022-23 Boston - Madison Park Technical Vocational High School 00350537 31 15 15 1 0 0 96.8 3.2
54 13.34 5 a-curv-i3 2022-23 Boston - Margarita Muniz Academy 00350549 42 5 9 22 1 5 33.3 66.7
55 2.6 2.6 a-curv-i3 2022-23 Boston - New Mission High School 00350542 192 122 45 16 4 5 87.0 13.0
56 9.14 5 a-curv-i3 2022-23 Boston - O'Bryant School of Math & Science 00350575 1,288 279 421 351 162 75 54.3 45.7
57 0.0 1 a-curv-i3 2022-23 Boston - Snowden International High School 00350690 3
58 6.6 5 a-curv-i3 2022-23 Boston - TechBoston Academy 00350657 112 28 47 27 10 0 67.0 33.0
59 6.0 5 a-curv-i3 2022-23 Boston Collegiate Charter (District) - Boston Collegiate Charter School 04490305 223 91 65 42 18 7 70.0 30.0
60 1.98 1.98 a-curv-i3 2022-23 Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School 04110305 71 47 17 6 1 0 90.1 9.9
61 3.54 3.54 a-curv-i3 2022-23 Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School 04160305 175 90 54 24 2 5 82.3 17.7
62 7.5 5 a-curv-i3 2022-23 Bourne - Bourne High School 00360505 128 47 33 24 17 7 62.5 37.5
63 16.7 5 a-curv-i3 2022-23 Braintree - Braintree High 00400505 771 25 102 192 235 217 16.5 83.5
64 11.4 5 a-curv-i3 2022-23 Bridgewater-Raynham - Bridgewater-Raynham Regional 06250505 440 77 112 123 80 48 43.0 57.0
65 13.580000000000002 5 a-curv-i3 2022-23 Bristol County Agricultural - Bristol County Agricultural High 09100705 81 7 19 31 20 4 32.1 67.9
66 5.24 5 a-curv-i3 2022-23 Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical 08100605 61 24 21 5 11 0 73.8 26.2
67 6.840000000000001 5 a-curv-i3 2022-23 Brockton - Brockton High 00440505 407 124 144 99 32 8 65.8 34.2
68 5.16 5 a-curv-i3 2022-23 Brooke Charter School (District) - Brooke Charter School 04280305 597 262 181 92 44 18 74.2 25.8
69 18.64 5 a-curv-i3 2022-23 Brookline - Brookline High 00460505 1,109 9 66 225 316 493 6.8 93.2
70 13.12 5 a-curv-i3 2022-23 Burlington - Burlington High 00480505 462 70 89 106 111 86 34.4 65.6
71 16.1 5 a-curv-i3 2022-23 Cambridge - Cambridge Rindge and Latin 00490506 841 53 111 209 209 259 19.5 80.5
72 13.680000000000001 5 a-curv-i3 2022-23 Canton - Canton High 00500505 500 48 110 149 128 65 31.6 68.4
73 7.94 5 a-curv-i3 2022-23 Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical 08150605 58 3 32 18 5 0 60.3 39.7
74 10.0 5 a-curv-i3 2022-23 Carver - Carver Middle/High School 00520405 130 30 35 32 26 7 50.0 50.0
75 9.68 5 a-curv-i3 2022-23 Central Berkshire - Wahconah Regional High 06350505 157 25 56 42 27 7 51.6 48.4
76 14.459999999999999 5 a-curv-i3 2022-23 Chelmsford - Chelmsford High 00560505 552 42 111 187 140 72 27.7 72.3
77 7.140000000000001 5 a-curv-i3 2022-23 Chelsea - Chelsea High 00570505 367 120 116 67 42 22 64.3 35.7
78 0.0 1 a-curv-i3 2022-23 Chelsea - Chelsea Virtual Learning Academy 00570705 2
79 8.98 5 a-curv-i3 2022-23 Chicopee - Chicopee Comprehensive High School 00610510 225 46 78 55 32 14 55.1 44.9
80 10.5 5 a-curv-i3 2022-23 Chicopee - Chicopee High 00610505 122 17 41 46 13 5 47.5 52.5
81 2.2199999999999998 2.22 a-curv-i3 2022-23 City on a Hill Charter Public School (District) - City on a Hill Charter Public School 04370505 27 16 8 3 0 0 88.9 11.1
82 7.42 5 a-curv-i3 2022-23 Clinton - Clinton Senior High 00640505 167 66 39 36 18 8 62.9 37.1
83 0.0 1 a-curv-i3 2022-23 Codman Academy Charter Public (District) - Codman Academy Charter Public School 04380505 61 59 2 0 0 0 100.0 .0
84 15.940000000000001 5 a-curv-i3 2022-23 Cohasset - Cohasset High School 00650505 409 34 49 107 105 114 20.3 79.7
85 8.48 5 a-curv-i3 2022-23 Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell 35030205 33 6 13 8 4 2 57.6 42.4
86 6.959999999999999 5 a-curv-i3 2022-23 Community Charter School of Cambridge (District) - Community Charter School of Cambridge 04360305 69 23 22 13 6 5 65.2 34.8
87 18.1 5 a-curv-i3 2022-23 Concord-Carlisle - Concord Carlisle High 06400505 783 15 59 138 263 308 9.5 90.5
88 10.459999999999999 5 a-curv-i3 2022-23 Danvers - Danvers High 00710505 486 90 142 119 99 36 47.7 52.3
89 13.559999999999999 5 a-curv-i3 2022-23 Dartmouth - Dartmouth High 00720505 550 65 112 159 140 74 32.2 67.8
90 12.72 5 a-curv-i3 2022-23 Dedham - Dedham High 00730505 382 63 76 109 78 56 36.4 63.6
91 10.6 5 a-curv-i3 2022-23 Dennis-Yarmouth - Dennis-Yarmouth Regional High 06450505 315 55 93 74 70 23 47.0 53.0
92 13.5 5 a-curv-i3 2022-23 Dighton-Rehoboth - Dighton-Rehoboth Regional High School 06500505 197 15 49 58 49 26 32.5 67.5
93 11.84 5 a-curv-i3 2022-23 Douglas - Douglas High School 00770505 157 17 47 54 30 9 40.8 59.2
94 18.98 5 a-curv-i3 2022-23 Dover-Sherborn - Dover-Sherborn Regional High 06550505 534 1 26 105 183 219 5.1 94.9
95 10.559999999999999 5 a-curv-i3 2022-23 Dracut - Dracut Senior High 00790505 265 42 83 73 51 16 47.2 52.8
96 12.120000000000001 5 a-curv-i3 2022-23 Dudley-Charlton Reg - Shepherd Hill Regional High 06580505 325 66 62 79 72 46 39.4 60.6
97 13.52 5 a-curv-i3 2022-23 Duxbury - Duxbury High 00820505 749 98 145 222 167 117 32.4 67.6
98 11.559999999999999 5 a-curv-i3 2022-23 East Bridgewater - East Bridgewater JR./SR. High School 00830505 268 40 73 90 48 17 42.2 57.8
99 13.02 5 a-curv-i3 2022-23 East Longmeadow - East Longmeadow High 00870505 335 40 77 92 76 50 34.9 65.1
100 12.459999999999999 5 a-curv-i3 2022-23 Easthampton - Easthampton High 00860505 167 25 38 64 21 19 37.7 62.3
101 15.52 5 a-curv-i3 2022-23 Easton - Oliver Ames High 00880505 575 27 102 161 171 114 22.4 77.6
102 2.18 2.18 a-curv-i3 2022-23 Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School 04520505 101 47 43 8 2 1 89.1 10.9
103 13.52 5 a-curv-i3 2022-23 Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School 08170505 148 17 31 43 36 21 32.4 67.6
104 8.58 5 a-curv-i3 2022-23 Everett - Everett High 00930505 476 136 136 133 43 28 57.1 42.9
105 6.7 5 a-curv-i3 2022-23 Excel Academy Charter (District) - Excel Academy Charter School 04100205 768 321 190 156 72 29 66.5 33.5
106 12.440000000000001 5 a-curv-i3 2022-23 Fairhaven - Fairhaven High 00940505 275 35 69 87 54 30 37.8 62.2
107 8.8 5 a-curv-i3 2022-23 Fall River - B M C Durfee High 00950505 614 148 196 188 54 28 56.0 44.0
108 14.36 5 a-curv-i3 2022-23 Falmouth - Falmouth High 00960505 372 32 73 100 95 72 28.2 71.8
109 6.540000000000001 5 a-curv-i3 2022-23 Fitchburg - Fitchburg High 00970505 520 203 147 101 38 31 67.3 32.7
110 0.0 1 a-curv-i3 2022-23 Four Rivers Charter Public (District) - Four Rivers Charter Public School 04130505 3
111 14.12 5 a-curv-i3 2022-23 Foxborough - Foxborough High 00990505 480 35 106 148 123 68 29.4 70.6
112 10.040000000000001 5 a-curv-i3 2022-23 Foxborough Regional Charter (District) - Foxborough Regional Charter School 04460550 255 58 69 76 34 18 49.8 50.2
113 15.52 5 a-curv-i3 2022-23 Framingham - Framingham High School 01000515 924 69 138 233 272 212 22.4 77.6
114 18.0 5 a-curv-i3 2022-23 Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School 04780505 20 0 2 8 6 4 10.0 90.0
115 14.959999999999999 5 a-curv-i3 2022-23 Franklin - Franklin High 01010505 1,157 90 201 345 297 224 25.2 74.8
116 5.88 5 a-curv-i3 2022-23 Franklin County Regional Vocational Technical - Franklin County Technical 08180605 51 15 21 12 3 0 70.6 29.4
117 16.0 5 a-curv-i3 2022-23 Freetown-Lakeville - Apponequet Regional High 06650505 365 15 58 116 116 60 20.0 80.0
118 16.56 5 a-curv-i3 2022-23 Frontier - Frontier Regional 06700505 157 1 26 47 38 45 17.2 82.8
119 8.36 5 a-curv-i3 2022-23 Gardner - Gardner High 01030505 67 17 22 17 6 5 58.2 41.8
120 11.0 5 a-curv-i3 2022-23 Gateway - Gateway Regional High 06720505 40 6 12 11 8 3 45.0 55.0
121 17.18 5 a-curv-i3 2022-23 Georgetown - Georgetown High School 01050505 99 3 11 21 39 25 14.1 85.9
122 11.42 5 a-curv-i3 2022-23 Gill-Montague - Turners Fall High 06740505 21 2 7 1 8 3 42.9 57.1
123 0.0 1 a-curv-i3 2022-23 Global Learning Charter Public (District) - Global Learning Charter Public School 04960305 1
124 10.559999999999999 5 a-curv-i3 2022-23 Gloucester - Gloucester High 01070505 246 58 58 63 40 27 47.2 52.8
125 15.440000000000001 5 a-curv-i3 2022-23 Grafton - Grafton High School 01100505 337 26 51 90 122 48 22.8 77.2
126 8.8 5 a-curv-i3 2022-23 Granby - Granby Jr Sr High School 01110505 50 9 19 12 8 2 56.0 44.0
127 14.540000000000001 5 a-curv-i3 2022-23 Greater Commonwealth Virtual District - Greater Commonwealth Virtual School 39010900 11 2 1 2 3 3 27.3 72.7
128 6.659999999999999 5 a-curv-i3 2022-23 Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High 08210605 114 32 44 29 7 2 66.7 33.3
129 7.359999999999999 5 a-curv-i3 2022-23 Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical 08280605 223 62 79 56 21 5 63.2 36.8
130 7.12 5 a-curv-i3 2022-23 Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical 08250605 104 35 32 20 17 0 64.4 35.6
131 11.879999999999999 5 a-curv-i3 2022-23 Greenfield - Greenfield High 01140505 96 14 25 35 15 7 40.6 59.4
132 14.86 5 a-curv-i3 2022-23 Groton-Dunstable - Groton Dunstable Regional 06730505 335 20 66 87 84 78 25.7 74.3
133 11.82 5 a-curv-i3 2022-23 Hadley - Hopkins Academy 01170505 44 6 12 12 9 5 40.9 59.1
134 16.740000000000002 5 a-curv-i3 2022-23 Hamilton-Wenham - Hamilton-Wenham Regional High 06750505 331 17 37 107 98 72 16.3 83.7
135 10.84 5 a-curv-i3 2022-23 Hampden Charter School of Science East (District) - Hampden Charter School of Science East 04990305 192 44 44 46 37 21 45.8 54.2
136 0.0 1 a-curv-i3 2022-23 Hampden Charter School of Science West (District) - Hampden Charter School of Science West 35160305 4
137 15.1 5 a-curv-i3 2022-23 Hampden-Wilbraham - Minnechaug Regional High 06800505 298 24 49 85 86 54 24.5 75.5
138 15.040000000000001 5 a-curv-i3 2022-23 Hampshire - Hampshire Regional High 06830505 157 7 32 46 49 23 24.8 75.2
139 15.38 5 a-curv-i3 2022-23 Hanover - Hanover High 01220505 428 26 73 134 139 56 23.1 76.9
140 18.82 5 a-curv-i3 2022-23 Harvard - Bromfield 01250505 237 5 9 41 77 105 5.9 94.1
141 7.779999999999999 5 a-curv-i3 2022-23 Hatfield - Smith Academy 01270505 18 2 9 6 1 0 61.1 38.9
142 11.18 5 a-curv-i3 2022-23 Haverhill - Haverhill High 01280505 406 60 119 104 81 42 44.1 55.9
143 18.78 5 a-curv-i3 2022-23 Hingham - Hingham High 01310505 588 7 29 144 184 224 6.1 93.9
144 14.6 5 a-curv-i3 2022-23 Holbrook - Holbrook Middle High School 01330505 37 4 6 9 14 4 27.0 73.0
145 14.940000000000001 5 a-curv-i3 2022-23 Holliston - Holliston High 01360505 423 36 71 112 118 86 25.3 74.7
146 5.62 5 a-curv-i3 2022-23 Holyoke - Holyoke High 01370505 196 72 69 38 14 3 71.9 28.1
147 5.46 5 a-curv-i3 2022-23 Hoosac Valley Regional - Hoosac Valley High School 06030505 121 50 38 25 8 0 72.7 27.3
148 15.62 5 a-curv-i3 2022-23 Hopedale - Hopedale Jr Sr High 01380505 192 18 24 71 53 26 21.9 78.1
149 18.080000000000002 5 a-curv-i3 2022-23 Hopkinton - Hopkinton High 01390505 1,236 26 93 227 387 503 9.6 90.4
150 10.18 5 a-curv-i3 2022-23 Hudson - Hudson High 01410505 334 67 97 102 39 29 49.1 50.9
151 14.64 5 a-curv-i3 2022-23 Hull - Hull High 01420505 138 11 26 36 38 27 26.8 73.2
152 2.2199999999999998 2.22 a-curv-i3 2022-23 Innovation Academy Charter (District) - Innovation Academy Charter School 04350305 18 10 6 1 1 0 88.9 11.1
153 18.14 5 a-curv-i3 2022-23 Ipswich - Ipswich High 01440505 302 4 24 83 111 80 9.3 90.7
154 8.86 5 a-curv-i3 2022-23 KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School 04290010 246 66 71 66 32 11 55.7 44.3
155 13.2 5 a-curv-i3 2022-23 King Philip - King Philip Regional High 06900505 987 145 191 260 226 165 34.0 66.0
156 5.32 5 a-curv-i3 2022-23 Lawrence - Lawrence High School 01490515 925 540 139 121 74 51 73.4 26.6
157 12.26 5 a-curv-i3 2022-23 Lee - Lee Middle/High School 01500505 93 14 22 40 13 4 38.7 61.3
158 15.0 5 a-curv-i3 2022-23 Leicester - Leicester High 01510505 100 6 19 42 20 13 25.0 75.0
159 8.74 5 a-curv-i3 2022-23 Lenox - Lenox Memorial High 01520505 119 34 33 23 15 14 56.3 43.7
160 11.7 5 a-curv-i3 2022-23 Leominster - Center For Technical Education Innovation 01530605 41 3 14 8 13 3 41.5 58.5
161 12.379999999999999 5 a-curv-i3 2022-23 Leominster - Leominster High School 01530505 226 34 52 61 62 17 38.1 61.9
162 18.28 5 a-curv-i3 2022-23 Lexington - Lexington High 01550505 2,555 52 169 402 744 1,188 8.6 91.4
163 4.4799999999999995 4.48 a-curv-i3 2022-23 Libertas Academy Charter School (District) - Libertas Academy Charter School 35140305 76 49 10 10 6 1 77.6 22.4
164 18.98 5 a-curv-i3 2022-23 Lincoln-Sudbury - Lincoln-Sudbury Regional High 06950505 530 11 16 89 161 253 5.1 94.9
165 15.440000000000001 5 a-curv-i3 2022-23 Littleton - Littleton High School 01580505 237 22 32 56 72 55 22.8 77.2
166 18.16 5 a-curv-i3 2022-23 Longmeadow - Longmeadow High 01590505 444 6 35 121 144 138 9.2 90.8
167 9.2 5 a-curv-i3 2022-23 Lowell - Lowell High 01600505 389 99 111 95 56 28 54.0 46.0
168 13.080000000000002 5 a-curv-i3 2022-23 Ludlow - Ludlow Senior High 01610505 315 36 73 91 74 41 34.6 65.4
169 15.16 5 a-curv-i3 2022-23 Lunenburg - Lunenburg High 01620505 165 8 32 63 43 19 24.2 75.8
170 7.06 5 a-curv-i3 2022-23 Lynn - Classical High 01630505 371 144 96 81 36 14 64.7 35.3
171 7.1 5 a-curv-i3 2022-23 Lynn - Lynn English High 01630510 287 117 68 58 29 15 64.5 35.5
172 7.62 5 a-curv-i3 2022-23 Lynn - Lynn Vocational Technical Institute 01630605 21 7 6 5 3 0 61.9 38.1
173 14.459999999999999 5 a-curv-i3 2022-23 Lynnfield - Lynnfield High 01640505 488 52 83 148 125 80 27.7 72.3
174 17.46 5 a-curv-i3 2022-23 Ma Academy for Math and Science - Ma Academy for Math and Science School 04680505 142 7 11 24 43 57 12.7 87.3
175 12.02 5 a-curv-i3 2022-23 Malden - Malden High 01650505 594 101 136 159 113 85 39.9 60.1
176 16.44 5 a-curv-i3 2022-23 Manchester Essex Regional - Manchester Essex Regional High School 06980510 349 13 49 106 105 76 17.8 82.2
177 15.559999999999999 5 a-curv-i3 2022-23 Mansfield - Mansfield High 01670505 553 33 90 151 176 103 22.2 77.8
178 13.88 5 a-curv-i3 2022-23 Marblehead - Marblehead High 01680505 677 72 135 191 177 102 30.6 69.4
179 10.02 5 a-curv-i3 2022-23 Marlborough - Marlborough High 01700505 359 82 97 93 51 36 49.9 50.1
180 14.74 5 a-curv-i3 2022-23 Marshfield - Marshfield High 01710505 520 36 101 185 119 79 26.3 73.7
181 12.32 5 a-curv-i3 2022-23 Martha's Vineyard - Martha's Vineyard Regional High 07000505 323 53 71 84 81 34 38.4 61.6
182 17.48 5 a-curv-i3 2022-23 Masconomet - Masconomet Regional High School 07050505 437 14 41 117 150 115 12.6 87.4
183 10.66 5 a-curv-i3 2022-23 Mashpee - Mashpee Middle-High School 01720505 246 57 58 75 46 10 46.7 53.3
184 4.8 4.8 a-curv-i3 2022-23 Match Charter Public School (District) - Match Charter Public School 04690505 304 157 74 48 20 5 76.0 24.0
185 15.180000000000001 5 a-curv-i3 2022-23 Maynard - Maynard High 01740505 158 18 20 44 43 33 24.1 75.9
186 15.280000000000001 5 a-curv-i3 2022-23 Medfield - Medfield Senior High 01750505 538 46 81 155 148 108 23.6 76.4
187 15.36 5 a-curv-i3 2022-23 Medford - Medford High 01760505 332 34 43 98 89 68 23.2 76.8
188 13.14 5 a-curv-i3 2022-23 Medway - Medway High 01770505 568 66 129 147 118 108 34.3 65.7
189 12.4 5 a-curv-i3 2022-23 Melrose - Melrose High 01780505 747 94 190 190 180 93 38.0 62.0
190 15.280000000000001 5 a-curv-i3 2022-23 Mendon-Upton - Nipmuc Regional High 07100510 368 24 63 91 103 87 23.6 76.4
191 11.959999999999999 5 a-curv-i3 2022-23 Methuen - Methuen High 01810505 570 99 130 193 111 37 40.2 59.8
192 11.14 5 a-curv-i3 2022-23 Middleborough - Middleborough High 01820505 253 49 63 69 49 23 44.3 55.7
193 10.14 5 a-curv-i3 2022-23 Milford - Milford High 01850505 458 101 125 129 75 28 49.3 50.7
194 12.620000000000001 5 a-curv-i3 2022-23 Millbury - Millbury Junior/Senior High 01860505 130 18 30 46 30 6 36.9 63.1
195 12.98 5 a-curv-i3 2022-23 Millis - Millis High School 01870505 194 37 31 47 43 36 35.1 64.9
196 16.68 5 a-curv-i3 2022-23 Milton - Milton High 01890505 819 51 85 219 294 170 16.6 83.4
197 9.26 5 a-curv-i3 2022-23 Minuteman Regional Vocational Technical - Minuteman Regional High 08300605 67 18 18 18 6 7 53.7 46.3
198 13.959999999999999 5 a-curv-i3 2022-23 Mohawk Trail - Mohawk Trail Regional School 07170505 53 0 16 18 15 4 30.2 69.8
199 10.66 5 a-curv-i3 2022-23 Monomoy Regional School District - Monomoy Regional High School 07120515 317 53 95 97 52 20 46.7 53.3
200 8.7 5 a-curv-i3 2022-23 Monson - Monson High School 01910505 23 7 6 6 3 1 56.5 43.5
201 11.32 5 a-curv-i3 2022-23 Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical 08320605 244 34 72 80 40 18 43.4 56.6
202 13.8 5 a-curv-i3 2022-23 Mount Greylock - Mt Greylock Regional High 07150505 352 43 66 108 84 51 31.0 69.0
203 11.959999999999999 5 a-curv-i3 2022-23 Nantucket - Nantucket High 01970505 164 27 39 48 30 20 40.2 59.8
204 6.94 5 a-curv-i3 2022-23 Narragansett - Narragansett Regional High 07200505 101 27 39 25 8 2 65.3 34.7
205 15.52 5 a-curv-i3 2022-23 Nashoba - Nashoba Regional 07250505 460 34 69 112 150 95 22.4 77.6
206 4.16 4.16 a-curv-i3 2022-23 Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School 08520605 77 36 25 12 3 1 79.2 20.8
207 17.68 5 a-curv-i3 2022-23 Natick - Natick High 01980505 1,053 29 93 227 328 376 11.6 88.4
208 14.780000000000001 5 a-curv-i3 2022-23 Nauset - Nauset Regional High 06600505 501 41 90 154 134 82 26.1 73.9
209 17.96 5 a-curv-i3 2022-23 Needham - Needham High 01990505 958 20 78 194 299 367 10.2 89.8
210 3.78 3.78 a-curv-i3 2022-23 Neighborhood House Charter (District) - Neighborhood House Charter School 04440205 90 51 22 16 1 0 81.1 18.9
211 11.24 5 a-curv-i3 2022-23 New Bedford - New Bedford High 02010505 553 95 147 172 92 47 43.8 56.2
212 16.34 5 a-curv-i3 2022-23 Newburyport - Newburyport High 02040505 416 17 59 124 140 76 18.3 81.7
213 16.44 5 a-curv-i3 2022-23 Newton - Newton North High 02070505 1,237 55 165 275 369 373 17.8 82.2
214 17.32 5 a-curv-i3 2022-23 Newton - Newton South High 02070510 1,118 35 115 234 347 387 13.4 86.6
215 9.1 5 a-curv-i3 2022-23 Norfolk County Agricultural - Norfolk County Agricultural 09150705 11 0 6 2 3 0 54.5 45.5
216 4.46 4.46 a-curv-i3 2022-23 North Adams - Drury High 02090505 179 103 36 34 5 1 77.7 22.3
217 14.8 5 a-curv-i3 2022-23 North Andover - North Andover High 02110505 543 40 101 159 146 97 26.0 74.0
218 14.2 5 a-curv-i3 2022-23 North Attleborough - North Attleboro High 02120505 573 44 122 162 161 84 29.0 71.0
219 3.44 3.44 a-curv-i3 2022-23 North Brookfield - North Brookfield High 02150505 29 8 16 4 1 0 82.8 17.2
220 13.14 5 a-curv-i3 2022-23 North Middlesex - North Middlesex Regional 07350505 204 18 52 69 41 24 34.3 65.7
221 16.06 5 a-curv-i3 2022-23 North Reading - North Reading High 02170505 319 15 48 65 117 74 19.7 80.3
222 14.34 5 a-curv-i3 2022-23 Northampton - Northampton High 02100505 484 31 106 147 131 69 28.3 71.7
223 2.3 2.3 a-curv-i3 2022-23 Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High 04060705 61 41 13 5 2 0 88.5 11.5
224 16.94 5 a-curv-i3 2022-23 Northboro-Southboro - Algonquin Regional High 07300505 962 56 91 224 284 307 15.3 84.7
225 12.78 5 a-curv-i3 2022-23 Northbridge - Northbridge High 02140505 158 27 30 46 31 24 36.1 63.9
226 3.38 3.38 a-curv-i3 2022-23 Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational 08530605 136 82 31 18 3 2 83.1 16.9
227 4.4799999999999995 4.48 a-curv-i3 2022-23 Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical 08510605 49 23 15 3 8 0 77.6 22.4
228 14.2 5 a-curv-i3 2022-23 Norton - Norton High 02180505 338 27 71 115 85 40 29.0 71.0
229 15.98 5 a-curv-i3 2022-23 Norwell - Norwell High 02190505 433 20 67 131 125 90 20.1 79.9
230 11.08 5 a-curv-i3 2022-23 Norwood - Norwood High 02200505 527 87 148 172 85 35 44.6 55.4
231 9.9 5 a-curv-i3 2022-23 Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical 08550605 97 11 38 28 17 3 50.5 49.5
232 13.080000000000002 5 a-curv-i3 2022-23 Old Rochester - Old Rochester Regional High 07400505 332 53 62 104 72 41 34.6 65.4
233 7.7 5 a-curv-i3 2022-23 Oxford - Oxford High 02260505 78 16 32 14 9 7 61.5 38.5
234 9.120000000000001 5 a-curv-i3 2022-23 Palmer - Palmer High 02270505 103 26 30 20 25 2 54.4 45.6
235 3.5200000000000005 3.52 a-curv-i3 2022-23 Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical 08600605 136 68 44 19 5 0 82.4 17.6
236 0.0 1 a-curv-i3 2022-23 Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School 35010505 10 9 1 0 0 0 100.0 .0
237 13.02 5 a-curv-i3 2022-23 Peabody - Peabody Veterans Memorial High 02290510 564 56 141 178 137 52 34.9 65.1
238 13.040000000000001 5 a-curv-i3 2022-23 Pembroke - Pembroke High School 02310505 428 53 96 130 81 68 34.8 65.2
239 15.02 5 a-curv-i3 2022-23 Pentucket - Pentucket Regional Sr High 07450505 297 30 44 87 97 39 24.9 75.1
240 12.040000000000001 5 a-curv-i3 2022-23 Pioneer Charter School of Science (District) - Pioneer Charter School of Science 04940205 123 19 30 36 26 12 39.8 60.2
241 14.9 5 a-curv-i3 2022-23 Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II 35060505 161 16 25 56 44 20 25.5 74.5
242 7.92 5 a-curv-i3 2022-23 Pioneer Valley - Pioneer Valley Regional 07500505 48 16 13 8 7 4 60.4 39.6
243 0.0 1 a-curv-i3 2022-23 Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School 04790505 8
244 10.18 5 a-curv-i3 2022-23 Pittsfield - Pittsfield High 02360505 344 72 97 99 51 25 49.1 50.9
245 6.840000000000001 5 a-curv-i3 2022-23 Pittsfield - Taconic High 02360510 184 62 59 42 16 5 65.8 34.2
246 14.059999999999999 5 a-curv-i3 2022-23 Plymouth - Plymouth North High 02390505 367 30 79 110 93 55 29.7 70.3
247 12.379999999999999 5 a-curv-i3 2022-23 Plymouth - Plymouth South High 02390515 428 64 99 124 88 53 38.1 61.9
248 5.779999999999999 5 a-curv-i3 2022-23 Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School 04870550 142 71 30 23 14 4 71.1 28.9
249 12.14 5 a-curv-i3 2022-23 Quabbin - Quabbin Regional High School 07530505 122 18 30 39 20 15 39.3 60.7
250 13.34 5 a-curv-i3 2022-23 Quaboag Regional - Quaboag Regional High 07780505 207 22 47 68 44 26 33.3 66.7
251 14.8 5 a-curv-i3 2022-23 Quincy - North Quincy High 02430510 739 91 101 213 200 134 26.0 74.0
252 11.68 5 a-curv-i3 2022-23 Quincy - Quincy High 02430505 461 76 116 107 104 58 41.6 58.4
253 11.64 5 a-curv-i3 2022-23 Ralph C Mahar - Ralph C Mahar Regional 07550505 55 12 11 15 12 5 41.8 58.2
254 5.96 5 a-curv-i3 2022-23 Randolph - Randolph High 02440505 168 79 39 36 9 5 70.2 29.8
255 12.459999999999999 5 a-curv-i3 2022-23 Reading - Reading Memorial High 02460505 616 98 134 157 129 98 37.7 62.3
256 8.8 5 a-curv-i3 2022-23 Revere - Revere High 02480505 639 189 169 129 86 66 56.0 44.0
257 8.24 5 a-curv-i3 2022-23 Rising Tide Charter Public (District) - Rising Tide Charter Public School 04830305 34 8 12 9 4 1 58.8 41.2
258 9.14 5 a-curv-i3 2022-23 Rockland - Rockland Senior High 02510505 232 41 85 69 24 13 54.3 45.7
259 9.68 5 a-curv-i3 2022-23 Rockport - Rockport High 02520510 159 25 57 46 23 8 51.6 48.4
260 3.8600000000000003 3.86 a-curv-i3 2022-23 Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School 04840505 876 443 264 140 27 2 80.7 19.3
261 9.28 5 a-curv-i3 2022-23 Salem - Salem High 02580505 207 68 43 44 39 13 53.6 46.4
262 7.2 5 a-curv-i3 2022-23 Salem Academy Charter (District) - Salem Academy Charter School 04850485 333 120 93 66 42 12 64.0 36.0
263 14.16 5 a-curv-i3 2022-23 Sandwich - Sandwich Middle High School 02610505 367 40 67 106 102 52 29.2 70.8
264 8.66 5 a-curv-i3 2022-23 Saugus - Saugus High 02620505 270 86 67 59 41 17 56.7 43.3
265 13.680000000000001 5 a-curv-i3 2022-23 Scituate - Scituate High School 02640505 585 61 124 182 145 73 31.6 68.4
266 9.72 5 a-curv-i3 2022-23 Seekonk - Seekonk High 02650505 249 64 64 58 39 24 51.4 48.6
267 18.2 5 a-curv-i3 2022-23 Sharon - Sharon High 02660505 800 20 52 163 228 337 9.0 91.0
268 16.8 5 a-curv-i3 2022-23 Shrewsbury - Shrewsbury High School 02710505 909 35 110 198 285 281 16.0 84.0
269 13.419999999999998 5 a-curv-i3 2022-23 Silver Lake - Silver Lake Regional High 07600505 431 46 96 130 99 60 32.9 67.1
270 8.879999999999999 5 a-curv-i3 2022-23 Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School 04740505 18 5 5 3 3 2 55.6 44.4
271 15.059999999999999 5 a-curv-i3 2022-23 Somerset Berkley Regional School District - Somerset Berkley Regional High School 07630505 465 39 76 139 149 62 24.7 75.3
272 12.059999999999999 5 a-curv-i3 2022-23 Somerville - Somerville High 02740505 605 106 134 136 123 106 39.7 60.3
273 16.2 5 a-curv-i3 2022-23 South Hadley - South Hadley High 02780505 158 8 22 41 52 35 19.0 81.0
274 9.379999999999999 5 a-curv-i3 2022-23 South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School 08290605 113 28 32 31 10 12 53.1 46.9
275 10.059999999999999 5 a-curv-i3 2022-23 South Shore Charter Public (District) - South Shore Charter Public School 04880550 145 26 46 30 27 16 49.7 50.3
276 0.0 1 a-curv-i3 2022-23 South Shore Regional Vocational Technical - South Shore Vocational Technical High 08730605 8
277 5.42 5 a-curv-i3 2022-23 Southbridge - Southbridge High School 02770515 59 22 21 10 3 3 72.9 27.1
278 9.92 5 a-curv-i3 2022-23 Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical 08720605 268 63 72 106 20 7 50.4 49.6
279 15.34 5 a-curv-i3 2022-23 Southern Berkshire - Mt Everett Regional 07650505 30 3 4 12 7 4 23.3 76.7
280 9.28 5 a-curv-i3 2022-23 Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School 08760605 183 46 52 44 32 9 53.6 46.4
281 11.0 5 a-curv-i3 2022-23 Southwick-Tolland-Granville Regional School District - Southwick Regional School 07660505 120 19 35 23 28 15 45.0 55.0
282 10.08 5 a-curv-i3 2022-23 Spencer-E Brookfield - David Prouty High 07670505 119 33 26 28 16 16 49.6 50.4
283 3.84 3.84 a-curv-i3 2022-23 Springfield - Conservatory of the Arts 02810475 26 12 9 3 2 0 80.8 19.2
284 6.44 5 a-curv-i3 2022-23 Springfield - High School Of Commerce 02810510 171 66 50 43 9 3 67.8 32.2
285 3.9 3.9 a-curv-i3 2022-23 Springfield - John J Duggan Academy 02810320 87 48 22 15 2 0 80.5 19.5
286 4.0 4.0 a-curv-i3 2022-23 Springfield - Roger L. Putnam Vocational Technical Academy 02810620 115 52 40 16 7 0 80.0 20.0
287 7.62 5 a-curv-i3 2022-23 Springfield - Springfield Central High 02810500 412 144 111 103 42 12 61.9 38.1
288 2.48 2.48 a-curv-i3 2022-23 Springfield - Springfield High School of Science and Technology 02810530 145 89 38 16 2 0 87.6 12.4
289 4.0 4.0 a-curv-i3 2022-23 Springfield - The Springfield Renaissance School an Expeditionary Learning School 02810205 130 78 26 15 8 3 80.0 20.0
290 4.279999999999999 4.28 a-curv-i3 2022-23 Springfield International Charter (District) - Springfield International Charter School 04410505 131 72 31 17 10 1 78.6 21.4
291 10.8 5 a-curv-i3 2022-23 Stoneham - Stoneham High 02840505 337 59 96 100 59 23 46.0 54.0
292 10.72 5 a-curv-i3 2022-23 Stoughton - Stoughton High 02850505 321 75 74 77 56 39 46.4 53.6
293 10.459999999999999 5 a-curv-i3 2022-23 Sutton - Sutton High School 02900510 279 50 83 74 50 22 47.7 52.3
294 13.919999999999998 5 a-curv-i3 2022-23 Swampscott - Swampscott High 02910505 438 45 88 125 114 66 30.4 69.6
295 10.98 5 a-curv-i3 2022-23 Swansea - Joseph Case High 02920505 162 30 43 48 31 10 45.1 54.9
296 12.059999999999999 5 a-curv-i3 2022-23 TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School 39020900 68 13 14 20 10 11 39.7 60.3
297 16.5 5 a-curv-i3 2022-23 Tantasqua - Tantasqua Regional Sr High 07700505 246 6 37 83 69 51 17.5 82.5
298 12.0 5 a-curv-i3 2022-23 Tantasqua - Tantasqua Regional Vocational 07700605 15 0 6 4 4 1 40.0 60.0
299 9.2 5 a-curv-i3 2022-23 Taunton - Taunton High 02930505 641 178 168 175 90 30 54.0 46.0
300 13.36 5 a-curv-i3 2022-23 Tewksbury - Tewksbury Memorial High 02950505 416 45 93 122 88 68 33.2 66.8
301 7.6 5 a-curv-i3 2022-23 Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical 08780605 142 42 46 31 17 6 62.0 38.0
302 12.9 5 a-curv-i3 2022-23 Triton - Triton Regional High School 07730505 203 21 51 55 48 28 35.5 64.5
303 14.48 5 a-curv-i3 2022-23 Tyngsborough - Tyngsborough High School 03010505 105 6 23 31 24 21 27.6 72.4
304 14.66 5 a-curv-i3 2022-23 Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical 08790605 15 2 2 10 1 0 26.7 73.3
305 11.2 5 a-curv-i3 2022-23 Uxbridge - Uxbridge High 03040505 116 20 31 37 18 10 44.0 56.0
306 16.64 5 a-curv-i3 2022-23 Wachusett - Wachusett Regional High 07750505 786 22 110 192 237 225 16.8 83.2
307 10.36 5 a-curv-i3 2022-23 Wakefield - Wakefield Memorial High 03050505 409 116 81 89 79 44 48.2 51.8
308 17.36 5 a-curv-i3 2022-23 Walpole - Walpole High 03070505 425 11 45 102 152 115 13.2 86.8
309 10.74 5 a-curv-i3 2022-23 Waltham - Waltham Sr High 03080505 620 118 169 151 108 74 46.3 53.7
310 11.48 5 a-curv-i3 2022-23 Ware - Ware Junior/Senior High School 03090505 47 7 13 17 9 1 42.6 57.4
311 4.1 4.1 a-curv-i3 2022-23 Wareham - Wareham Senior High 03100505 73 37 21 9 6 0 79.5 20.5
312 14.74 5 a-curv-i3 2022-23 Watertown - Watertown High 03140505 281 32 42 79 76 52 26.3 73.7
313 18.36 5 a-curv-i3 2022-23 Wayland - Wayland High School 03150505 561 11 35 111 183 221 8.2 91.8
314 9.42 5 a-curv-i3 2022-23 Webster - Bartlett High School 03160505 68 18 18 15 13 4 52.9 47.1
315 18.16 5 a-curv-i3 2022-23 Wellesley - Wellesley Sr High 03170505 925 16 69 151 322 367 9.2 90.8
316 15.559999999999999 5 a-curv-i3 2022-23 West Boylston - West Boylston Junior/Senior High 03220505 72 5 11 27 17 12 22.2 77.8
317 8.66 5 a-curv-i3 2022-23 West Bridgewater - West Bridgewater Junior/Senior 03230505 203 29 86 60 19 9 56.7 43.3
318 12.42 5 a-curv-i3 2022-23 West Springfield - West Springfield High 03320505 480 73 109 167 88 43 37.9 62.1
319 17.580000000000002 5 a-curv-i3 2022-23 Westborough - Westborough High 03210505 628 10 66 118 224 210 12.1 87.9
320 8.98 5 a-curv-i3 2022-23 Westfield - Westfield High 03250505 216 56 63 50 33 14 55.1 44.9
321 18.16 5 a-curv-i3 2022-23 Westford - Westford Academy 03260505 1,063 21 77 192 359 414 9.2 90.8
322 17.32 5 a-curv-i3 2022-23 Weston - Weston High 03300505 610 21 61 137 162 229 13.4 86.6
323 10.48 5 a-curv-i3 2022-23 Westport - Westport Middle-High School 03310515 82 20 19 23 13 7 47.6 52.4
324 17.580000000000002 5 a-curv-i3 2022-23 Westwood - Westwood High 03350505 841 17 85 190 255 294 12.1 87.9
325 14.66 5 a-curv-i3 2022-23 Weymouth - Weymouth High School 03360505 555 54 94 169 164 74 26.7 73.3
326 12.1 5 a-curv-i3 2022-23 Whitman-Hanson - Whitman Hanson Regional 07800505 458 61 120 127 106 44 39.5 60.5
327 7.92 5 a-curv-i3 2022-23 Whittier Regional Vocational Technical - Whittier Regional Vocational 08850605 48 14 15 15 3 1 60.4 39.6
328 13.64 5 a-curv-i3 2022-23 Wilmington - Wilmington High 03420505 403 45 83 108 94 73 31.8 68.2
329 10.18 5 a-curv-i3 2022-23 Winchendon - Murdock High School 03430515 53 10 16 10 14 3 49.1 50.9
330 17.54 5 a-curv-i3 2022-23 Winchester - Winchester High School 03440505 1,165 28 115 289 365 368 12.3 87.7
331 5.4 5 a-curv-i3 2022-23 Winthrop - Winthrop High School 03460505 319 157 76 54 29 3 73.0 27.0
332 11.379999999999999 5 a-curv-i3 2022-23 Woburn - Woburn High 03470505 397 103 68 108 79 39 43.1 56.9
333 7.08 5 a-curv-i3 2022-23 Worcester - Burncoat Senior High 03480503 396 160 96 70 49 21 64.6 35.4
334 3.4200000000000004 3.42 a-curv-i3 2022-23 Worcester - Claremont Academy 03480350 117 95 2 10 6 4 82.9 17.1
335 8.82 5 a-curv-i3 2022-23 Worcester - Doherty Memorial High 03480512 513 176 111 118 71 37 55.9 44.1
336 3.3 3.3 a-curv-i3 2022-23 Worcester - North High 03480515 249 141 67 26 12 3 83.5 16.5
337 10.459999999999999 5 a-curv-i3 2022-23 Worcester - South High Community 03480520 618 153 142 156 101 66 47.7 52.3
338 5.84 5 a-curv-i3 2022-23 Worcester - University Pk Campus School 03480285 72 33 18 16 4 1 70.8 29.2
339 5.92 5 a-curv-i3 2022-23 Worcester - Worcester Technical High 03480605 318 102 122 50 34 10 70.4 29.6
340 12.88 5 a-curv-i3 2021-22 Abington - Abington High 00010505 149 15 38 50 33 13 35.6 64.4
341 1.48 1.48 a-curv-i3 2021-22 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 04120530 135 110 15 9 1 0 92.6 7.4
342 18.740000000000002 5 a-curv-i3 2021-22 Acton-Boxborough - Acton-Boxborough Regional High 06000505 1,134 19 52 145 337 581 6.3 93.7

@ -1,4 +1,396 @@
Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Graduated,# Completed MassCore,% Completed MassCore
4.444444444444445,4.44,a-curv-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 88, 88, 100.0
1.9066666666666665,1.91,a-curv-i1,2022-23,Abington - Abington High,00010505, 133, 57, 42.9
4.444444444444445,4.44,a-curv-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 52, 52, 100.0
3.9466666666666663,3.95,a-curv-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 445, 395, 88.8
4.444444444444445,4.44,a-curv-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 138, 138, 100.0
3.897777777777778,3.9,a-curv-i1,2022-23,Agawam - Agawam High,00050505, 235, 206, 87.7
4.444444444444445,4.44,a-curv-i1,2022-23,Amesbury - Amesbury High,00070505, 104, 104, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 202, 202, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Andover - Andover High,00090505, 420, 420, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 43, 43, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Arlington - Arlington High,00100505, 368, 368, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 163, 163, 100.0
3.6711111111111108,3.67,a-curv-i1,2022-23,Ashland - Ashland High,00140505, 178, 147, 82.6
4.444444444444445,4.44,a-curv-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 256, 256, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Athol-Royalston - Athol High,06150505, 73, 73, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 77, 77, 100.0
2.6,2.6,a-curv-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 41, 24, 58.5
3.982222222222222,3.98,a-curv-i1,2022-23,Attleboro - Attleboro High,00160505, 383, 343, 89.6
4.444444444444445,4.44,a-curv-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 12, 12, 100.0
4.004444444444444,4.0,a-curv-i1,2022-23,Auburn - Auburn Senior High,00170505, 192, 173, 90.1
4.444444444444445,4.44,a-curv-i1,2022-23,Avon - Avon Middle High School,00180510, 45, 45, 100.0
4.342222222222222,4.34,a-curv-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 86, 84, 97.7
4.431111111111111,4.43,a-curv-i1,2022-23,Barnstable - Barnstable High,00200505, 328, 327, 99.7
4.444444444444445,4.44,a-curv-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 47, 47, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Bedford - Bedford High,00230505, 199, 199, 100.0
3.7644444444444445,3.76,a-curv-i1,2022-23,Belchertown - Belchertown High,00240505, 170, 144, 84.7
4.444444444444445,4.44,a-curv-i1,2022-23,Bellingham - Bellingham High School,00250505, 117, 117, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Belmont - Belmont High,00260505, 314, 314, 100.0
3.493333333333333,3.49,a-curv-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 22, 78.6
4.444444444444445,4.44,a-curv-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 109, 109, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 60, 60, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Beverly - Beverly High,00300505, 317, 317, 100.0
4.102222222222222,4.1,a-curv-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 274, 253, 92.3
4.444444444444445,4.44,a-curv-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 294, 294, 100.0
4.395555555555556,4.4,a-curv-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 95, 94, 98.9
4.444444444444445,4.44,a-curv-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 206, 206, 100.0
2.373333333333333,2.37,a-curv-i1,2022-23,Boston - Another Course To College,00350541, 58, 31, 53.4
0.21333333333333332,1,a-curv-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 105, 5, 4.8
2.8577777777777778,2.86,a-curv-i1,2022-23,Boston - Boston Arts Academy,00350546, 98, 63, 64.3
0.26222222222222225,1,a-curv-i1,2022-23,Boston - Boston Collaborative High School,00350755, 85, 5, 5.9
1.5066666666666666,1.51,a-curv-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 112, 38, 33.9
0.05777777777777778,1,a-curv-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 75, 1, 1.3
2.608888888888889,2.61,a-curv-i1,2022-23,Boston - Boston Latin Academy,00350545, 300, 176, 58.7
3.2844444444444445,3.28,a-curv-i1,2022-23,Boston - Boston Latin School,00350560, 410, 303, 73.9
1.6622222222222223,1.66,a-curv-i1,2022-23,Boston - Brighton High School,00350505, 107, 40, 37.4
0.28444444444444444,1,a-curv-i1,2022-23,Boston - Burke High School,00350525, 78, 5, 6.4
1.0044444444444445,1.0,a-curv-i1,2022-23,Boston - Charlestown High School,00350515, 137, 31, 22.6
0.0,1,a-curv-i1,2022-23,Boston - Community Academy,00350518, 18, 0, 0.0
0.6933333333333334,1,a-curv-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 45, 7, 15.6
0.3644444444444444,1,a-curv-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 73, 6, 8.2
2.2533333333333334,2.25,a-curv-i1,2022-23,Boston - East Boston High School,00350530, 229, 116, 50.7
2.3644444444444446,2.36,a-curv-i1,2022-23,Boston - English High School,00350535, 126, 67, 53.2
1.7066666666666666,1.71,a-curv-i1,2022-23,Boston - Excel High School,00350522, 86, 33, 38.4
1.8222222222222222,1.82,a-curv-i1,2022-23,Boston - Fenway High School,00350540, 83, 34, 41.0
0.1288888888888889,1,a-curv-i1,2022-23,Boston - Greater Egleston High School,00350543, 34, 1, 2.9
2.7333333333333334,2.73,a-curv-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 65, 40, 61.5
1.7377777777777779,1.74,a-curv-i1,2022-23,Boston - Lyon High School,00350655, 23, 9, 39.1
2.8177777777777777,2.82,a-curv-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 183, 116, 63.4
0.0,1,a-curv-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 65, 0, 0.0
0.0,1,a-curv-i1,2022-23,Boston - McKinley Schools,00350363, 13, 0, 0.0
2.1555555555555554,2.16,a-curv-i1,2022-23,Boston - New Mission High School,00350542, 97, 47, 48.5
4.208888888888889,4.21,a-curv-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 318, 301, 94.7
3.728888888888889,3.73,a-curv-i1,2022-23,Boston - Quincy Upper School,00350565, 31, 26, 83.9
1.7866666666666668,1.79,a-curv-i1,2022-23,Boston - Snowden International High School,00350690, 92, 37, 40.2
1.2844444444444443,1.28,a-curv-i1,2022-23,Boston - TechBoston Academy,00350657, 128, 37, 28.9
4.444444444444445,4.44,a-curv-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 76, 76, 100.0
0.0,1,a-curv-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 49, 0, 0.0
0.15555555555555556,1,a-curv-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 57, 2, 3.5
4.444444444444445,4.44,a-curv-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 69, 69, 100.0
3.1333333333333333,3.13,a-curv-i1,2022-23,Bourne - Bourne High School,00360505, 88, 62, 70.5
4.253333333333334,4.25,a-curv-i1,2022-23,Braintree - Braintree High,00400505, 399, 382, 95.7
4.444444444444445,4.44,a-curv-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 315, 315, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 102, 102, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 311, 311, 100.0
0.0,1,a-curv-i1,2022-23,Brockton - Brockton Champion High School,00440515, 25, 0, 0.0
1.8711111111111112,1.87,a-curv-i1,2022-23,Brockton - Brockton High,00440505, 760, 320, 42.1
1.2133333333333334,1.21,a-curv-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 11, 3, 27.3
0.0,1,a-curv-i1,2022-23,Brockton - Edison Academy,00440520, 153, 0, 0.0
4.444444444444445,4.44,a-curv-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 98, 98, 100.0
4.248888888888889,4.25,a-curv-i1,2022-23,Brookline - Brookline High,00460505, 478, 457, 95.6
4.444444444444445,4.44,a-curv-i1,2022-23,Burlington - Burlington High,00480505, 217, 217, 100.0
4.355555555555555,4.36,a-curv-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 461, 452, 98.0
4.444444444444445,4.44,a-curv-i1,2022-23,Canton - Canton High,00500505, 205, 205, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 156, 156, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Carver - Carver Middle/High School,00520405, 88, 88, 100.0
3.151111111111111,3.15,a-curv-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 110, 78, 70.9
4.444444444444445,4.44,a-curv-i1,2022-23,Chelmsford - Chelmsford High,00560505, 309, 309, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea High,00570505, 271, 271, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 33, 33, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 15, 15, 100.0
1.9466666666666665,1.95,a-curv-i1,2022-23,Chicopee - Chicopee Academy,00610021, 16, 7, 43.8
1.702222222222222,1.7,a-curv-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 253, 97, 38.3
1.271111111111111,1.27,a-curv-i1,2022-23,Chicopee - Chicopee High,00610505, 185, 53, 28.6
4.444444444444445,4.44,a-curv-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 35, 35, 100.0
4.1288888888888895,4.13,a-curv-i1,2022-23,Clinton - Clinton Senior High,00640505, 112, 104, 92.9
4.444444444444445,4.44,a-curv-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 27, 27, 100.0
4.404444444444445,4.4,a-curv-i1,2022-23,Cohasset - Cohasset High School,00650505, 114, 113, 99.1
4.444444444444445,4.44,a-curv-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 27, 27, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 27, 27, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 336, 336, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Danvers - Danvers High,00710505, 190, 190, 100.0
4.346666666666667,4.35,a-curv-i1,2022-23,Dartmouth - Dartmouth High,00720505, 232, 227, 97.8
2.688888888888889,2.69,a-curv-i1,2022-23,Dedham - Dedham High,00730505, 172, 104, 60.5
4.413333333333333,4.41,a-curv-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 148, 147, 99.3
4.444444444444445,4.44,a-curv-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 153, 153, 100.0
4.12,4.12,a-curv-i1,2022-23,Douglas - Douglas High School,00770505, 82, 76, 92.7
4.444444444444445,4.44,a-curv-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 149, 149, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Dracut - Dracut Senior High,00790505, 188, 188, 100.0
3.04,3.04,a-curv-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 212, 145, 68.4
4.426666666666667,4.43,a-curv-i1,2022-23,Duxbury - Duxbury High,00820505, 226, 225, 99.6
4.444444444444445,4.44,a-curv-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 158, 158, 100.0
0.4444444444444444,1,a-curv-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 211, 21, 10.0
4.444444444444445,4.44,a-curv-i1,2022-23,Easthampton - Easthampton High,00860505, 93, 93, 100.0
3.7022222222222223,3.7,a-curv-i1,2022-23,Easton - Oliver Ames High,00880505, 270, 225, 83.3
4.444444444444445,4.44,a-curv-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 83, 83, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 393, 393, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Everett - Everett High,00930505, 436, 436, 100.0
1.7955555555555556,1.8,a-curv-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 161, 65, 40.4
4.444444444444445,4.44,a-curv-i1,2022-23,Fairhaven - Fairhaven High,00940505, 163, 163, 100.0
3.577777777777778,3.58,a-curv-i1,2022-23,Fall River - B M C Durfee High,00950505, 483, 389, 80.5
0.36,1,a-curv-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 37, 3, 8.1
3.813333333333333,3.81,a-curv-i1,2022-23,Falmouth - Falmouth High,00960505, 190, 163, 85.8
4.137777777777777,4.14,a-curv-i1,2022-23,Fitchburg - Fitchburg High,00970505, 261, 243, 93.1
0.42666666666666664,1,a-curv-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 135, 13, 9.6
3.791111111111111,3.79,a-curv-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 34, 29, 85.3
3.013333333333333,3.01,a-curv-i1,2022-23,Foxborough - Foxborough High,00990505, 177, 120, 67.8
4.444444444444445,4.44,a-curv-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 86, 86, 100.0
3.7688888888888887,3.77,a-curv-i1,2022-23,Framingham - Framingham High School,01000515, 545, 462, 84.8
4.013333333333334,4.01,a-curv-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 62, 56, 90.3
4.444444444444445,4.44,a-curv-i1,2022-23,Franklin - Franklin High,01010505, 421, 421, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 124, 124, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 184, 184, 100.0
4.2444444444444445,4.24,a-curv-i1,2022-23,Frontier - Frontier Regional,06700505, 88, 84, 95.5
2.102222222222222,2.1,a-curv-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 55, 26, 47.3
3.066666666666667,3.07,a-curv-i1,2022-23,Gardner - Gardner High,01030505, 126, 87, 69.0
3.466666666666667,3.47,a-curv-i1,2022-23,Gateway - Gateway Regional High,06720505, 41, 32, 78.0
4.444444444444445,4.44,a-curv-i1,2022-23,Georgetown - Georgetown High School,01050505, 78, 78, 100.0
3.728888888888889,3.73,a-curv-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 31, 26, 83.9
4.444444444444445,4.44,a-curv-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43, 43, 100.0
2.7022222222222223,2.7,a-curv-i1,2022-23,Gloucester - Gloucester High,01070505, 181, 110, 60.8
4.426666666666667,4.43,a-curv-i1,2022-23,Grafton - Grafton High School,01100505, 228, 227, 99.6
4.444444444444445,4.44,a-curv-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 56, 56, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 132, 132, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 315, 315, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 402, 402, 100.0
0.0,1,a-curv-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 525, 0, 0.0
4.444444444444445,4.44,a-curv-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 448, 448, 100.0
2.351111111111111,2.35,a-curv-i1,2022-23,Greenfield - Greenfield High,01140505, 68, 36, 52.9
4.444444444444445,4.44,a-curv-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 168, 168, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hadley - Hopkins Academy,01170505, 37, 37, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 118, 118, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 64, 64, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 25, 25, 100.0
3.7422222222222223,3.74,a-curv-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 221, 186, 84.2
4.444444444444445,4.44,a-curv-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 98, 98, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hanover - Hanover High,01220505, 167, 167, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Harvard - Bromfield,01250505, 76, 76, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hatfield - Smith Academy,01270505, 24, 24, 100.0
0.0,1,a-curv-i1,2022-23,Haverhill - Gateway Academy,01280515, 10, 0, 0.0
2.04,2.04,a-curv-i1,2022-23,Haverhill - Haverhill High,01280505, 405, 186, 45.9
4.444444444444445,4.44,a-curv-i1,2022-23,Hingham - Hingham High,01310505, 317, 317, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 78, 78, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Holliston - Holliston High,01360505, 194, 194, 100.0
1.4133333333333333,1.41,a-curv-i1,2022-23,Holyoke - Holyoke High,01370505, 318, 101, 31.8
2.631111111111111,2.63,a-curv-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 49, 29, 59.2
4.444444444444445,4.44,a-curv-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 62, 62, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hopkinton - Hopkinton High,01390505, 310, 310, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hudson - Hudson High,01410505, 153, 153, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Hull - Hull High,01420505, 60, 60, 100.0
3.9644444444444447,3.96,a-curv-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 83, 74, 89.2
4.444444444444445,4.44,a-curv-i1,2022-23,Ipswich - Ipswich High,01440505, 120, 120, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 107, 107, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,King Philip - King Philip Regional High,06900505, 265, 265, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - High School Learning Center,01490536, 107, 107, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - Lawrence High School,01490515, 589, 589, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - RISE Academy,01490615, 11, 11, 100.0
2.8355555555555556,2.84,a-curv-i1,2022-23,Lee - Lee Middle/High School,01500505, 58, 37, 63.8
4.444444444444445,4.44,a-curv-i1,2022-23,Leicester - Leicester High,01510505, 97, 97, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lenox - Lenox Memorial High,01520505, 63, 63, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 130, 130, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 10, 10, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster High School,01530505, 289, 289, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lexington - Lexington High,01550505, 572, 572, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 358, 358, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Littleton - Littleton High School,01580505, 105, 105, 100.0
2.6133333333333333,2.61,a-curv-i1,2022-23,Longmeadow - Longmeadow High,01590505, 211, 124, 58.8
1.0577777777777777,1.06,a-curv-i1,2022-23,Lowell - Lowell High,01600505, 585, 139, 23.8
0.0,1,a-curv-i1,2022-23,Lowell - The Career Academy,01600515, 49, 0, 0.0
4.444444444444445,4.44,a-curv-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 31, 31, 100.0
3.7688888888888887,3.77,a-curv-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 191, 162, 84.8
4.444444444444445,4.44,a-curv-i1,2022-23,Lunenburg - Lunenburg High,01620505, 97, 97, 100.0
0.21333333333333332,1,a-curv-i1,2022-23,Lynn - Classical High,01630505, 414, 20, 4.8
0.23555555555555555,1,a-curv-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 19, 1, 5.3
0.24444444444444444,1,a-curv-i1,2022-23,Lynn - Lynn English High,01630510, 384, 21, 5.5
1.24,1.24,a-curv-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 251, 70, 27.9
4.444444444444445,4.44,a-curv-i1,2022-23,Lynnfield - Lynnfield High,01640505, 134, 134, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 50, 50, 100.0
2.373333333333333,2.37,a-curv-i1,2022-23,Malden - Malden High,01650505, 401, 214, 53.4
4.444444444444445,4.44,a-curv-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 123, 123, 100.0
4.413333333333333,4.41,a-curv-i1,2022-23,Mansfield - Mansfield High,01670505, 290, 288, 99.3
1.8933333333333333,1.89,a-curv-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 54, 23, 42.6
4.444444444444445,4.44,a-curv-i1,2022-23,Marblehead - Marblehead High,01680505, 220, 220, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Marlborough - Marlborough High,01700505, 263, 263, 100.0
4.431111111111111,4.43,a-curv-i1,2022-23,Marshfield - Marshfield High,01710505, 297, 296, 99.7
4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 179, 179, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 9, 9, 100.0
2.9555555555555557,2.96,a-curv-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 266, 177, 66.5
4.444444444444445,4.44,a-curv-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 109, 109, 100.0
0.0,1,a-curv-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 59, 0, 0.0
3.9511111111111115,3.95,a-curv-i1,2022-23,Maynard - Maynard High,01740505, 72, 64, 88.9
4.444444444444445,4.44,a-curv-i1,2022-23,Medfield - Medfield Senior High,01750505, 198, 198, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Medford - Medford High,01760505, 307, 307, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Medway - Medway High,01770505, 161, 161, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Melrose - Melrose High,01780505, 218, 218, 100.0
2.888888888888889,2.89,a-curv-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 140, 91, 65.0
3.4444444444444446,3.44,a-curv-i1,2022-23,Methuen - Methuen High,01810505, 462, 358, 77.5
4.444444444444445,4.44,a-curv-i1,2022-23,Middleborough - Middleborough High,01820505, 194, 194, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Milford - Milford High,01850505, 287, 287, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 124, 124, 100.0
4.382222222222222,4.38,a-curv-i1,2022-23,Millis - Millis High School,01870505, 73, 72, 98.6
4.444444444444445,4.44,a-curv-i1,2022-23,Milton - Milton High,01890505, 266, 266, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 148, 148, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 25, 25, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 118, 118, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Monson - Monson High School,01910505, 35, 35, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 317, 317, 100.0
2.7644444444444445,2.76,a-curv-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 82, 51, 62.2
4.444444444444445,4.44,a-curv-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 72, 72, 100.0
4.413333333333333,4.41,a-curv-i1,2022-23,Nantucket - Nantucket High,01970505, 145, 144, 99.3
4.444444444444445,4.44,a-curv-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 62, 62, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba - Nashoba Regional,07250505, 192, 192, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 160, 160, 100.0
4.293333333333333,4.29,a-curv-i1,2022-23,Natick - Natick High,01980505, 377, 364, 96.6
4.444444444444445,4.44,a-curv-i1,2022-23,Nauset - Nauset Regional High,06600505, 198, 198, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Needham - Needham High,01990505, 375, 375, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 55, 55, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - New Bedford High,02010505, 570, 570, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 9, 9, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 41, 41, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 80, 80, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Newburyport - Newburyport High,02040505, 207, 207, 100.0
3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton North High,02070505, 491, 436, 88.8
3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton South High,02070510, 475, 422, 88.8
4.444444444444445,4.44,a-curv-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 132, 132, 100.0
3.204444444444444,3.2,a-curv-i1,2022-23,North Adams - Drury High,02090505, 61, 44, 72.1
4.444444444444445,4.44,a-curv-i1,2022-23,North Andover - North Andover High,02110505, 302, 302, 100.0
4.359999999999999,4.36,a-curv-i1,2022-23,North Attleborough - North Attleboro High,02120505, 257, 252, 98.1
4.444444444444445,4.44,a-curv-i1,2022-23,North Brookfield - North Brookfield High,02150505, 13, 13, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 171, 171, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,North Reading - North Reading High,02170505, 173, 173, 100.0
0.017777777777777778,1,a-curv-i1,2022-23,Northampton - Northampton High,02100505, 233, 1, 0.4
4.444444444444445,4.44,a-curv-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 128, 128, 100.0
2.28,2.28,a-curv-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 312, 160, 51.3
4.444444444444445,4.44,a-curv-i1,2022-23,Northbridge - Northbridge High,02140505, 125, 125, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 281, 281, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 123, 123, 100.0
3.9555555555555557,3.96,a-curv-i1,2022-23,Norton - Norton High,02180505, 163, 145, 89.0
4.444444444444445,4.44,a-curv-i1,2022-23,Norwell - Norwell High,02190505, 149, 149, 100.0
2.2666666666666666,2.27,a-curv-i1,2022-23,Norwood - Norwood High,02200505, 257, 131, 51.0
4.444444444444445,4.44,a-curv-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 140, 140, 100.0
3.911111111111111,3.91,a-curv-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 167, 147, 88.0
4.391111111111111,4.39,a-curv-i1,2022-23,Oxford - Oxford High,02260505, 80, 79, 98.8
4.008888888888889,4.01,a-curv-i1,2022-23,Palmer - Palmer High,02270505, 61, 55, 90.2
4.444444444444445,4.44,a-curv-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 125, 125, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 47, 47, 100.0
3.7022222222222223,3.7,a-curv-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 12, 10, 83.3
3.1333333333333333,3.13,a-curv-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 346, 244, 70.5
4.444444444444445,4.44,a-curv-i1,2022-23,Pembroke - Pembroke High School,02310505, 195, 195, 100.0
3.7511111111111113,3.75,a-curv-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 154, 130, 84.4
4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 7, 7, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12, 12, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 9, 9, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 44, 44, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 46, 46, 100.0
4.262222222222222,4.26,a-curv-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 49, 47, 95.9
4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 19, 19, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 57, 57, 100.0
3.7111111111111112,3.71,a-curv-i1,2022-23,Pittsfield - Pittsfield High,02360505, 139, 116, 83.5
2.2222222222222223,2.22,a-curv-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 12, 6, 50.0
3.2977777777777777,3.3,a-curv-i1,2022-23,Pittsfield - Taconic High,02360510, 178, 132, 74.2
3.684444444444445,3.68,a-curv-i1,2022-23,Plymouth - Plymouth North High,02390505, 292, 242, 82.9
3.6799999999999997,3.68,a-curv-i1,2022-23,Plymouth - Plymouth South High,02390515, 238, 197, 82.8
4.444444444444445,4.44,a-curv-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 64, 64, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 127, 127, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 94, 94, 100.0
1.6444444444444444,1.64,a-curv-i1,2022-23,Quincy - North Quincy High,02430510, 332, 123, 37.0
2.697777777777778,2.7,a-curv-i1,2022-23,Quincy - Quincy High,02430505, 379, 230, 60.7
4.444444444444445,4.44,a-curv-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 77, 77, 100.0
2.2933333333333334,2.29,a-curv-i1,2022-23,Randolph - Randolph High,02440505, 128, 66, 51.6
4.262222222222222,4.26,a-curv-i1,2022-23,Reading - Reading Memorial High,02460505, 294, 282, 95.9
4.444444444444445,4.44,a-curv-i1,2022-23,Revere - CityLab Innovation High School,02480520, 14, 14, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Revere - Revere High,02480505, 433, 433, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 64, 64, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Rockland - Rockland Senior High,02510505, 133, 133, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Rockport - Rockport High,02520510, 61, 61, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 107, 107, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Salem - New Liberty Innovation School,02580510, 13, 13, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem High,02580505, 218, 218, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem Prep High School,02580515, 6, 6, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 65, 65, 100.0
4.386666666666667,4.39,a-curv-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 157, 155, 98.7
3.902222222222222,3.9,a-curv-i1,2022-23,Saugus - Saugus High,02620505, 172, 151, 87.8
4.111111111111111,4.11,a-curv-i1,2022-23,Scituate - Scituate High School,02640505, 187, 173, 92.5
2.088888888888889,2.09,a-curv-i1,2022-23,Seekonk - Seekonk High,02650505, 134, 63, 47.0
3.7511111111111113,3.75,a-curv-i1,2022-23,Sharon - Sharon High,02660505, 289, 244, 84.4
0.8933333333333334,1,a-curv-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 283, 57, 20.1
4.444444444444445,4.44,a-curv-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 440, 440, 100.0
4.342222222222222,4.34,a-curv-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 256, 250, 97.7
4.444444444444445,4.44,a-curv-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 38, 38, 100.0
3.3244444444444445,3.32,a-curv-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 226, 169, 74.8
3.888888888888889,3.89,a-curv-i1,2022-23,Somerville - Full Circle High School,02740510, 8, 7, 87.5
3.0577777777777775,3.06,a-curv-i1,2022-23,Somerville - Somerville High,02740505, 266, 183, 68.8
2.7022222222222223,2.7,a-curv-i1,2022-23,South Hadley - South Hadley High,02780505, 125, 76, 60.8
4.115555555555555,4.12,a-curv-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 175, 162, 92.6
2.7688888888888887,2.77,a-curv-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 77, 48, 62.3
4.444444444444445,4.44,a-curv-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 154, 154, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Southbridge - Southbridge High School,02770515, 87, 87, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 364, 364, 100.0
3.48,3.48,a-curv-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 46, 36, 78.3
4.444444444444445,4.44,a-curv-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 267, 267, 100.0
3.7022222222222223,3.7,a-curv-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 90, 75, 83.3
4.444444444444445,4.44,a-curv-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 67, 67, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 37, 37, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 15, 15, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 19, 19, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - High School Of Commerce,02810510, 195, 195, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - John J Duggan Academy,02810320, 81, 81, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 313, 313, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Central High,02810500, 465, 465, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School,02810570, 34, 34, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 247, 247, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 13, 13, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 11, 11, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 72, 72, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 20, 20, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 84, 84, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Stoneham - Stoneham High,02840505, 141, 141, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Stoughton - Stoughton High,02850505, 217, 217, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 207, 207, 100.0
3.9955555555555557,4.0,a-curv-i1,2022-23,Sutton - Sutton High School,02900510, 89, 80, 89.9
4.444444444444445,4.44,a-curv-i1,2022-23,Swampscott - Swampscott High,02910505, 150, 150, 100.0
0.0,1,a-curv-i1,2022-23,Swansea - Joseph Case High,02920505, 106, 0, 0.0
4.444444444444445,4.44,a-curv-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 339, 339, 100.0
4.1466666666666665,4.15,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 165, 154, 93.3
2.9466666666666663,2.95,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 101, 67, 66.3
0.39111111111111113,1,a-curv-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 34, 3, 8.8
3.9511111111111115,3.95,a-curv-i1,2022-23,Taunton - Taunton High,02930505, 458, 407, 88.9
4.444444444444445,4.44,a-curv-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 189, 189, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 211, 211, 100.0
3.9466666666666663,3.95,a-curv-i1,2022-23,Triton - Triton Regional High School,07730505, 169, 150, 88.8
4.444444444444445,4.44,a-curv-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 103, 103, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 152, 152, 100.0
3.457777777777778,3.46,a-curv-i1,2022-23,Uxbridge - Gateway to College,03040515, 9, 7, 77.8
3.6711111111111108,3.67,a-curv-i1,2022-23,Uxbridge - Uxbridge High,03040505, 109, 90, 82.6
3.817777777777778,3.82,a-curv-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 467, 401, 85.9
4.444444444444445,4.44,a-curv-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 198, 198, 100.0
2.7688888888888887,2.77,a-curv-i1,2022-23,Walpole - Walpole High,03070505, 244, 152, 62.3
3.795555555555556,3.8,a-curv-i1,2022-23,Waltham - Waltham Sr High,03080505, 363, 310, 85.4
4.444444444444445,4.44,a-curv-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 54, 54, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 12, 12, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Senior High,03100505, 81, 81, 100.0
3.3422222222222224,3.34,a-curv-i1,2022-23,Watertown - Watertown High,03140505, 149, 112, 75.2
3.471111111111111,3.47,a-curv-i1,2022-23,Wayland - Wayland High School,03150505, 187, 146, 78.1
3.4755555555555557,3.48,a-curv-i1,2022-23,Webster - Bartlett High School,03160505, 78, 61, 78.2
2.2044444444444444,2.2,a-curv-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 351, 174, 49.6
4.444444444444445,4.44,a-curv-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 60, 60, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 99, 99, 100.0
2.9422222222222225,2.94,a-curv-i1,2022-23,West Springfield - West Springfield High,03320505, 269, 178, 66.2
4.444444444444445,4.44,a-curv-i1,2022-23,Westborough - Westborough High,03210505, 259, 259, 100.0
2.8311111111111114,2.83,a-curv-i1,2022-23,Westfield - Westfield High,03250505, 215, 137, 63.7
4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 126, 126, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Virtual School,03250705, 9, 9, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Westford - Westford Academy,03260505, 418, 418, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Weston - Weston High,03300505, 154, 154, 100.0
3.008888888888889,3.01,a-curv-i1,2022-23,Westport - Westport Middle-High School,03310515, 65, 44, 67.7
4.248888888888889,4.25,a-curv-i1,2022-23,Westwood - Westwood High,03350505, 248, 237, 95.6
2.0,2.0,a-curv-i1,2022-23,Weymouth - Weymouth High School,03360505, 409, 184, 45.0
4.1288888888888895,4.13,a-curv-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 282, 262, 92.9
4.444444444444445,4.44,a-curv-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 319, 319, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Wilmington - Wilmington High,03420505, 191, 191, 100.0
4.0,4.0,a-curv-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 10, 9, 90.0
4.444444444444445,4.44,a-curv-i1,2022-23,Winchendon - Murdock High School,03430515, 45, 45, 100.0
3.9155555555555552,3.92,a-curv-i1,2022-23,Winchester - Winchester High School,03440505, 337, 297, 88.1
4.444444444444445,4.44,a-curv-i1,2022-23,Winthrop - Winthrop High School,03460505, 128, 128, 100.0
4.444444444444445,4.44,a-curv-i1,2022-23,Woburn - Woburn High,03470505, 264, 264, 100.0
4.177777777777778,4.18,a-curv-i1,2022-23,Worcester - Burncoat Senior High,03480503, 265, 249, 94.0
4.142222222222222,4.14,a-curv-i1,2022-23,Worcester - Claremont Academy,03480350, 73, 68, 93.2
4.053333333333334,4.05,a-curv-i1,2022-23,Worcester - Doherty Memorial High,03480512, 294, 268, 91.2
4.102222222222222,4.1,a-curv-i1,2022-23,Worcester - North High,03480515, 272, 251, 92.3
3.8577777777777778,3.86,a-curv-i1,2022-23,Worcester - South High Community,03480520, 318, 276, 86.8
4.444444444444445,4.44,a-curv-i1,2022-23,Worcester - University Pk Campus School,03480285, 39, 39, 100.0
4.404444444444445,4.4,a-curv-i1,2022-23,Worcester - Worcester Technical High,03480605, 347, 344, 99.1
4.444444444444445,4.44,a-curv-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 91, 91, 100.0
2.8044444444444445,2.8,a-curv-i1,2021-22,Abington - Abington High,00010505, 149, 94, 63.1
4.368888888888889,4.37,a-curv-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 59, 58, 98.3

1 Raw likert calculation Likert Score Admin Data Item Academic Year School Name DESE ID # Graduated # Completed MassCore % Completed MassCore
2 4.444444444444445 4.44 a-curv-i1 2022-23 Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School 04450105 88 88 100.0
3 1.9066666666666665 1.91 a-curv-i1 2022-23 Abington - Abington High 00010505 133 57 42.9
4 4.444444444444445 4.44 a-curv-i1 2022-23 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 04120530 52 52 100.0
5 3.9466666666666663 3.95 a-curv-i1 2022-23 Acton-Boxborough - Acton-Boxborough Regional High 06000505 445 395 88.8
6 4.444444444444445 4.44 a-curv-i1 2022-23 Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School 04300305 138 138 100.0
7 3.897777777777778 3.9 a-curv-i1 2022-23 Agawam - Agawam High 00050505 235 206 87.7
8 4.444444444444445 4.44 a-curv-i1 2022-23 Amesbury - Amesbury High 00070505 104 104 100.0
9 4.444444444444445 4.44 a-curv-i1 2022-23 Amherst-Pelham - Amherst Regional High 06050505 202 202 100.0
10 4.444444444444445 4.44 a-curv-i1 2022-23 Andover - Andover High 00090505 420 420 100.0
11 4.444444444444445 4.44 a-curv-i1 2022-23 Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School 35090305 43 43 100.0
12 4.444444444444445 4.44 a-curv-i1 2022-23 Arlington - Arlington High 00100505 368 368 100.0
13 4.444444444444445 4.44 a-curv-i1 2022-23 Ashburnham-Westminster - Oakmont Regional High School 06100505 163 163 100.0
14 3.6711111111111108 3.67 a-curv-i1 2022-23 Ashland - Ashland High 00140505 178 147 82.6
15 4.444444444444445 4.44 a-curv-i1 2022-23 Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School 08010605 256 256 100.0
16 4.444444444444445 4.44 a-curv-i1 2022-23 Athol-Royalston - Athol High 06150505 73 73 100.0
17 4.444444444444445 4.44 a-curv-i1 2022-23 Atlantis Charter (District) - Atlantis Charter School 04910550 77 77 100.0
18 2.6 2.6 a-curv-i1 2022-23 Attleboro - Attleboro Community Academy 00160515 41 24 58.5
19 3.982222222222222 3.98 a-curv-i1 2022-23 Attleboro - Attleboro High 00160505 383 343 89.6
20 4.444444444444445 4.44 a-curv-i1 2022-23 Attleboro - Attleboro Virtual Academy 00160705 12 12 100.0
21 4.004444444444444 4.0 a-curv-i1 2022-23 Auburn - Auburn Senior High 00170505 192 173 90.1
22 4.444444444444445 4.44 a-curv-i1 2022-23 Avon - Avon Middle High School 00180510 45 45 100.0
23 4.342222222222222 4.34 a-curv-i1 2022-23 Ayer Shirley School District - Ayer Shirley Regional High School 06160505 86 84 97.7
24 4.431111111111111 4.43 a-curv-i1 2022-23 Barnstable - Barnstable High 00200505 328 327 99.7
25 4.444444444444445 4.44 a-curv-i1 2022-23 Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School 35020405 47 47 100.0
26 4.444444444444445 4.44 a-curv-i1 2022-23 Bedford - Bedford High 00230505 199 199 100.0
27 3.7644444444444445 3.76 a-curv-i1 2022-23 Belchertown - Belchertown High 00240505 170 144 84.7
28 4.444444444444445 4.44 a-curv-i1 2022-23 Bellingham - Bellingham High School 00250505 117 117 100.0
29 4.444444444444445 4.44 a-curv-i1 2022-23 Belmont - Belmont High 00260505 314 314 100.0
30 3.493333333333333 3.49 a-curv-i1 2022-23 Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School 04140305 28 22 78.6
31 4.444444444444445 4.44 a-curv-i1 2022-23 Berkshire Hills - Monument Mt Regional High 06180505 109 109 100.0
32 4.444444444444445 4.44 a-curv-i1 2022-23 Berlin-Boylston - Tahanto Regional High 06200505 60 60 100.0
33 4.444444444444445 4.44 a-curv-i1 2022-23 Beverly - Beverly High 00300505 317 317 100.0
34 4.102222222222222 4.1 a-curv-i1 2022-23 Billerica - Billerica Memorial High School 00310505 274 253 92.3
35 4.444444444444445 4.44 a-curv-i1 2022-23 Blackstone Valley Regional Vocational Technical - Blackstone Valley 08050605 294 294 100.0
36 4.395555555555556 4.4 a-curv-i1 2022-23 Blackstone-Millville - Blackstone Millville RHS 06220505 95 94 98.9
37 4.444444444444445 4.44 a-curv-i1 2022-23 Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical 08060605 206 206 100.0
38 2.373333333333333 2.37 a-curv-i1 2022-23 Boston - Another Course To College 00350541 58 31 53.4
39 0.21333333333333332 1 a-curv-i1 2022-23 Boston - Boston Adult Tech Academy 00350548 105 5 4.8
40 2.8577777777777778 2.86 a-curv-i1 2022-23 Boston - Boston Arts Academy 00350546 98 63 64.3
41 0.26222222222222225 1 a-curv-i1 2022-23 Boston - Boston Collaborative High School 00350755 85 5 5.9
42 1.5066666666666666 1.51 a-curv-i1 2022-23 Boston - Boston Community Leadership Academy 00350558 112 38 33.9
43 0.05777777777777778 1 a-curv-i1 2022-23 Boston - Boston International High School & Newcomers Academy 00350507 75 1 1.3
44 2.608888888888889 2.61 a-curv-i1 2022-23 Boston - Boston Latin Academy 00350545 300 176 58.7
45 3.2844444444444445 3.28 a-curv-i1 2022-23 Boston - Boston Latin School 00350560 410 303 73.9
46 1.6622222222222223 1.66 a-curv-i1 2022-23 Boston - Brighton High School 00350505 107 40 37.4
47 0.28444444444444444 1 a-curv-i1 2022-23 Boston - Burke High School 00350525 78 5 6.4
48 1.0044444444444445 1.0 a-curv-i1 2022-23 Boston - Charlestown High School 00350515 137 31 22.6
49 0.0 1 a-curv-i1 2022-23 Boston - Community Academy 00350518 18 0 0.0
50 0.6933333333333334 1 a-curv-i1 2022-23 Boston - Community Academy of Science and Health 00350581 45 7 15.6
51 0.3644444444444444 1 a-curv-i1 2022-23 Boston - Dearborn 6-12 STEM Academy 00350074 73 6 8.2
52 2.2533333333333334 2.25 a-curv-i1 2022-23 Boston - East Boston High School 00350530 229 116 50.7
53 2.3644444444444446 2.36 a-curv-i1 2022-23 Boston - English High School 00350535 126 67 53.2
54 1.7066666666666666 1.71 a-curv-i1 2022-23 Boston - Excel High School 00350522 86 33 38.4
55 1.8222222222222222 1.82 a-curv-i1 2022-23 Boston - Fenway High School 00350540 83 34 41.0
56 0.1288888888888889 1 a-curv-i1 2022-23 Boston - Greater Egleston High School 00350543 34 1 2.9
57 2.7333333333333334 2.73 a-curv-i1 2022-23 Boston - Henderson K-12 Inclusion School Upper 00350426 65 40 61.5
58 1.7377777777777779 1.74 a-curv-i1 2022-23 Boston - Lyon High School 00350655 23 9 39.1
59 2.8177777777777777 2.82 a-curv-i1 2022-23 Boston - Madison Park Technical Vocational High School 00350537 183 116 63.4
60 0.0 1 a-curv-i1 2022-23 Boston - Margarita Muniz Academy 00350549 65 0 0.0
61 0.0 1 a-curv-i1 2022-23 Boston - McKinley Schools 00350363 13 0 0.0
62 2.1555555555555554 2.16 a-curv-i1 2022-23 Boston - New Mission High School 00350542 97 47 48.5
63 4.208888888888889 4.21 a-curv-i1 2022-23 Boston - O'Bryant School of Math & Science 00350575 318 301 94.7
64 3.728888888888889 3.73 a-curv-i1 2022-23 Boston - Quincy Upper School 00350565 31 26 83.9
65 1.7866666666666668 1.79 a-curv-i1 2022-23 Boston - Snowden International High School 00350690 92 37 40.2
66 1.2844444444444443 1.28 a-curv-i1 2022-23 Boston - TechBoston Academy 00350657 128 37 28.9
67 4.444444444444445 4.44 a-curv-i1 2022-23 Boston Collegiate Charter (District) - Boston Collegiate Charter School 04490305 76 76 100.0
68 0.0 1 a-curv-i1 2022-23 Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School 04240505 49 0 0.0
69 0.15555555555555556 1 a-curv-i1 2022-23 Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School 04110305 57 2 3.5
70 4.444444444444445 4.44 a-curv-i1 2022-23 Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School 04160305 69 69 100.0
71 3.1333333333333333 3.13 a-curv-i1 2022-23 Bourne - Bourne High School 00360505 88 62 70.5
72 4.253333333333334 4.25 a-curv-i1 2022-23 Braintree - Braintree High 00400505 399 382 95.7
73 4.444444444444445 4.44 a-curv-i1 2022-23 Bridgewater-Raynham - Bridgewater-Raynham Regional 06250505 315 315 100.0
74 4.444444444444445 4.44 a-curv-i1 2022-23 Bristol County Agricultural - Bristol County Agricultural High 09100705 102 102 100.0
75 4.444444444444445 4.44 a-curv-i1 2022-23 Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical 08100605 311 311 100.0
76 0.0 1 a-curv-i1 2022-23 Brockton - Brockton Champion High School 00440515 25 0 0.0
77 1.8711111111111112 1.87 a-curv-i1 2022-23 Brockton - Brockton High 00440505 760 320 42.1
78 1.2133333333333334 1.21 a-curv-i1 2022-23 Brockton - Brockton Virtual Learning Academy 00440705 11 3 27.3
79 0.0 1 a-curv-i1 2022-23 Brockton - Edison Academy 00440520 153 0 0.0
80 4.444444444444445 4.44 a-curv-i1 2022-23 Brooke Charter School (District) - Brooke Charter School 04280305 98 98 100.0
81 4.248888888888889 4.25 a-curv-i1 2022-23 Brookline - Brookline High 00460505 478 457 95.6
82 4.444444444444445 4.44 a-curv-i1 2022-23 Burlington - Burlington High 00480505 217 217 100.0
83 4.355555555555555 4.36 a-curv-i1 2022-23 Cambridge - Cambridge Rindge and Latin 00490506 461 452 98.0
84 4.444444444444445 4.44 a-curv-i1 2022-23 Canton - Canton High 00500505 205 205 100.0
85 4.444444444444445 4.44 a-curv-i1 2022-23 Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical 08150605 156 156 100.0
86 4.444444444444445 4.44 a-curv-i1 2022-23 Carver - Carver Middle/High School 00520405 88 88 100.0
87 3.151111111111111 3.15 a-curv-i1 2022-23 Central Berkshire - Wahconah Regional High 06350505 110 78 70.9
88 4.444444444444445 4.44 a-curv-i1 2022-23 Chelmsford - Chelmsford High 00560505 309 309 100.0
89 4.444444444444445 4.44 a-curv-i1 2022-23 Chelsea - Chelsea High 00570505 271 271 100.0
90 4.444444444444445 4.44 a-curv-i1 2022-23 Chelsea - Chelsea Opportunity Academy 00570515 33 33 100.0
91 4.444444444444445 4.44 a-curv-i1 2022-23 Chelsea - Chelsea Virtual Learning Academy 00570705 15 15 100.0
92 1.9466666666666665 1.95 a-curv-i1 2022-23 Chicopee - Chicopee Academy 00610021 16 7 43.8
93 1.702222222222222 1.7 a-curv-i1 2022-23 Chicopee - Chicopee Comprehensive High School 00610510 253 97 38.3
94 1.271111111111111 1.27 a-curv-i1 2022-23 Chicopee - Chicopee High 00610505 185 53 28.6
95 4.444444444444445 4.44 a-curv-i1 2022-23 City on a Hill Charter Public School (District) - City on a Hill Charter Public School 04370505 35 35 100.0
96 4.1288888888888895 4.13 a-curv-i1 2022-23 Clinton - Clinton Senior High 00640505 112 104 92.9
97 4.444444444444445 4.44 a-curv-i1 2022-23 Codman Academy Charter Public (District) - Codman Academy Charter Public School 04380505 27 27 100.0
98 4.404444444444445 4.4 a-curv-i1 2022-23 Cohasset - Cohasset High School 00650505 114 113 99.1
99 4.444444444444445 4.44 a-curv-i1 2022-23 Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell 35030205 27 27 100.0
100 4.444444444444445 4.44 a-curv-i1 2022-23 Community Charter School of Cambridge (District) - Community Charter School of Cambridge 04360305 27 27 100.0
101 4.444444444444445 4.44 a-curv-i1 2022-23 Concord-Carlisle - Concord Carlisle High 06400505 336 336 100.0
102 4.444444444444445 4.44 a-curv-i1 2022-23 Danvers - Danvers High 00710505 190 190 100.0
103 4.346666666666667 4.35 a-curv-i1 2022-23 Dartmouth - Dartmouth High 00720505 232 227 97.8
104 2.688888888888889 2.69 a-curv-i1 2022-23 Dedham - Dedham High 00730505 172 104 60.5
105 4.413333333333333 4.41 a-curv-i1 2022-23 Dennis-Yarmouth - Dennis-Yarmouth Regional High 06450505 148 147 99.3
106 4.444444444444445 4.44 a-curv-i1 2022-23 Dighton-Rehoboth - Dighton-Rehoboth Regional High School 06500505 153 153 100.0
107 4.12 4.12 a-curv-i1 2022-23 Douglas - Douglas High School 00770505 82 76 92.7
108 4.444444444444445 4.44 a-curv-i1 2022-23 Dover-Sherborn - Dover-Sherborn Regional High 06550505 149 149 100.0
109 4.444444444444445 4.44 a-curv-i1 2022-23 Dracut - Dracut Senior High 00790505 188 188 100.0
110 3.04 3.04 a-curv-i1 2022-23 Dudley-Charlton Reg - Shepherd Hill Regional High 06580505 212 145 68.4
111 4.426666666666667 4.43 a-curv-i1 2022-23 Duxbury - Duxbury High 00820505 226 225 99.6
112 4.444444444444445 4.44 a-curv-i1 2022-23 East Bridgewater - East Bridgewater JR./SR. High School 00830505 158 158 100.0
113 0.4444444444444444 1 a-curv-i1 2022-23 East Longmeadow - East Longmeadow High 00870505 211 21 10.0
114 4.444444444444445 4.44 a-curv-i1 2022-23 Easthampton - Easthampton High 00860505 93 93 100.0
115 3.7022222222222223 3.7 a-curv-i1 2022-23 Easton - Oliver Ames High 00880505 270 225 83.3
116 4.444444444444445 4.44 a-curv-i1 2022-23 Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School 04520505 83 83 100.0
117 4.444444444444445 4.44 a-curv-i1 2022-23 Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School 08170505 393 393 100.0
118 4.444444444444445 4.44 a-curv-i1 2022-23 Everett - Everett High 00930505 436 436 100.0
119 1.7955555555555556 1.8 a-curv-i1 2022-23 Excel Academy Charter (District) - Excel Academy Charter School 04100205 161 65 40.4
120 4.444444444444445 4.44 a-curv-i1 2022-23 Fairhaven - Fairhaven High 00940505 163 163 100.0
121 3.577777777777778 3.58 a-curv-i1 2022-23 Fall River - B M C Durfee High 00950505 483 389 80.5
122 0.36 1 a-curv-i1 2022-23 Fall River - Resiliency Preparatory Academy 00950525 37 3 8.1
123 3.813333333333333 3.81 a-curv-i1 2022-23 Falmouth - Falmouth High 00960505 190 163 85.8
124 4.137777777777777 4.14 a-curv-i1 2022-23 Fitchburg - Fitchburg High 00970505 261 243 93.1
125 0.42666666666666664 1 a-curv-i1 2022-23 Fitchburg - Goodrich Academy 00970510 135 13 9.6
126 3.791111111111111 3.79 a-curv-i1 2022-23 Four Rivers Charter Public (District) - Four Rivers Charter Public School 04130505 34 29 85.3
127 3.013333333333333 3.01 a-curv-i1 2022-23 Foxborough - Foxborough High 00990505 177 120 67.8
128 4.444444444444445 4.44 a-curv-i1 2022-23 Foxborough Regional Charter (District) - Foxborough Regional Charter School 04460550 86 86 100.0
129 3.7688888888888887 3.77 a-curv-i1 2022-23 Framingham - Framingham High School 01000515 545 462 84.8
130 4.013333333333334 4.01 a-curv-i1 2022-23 Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School 04780505 62 56 90.3
131 4.444444444444445 4.44 a-curv-i1 2022-23 Franklin - Franklin High 01010505 421 421 100.0
132 4.444444444444445 4.44 a-curv-i1 2022-23 Franklin County Regional Vocational Technical - Franklin County Technical 08180605 124 124 100.0
133 4.444444444444445 4.44 a-curv-i1 2022-23 Freetown-Lakeville - Apponequet Regional High 06650505 184 184 100.0
134 4.2444444444444445 4.24 a-curv-i1 2022-23 Frontier - Frontier Regional 06700505 88 84 95.5
135 2.102222222222222 2.1 a-curv-i1 2022-23 Gardner - Gardner Academy for Learning and Technology 01030515 55 26 47.3
136 3.066666666666667 3.07 a-curv-i1 2022-23 Gardner - Gardner High 01030505 126 87 69.0
137 3.466666666666667 3.47 a-curv-i1 2022-23 Gateway - Gateway Regional High 06720505 41 32 78.0
138 4.444444444444445 4.44 a-curv-i1 2022-23 Georgetown - Georgetown High School 01050505 78 78 100.0
139 3.728888888888889 3.73 a-curv-i1 2022-23 Gill-Montague - Turners Fall High 06740505 31 26 83.9
140 4.444444444444445 4.44 a-curv-i1 2022-23 Global Learning Charter Public (District) - Global Learning Charter Public School 04960305 43 43 100.0
141 2.7022222222222223 2.7 a-curv-i1 2022-23 Gloucester - Gloucester High 01070505 181 110 60.8
142 4.426666666666667 4.43 a-curv-i1 2022-23 Grafton - Grafton High School 01100505 228 227 99.6
143 4.444444444444445 4.44 a-curv-i1 2022-23 Granby - Granby Jr Sr High School 01110505 56 56 100.0
144 4.444444444444445 4.44 a-curv-i1 2022-23 Greater Commonwealth Virtual District - Greater Commonwealth Virtual School 39010900 132 132 100.0
145 4.444444444444445 4.44 a-curv-i1 2022-23 Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High 08210605 315 315 100.0
146 4.444444444444445 4.44 a-curv-i1 2022-23 Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical 08230605 402 402 100.0
147 0.0 1 a-curv-i1 2022-23 Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical 08280605 525 0 0.0
148 4.444444444444445 4.44 a-curv-i1 2022-23 Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical 08250605 448 448 100.0
149 2.351111111111111 2.35 a-curv-i1 2022-23 Greenfield - Greenfield High 01140505 68 36 52.9
150 4.444444444444445 4.44 a-curv-i1 2022-23 Groton-Dunstable - Groton Dunstable Regional 06730505 168 168 100.0
151 4.444444444444445 4.44 a-curv-i1 2022-23 Hadley - Hopkins Academy 01170505 37 37 100.0
152 4.444444444444445 4.44 a-curv-i1 2022-23 Hamilton-Wenham - Hamilton-Wenham Regional High 06750505 118 118 100.0
153 4.444444444444445 4.44 a-curv-i1 2022-23 Hampden Charter School of Science East (District) - Hampden Charter School of Science East 04990305 64 64 100.0
154 4.444444444444445 4.44 a-curv-i1 2022-23 Hampden Charter School of Science West (District) - Hampden Charter School of Science West 35160305 25 25 100.0
155 3.7422222222222223 3.74 a-curv-i1 2022-23 Hampden-Wilbraham - Minnechaug Regional High 06800505 221 186 84.2
156 4.444444444444445 4.44 a-curv-i1 2022-23 Hampshire - Hampshire Regional High 06830505 98 98 100.0
157 4.444444444444445 4.44 a-curv-i1 2022-23 Hanover - Hanover High 01220505 167 167 100.0
158 4.444444444444445 4.44 a-curv-i1 2022-23 Harvard - Bromfield 01250505 76 76 100.0
159 4.444444444444445 4.44 a-curv-i1 2022-23 Hatfield - Smith Academy 01270505 24 24 100.0
160 0.0 1 a-curv-i1 2022-23 Haverhill - Gateway Academy 01280515 10 0 0.0
161 2.04 2.04 a-curv-i1 2022-23 Haverhill - Haverhill High 01280505 405 186 45.9
162 4.444444444444445 4.44 a-curv-i1 2022-23 Hingham - Hingham High 01310505 317 317 100.0
163 4.444444444444445 4.44 a-curv-i1 2022-23 Holbrook - Holbrook Middle High School 01330505 78 78 100.0
164 4.444444444444445 4.44 a-curv-i1 2022-23 Holliston - Holliston High 01360505 194 194 100.0
165 1.4133333333333333 1.41 a-curv-i1 2022-23 Holyoke - Holyoke High 01370505 318 101 31.8
166 2.631111111111111 2.63 a-curv-i1 2022-23 Hoosac Valley Regional - Hoosac Valley High School 06030505 49 29 59.2
167 4.444444444444445 4.44 a-curv-i1 2022-23 Hopedale - Hopedale Jr Sr High 01380505 62 62 100.0
168 4.444444444444445 4.44 a-curv-i1 2022-23 Hopkinton - Hopkinton High 01390505 310 310 100.0
169 4.444444444444445 4.44 a-curv-i1 2022-23 Hudson - Hudson High 01410505 153 153 100.0
170 4.444444444444445 4.44 a-curv-i1 2022-23 Hull - Hull High 01420505 60 60 100.0
171 3.9644444444444447 3.96 a-curv-i1 2022-23 Innovation Academy Charter (District) - Innovation Academy Charter School 04350305 83 74 89.2
172 4.444444444444445 4.44 a-curv-i1 2022-23 Ipswich - Ipswich High 01440505 120 120 100.0
173 4.444444444444445 4.44 a-curv-i1 2022-23 KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School 04290010 107 107 100.0
174 4.444444444444445 4.44 a-curv-i1 2022-23 King Philip - King Philip Regional High 06900505 265 265 100.0
175 4.444444444444445 4.44 a-curv-i1 2022-23 Lawrence - High School Learning Center 01490536 107 107 100.0
176 4.444444444444445 4.44 a-curv-i1 2022-23 Lawrence - Lawrence High School 01490515 589 589 100.0
177 4.444444444444445 4.44 a-curv-i1 2022-23 Lawrence - RISE Academy 01490615 11 11 100.0
178 2.8355555555555556 2.84 a-curv-i1 2022-23 Lee - Lee Middle/High School 01500505 58 37 63.8
179 4.444444444444445 4.44 a-curv-i1 2022-23 Leicester - Leicester High 01510505 97 97 100.0
180 4.444444444444445 4.44 a-curv-i1 2022-23 Lenox - Lenox Memorial High 01520505 63 63 100.0
181 4.444444444444445 4.44 a-curv-i1 2022-23 Leominster - Center For Technical Education Innovation 01530605 130 130 100.0
182 4.444444444444445 4.44 a-curv-i1 2022-23 Leominster - Leominster Center for Excellence 01530515 10 10 100.0
183 4.444444444444445 4.44 a-curv-i1 2022-23 Leominster - Leominster High School 01530505 289 289 100.0
184 4.444444444444445 4.44 a-curv-i1 2022-23 Lexington - Lexington High 01550505 572 572 100.0
185 4.444444444444445 4.44 a-curv-i1 2022-23 Lincoln-Sudbury - Lincoln-Sudbury Regional High 06950505 358 358 100.0
186 4.444444444444445 4.44 a-curv-i1 2022-23 Littleton - Littleton High School 01580505 105 105 100.0
187 2.6133333333333333 2.61 a-curv-i1 2022-23 Longmeadow - Longmeadow High 01590505 211 124 58.8
188 1.0577777777777777 1.06 a-curv-i1 2022-23 Lowell - Lowell High 01600505 585 139 23.8
189 0.0 1 a-curv-i1 2022-23 Lowell - The Career Academy 01600515 49 0 0.0
190 4.444444444444445 4.44 a-curv-i1 2022-23 Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School 04580505 31 31 100.0
191 3.7688888888888887 3.77 a-curv-i1 2022-23 Ludlow - Ludlow Senior High 01610505 191 162 84.8
192 4.444444444444445 4.44 a-curv-i1 2022-23 Lunenburg - Lunenburg High 01620505 97 97 100.0
193 0.21333333333333332 1 a-curv-i1 2022-23 Lynn - Classical High 01630505 414 20 4.8
194 0.23555555555555555 1 a-curv-i1 2022-23 Lynn - Fecteau-Leary Junior/Senior High School 01630525 19 1 5.3
195 0.24444444444444444 1 a-curv-i1 2022-23 Lynn - Lynn English High 01630510 384 21 5.5
196 1.24 1.24 a-curv-i1 2022-23 Lynn - Lynn Vocational Technical Institute 01630605 251 70 27.9
197 4.444444444444445 4.44 a-curv-i1 2022-23 Lynnfield - Lynnfield High 01640505 134 134 100.0
198 4.444444444444445 4.44 a-curv-i1 2022-23 Ma Academy for Math and Science - Ma Academy for Math and Science School 04680505 50 50 100.0
199 2.373333333333333 2.37 a-curv-i1 2022-23 Malden - Malden High 01650505 401 214 53.4
200 4.444444444444445 4.44 a-curv-i1 2022-23 Manchester Essex Regional - Manchester Essex Regional High School 06980510 123 123 100.0
201 4.413333333333333 4.41 a-curv-i1 2022-23 Mansfield - Mansfield High 01670505 290 288 99.3
202 1.8933333333333333 1.89 a-curv-i1 2022-23 Map Academy Charter School (District) - Map Academy Charter School 35170505 54 23 42.6
203 4.444444444444445 4.44 a-curv-i1 2022-23 Marblehead - Marblehead High 01680505 220 220 100.0
204 4.444444444444445 4.44 a-curv-i1 2022-23 Marlborough - Marlborough High 01700505 263 263 100.0
205 4.431111111111111 4.43 a-curv-i1 2022-23 Marshfield - Marshfield High 01710505 297 296 99.7
206 4.444444444444445 4.44 a-curv-i1 2022-23 Martha's Vineyard - Martha's Vineyard Regional High 07000505 179 179 100.0
207 4.444444444444445 4.44 a-curv-i1 2022-23 Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School 04660550 9 9 100.0
208 2.9555555555555557 2.96 a-curv-i1 2022-23 Masconomet - Masconomet Regional High School 07050505 266 177 66.5
209 4.444444444444445 4.44 a-curv-i1 2022-23 Mashpee - Mashpee Middle-High School 01720505 109 109 100.0
210 0.0 1 a-curv-i1 2022-23 Match Charter Public School (District) - Match Charter Public School 04690505 59 0 0.0
211 3.9511111111111115 3.95 a-curv-i1 2022-23 Maynard - Maynard High 01740505 72 64 88.9
212 4.444444444444445 4.44 a-curv-i1 2022-23 Medfield - Medfield Senior High 01750505 198 198 100.0
213 4.444444444444445 4.44 a-curv-i1 2022-23 Medford - Medford High 01760505 307 307 100.0
214 4.444444444444445 4.44 a-curv-i1 2022-23 Medway - Medway High 01770505 161 161 100.0
215 4.444444444444445 4.44 a-curv-i1 2022-23 Melrose - Melrose High 01780505 218 218 100.0
216 2.888888888888889 2.89 a-curv-i1 2022-23 Mendon-Upton - Nipmuc Regional High 07100510 140 91 65.0
217 3.4444444444444446 3.44 a-curv-i1 2022-23 Methuen - Methuen High 01810505 462 358 77.5
218 4.444444444444445 4.44 a-curv-i1 2022-23 Middleborough - Middleborough High 01820505 194 194 100.0
219 4.444444444444445 4.44 a-curv-i1 2022-23 Milford - Milford High 01850505 287 287 100.0
220 4.444444444444445 4.44 a-curv-i1 2022-23 Millbury - Millbury Junior/Senior High 01860505 124 124 100.0
221 4.382222222222222 4.38 a-curv-i1 2022-23 Millis - Millis High School 01870505 73 72 98.6
222 4.444444444444445 4.44 a-curv-i1 2022-23 Milton - Milton High 01890505 266 266 100.0
223 4.444444444444445 4.44 a-curv-i1 2022-23 Minuteman Regional Vocational Technical - Minuteman Regional High 08300605 148 148 100.0
224 4.444444444444445 4.44 a-curv-i1 2022-23 Mohawk Trail - Mohawk Trail Regional School 07170505 25 25 100.0
225 4.444444444444445 4.44 a-curv-i1 2022-23 Monomoy Regional School District - Monomoy Regional High School 07120515 118 118 100.0
226 4.444444444444445 4.44 a-curv-i1 2022-23 Monson - Monson High School 01910505 35 35 100.0
227 4.444444444444445 4.44 a-curv-i1 2022-23 Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical 08320605 317 317 100.0
228 2.7644444444444445 2.76 a-curv-i1 2022-23 Mount Greylock - Mt Greylock Regional High 07150505 82 51 62.2
229 4.444444444444445 4.44 a-curv-i1 2022-23 Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School 04700105 72 72 100.0
230 4.413333333333333 4.41 a-curv-i1 2022-23 Nantucket - Nantucket High 01970505 145 144 99.3
231 4.444444444444445 4.44 a-curv-i1 2022-23 Narragansett - Narragansett Regional High 07200505 62 62 100.0
232 4.444444444444445 4.44 a-curv-i1 2022-23 Nashoba - Nashoba Regional 07250505 192 192 100.0
233 4.444444444444445 4.44 a-curv-i1 2022-23 Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School 08520605 160 160 100.0
234 4.293333333333333 4.29 a-curv-i1 2022-23 Natick - Natick High 01980505 377 364 96.6
235 4.444444444444445 4.44 a-curv-i1 2022-23 Nauset - Nauset Regional High 06600505 198 198 100.0
236 4.444444444444445 4.44 a-curv-i1 2022-23 Needham - Needham High 01990505 375 375 100.0
237 4.444444444444445 4.44 a-curv-i1 2022-23 Neighborhood House Charter (District) - Neighborhood House Charter School 04440205 55 55 100.0
238 4.444444444444445 4.44 a-curv-i1 2022-23 New Bedford - New Bedford High 02010505 570 570 100.0
239 4.444444444444445 4.44 a-curv-i1 2022-23 New Bedford - Trinity Day Academy 02010510 9 9 100.0
240 4.444444444444445 4.44 a-curv-i1 2022-23 New Bedford - Whaling City Junior/Senior High School 02010515 41 41 100.0
241 4.444444444444445 4.44 a-curv-i1 2022-23 New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton 35130305 80 80 100.0
242 4.444444444444445 4.44 a-curv-i1 2022-23 Newburyport - Newburyport High 02040505 207 207 100.0
243 3.9466666666666663 3.95 a-curv-i1 2022-23 Newton - Newton North High 02070505 491 436 88.8
244 3.9466666666666663 3.95 a-curv-i1 2022-23 Newton - Newton South High 02070510 475 422 88.8
245 4.444444444444445 4.44 a-curv-i1 2022-23 Norfolk County Agricultural - Norfolk County Agricultural 09150705 132 132 100.0
246 3.204444444444444 3.2 a-curv-i1 2022-23 North Adams - Drury High 02090505 61 44 72.1
247 4.444444444444445 4.44 a-curv-i1 2022-23 North Andover - North Andover High 02110505 302 302 100.0
248 4.359999999999999 4.36 a-curv-i1 2022-23 North Attleborough - North Attleboro High 02120505 257 252 98.1
249 4.444444444444445 4.44 a-curv-i1 2022-23 North Brookfield - North Brookfield High 02150505 13 13 100.0
250 4.444444444444445 4.44 a-curv-i1 2022-23 North Middlesex - North Middlesex Regional 07350505 171 171 100.0
251 4.444444444444445 4.44 a-curv-i1 2022-23 North Reading - North Reading High 02170505 173 173 100.0
252 0.017777777777777778 1 a-curv-i1 2022-23 Northampton - Northampton High 02100505 233 1 0.4
253 4.444444444444445 4.44 a-curv-i1 2022-23 Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High 04060705 128 128 100.0
254 2.28 2.28 a-curv-i1 2022-23 Northboro-Southboro - Algonquin Regional High 07300505 312 160 51.3
255 4.444444444444445 4.44 a-curv-i1 2022-23 Northbridge - Northbridge High 02140505 125 125 100.0
256 4.444444444444445 4.44 a-curv-i1 2022-23 Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational 08530605 281 281 100.0
257 4.444444444444445 4.44 a-curv-i1 2022-23 Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical 08510605 123 123 100.0
258 3.9555555555555557 3.96 a-curv-i1 2022-23 Norton - Norton High 02180505 163 145 89.0
259 4.444444444444445 4.44 a-curv-i1 2022-23 Norwell - Norwell High 02190505 149 149 100.0
260 2.2666666666666666 2.27 a-curv-i1 2022-23 Norwood - Norwood High 02200505 257 131 51.0
261 4.444444444444445 4.44 a-curv-i1 2022-23 Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical 08550605 140 140 100.0
262 3.911111111111111 3.91 a-curv-i1 2022-23 Old Rochester - Old Rochester Regional High 07400505 167 147 88.0
263 4.391111111111111 4.39 a-curv-i1 2022-23 Oxford - Oxford High 02260505 80 79 98.8
264 4.008888888888889 4.01 a-curv-i1 2022-23 Palmer - Palmer High 02270505 61 55 90.2
265 4.444444444444445 4.44 a-curv-i1 2022-23 Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical 08600605 125 125 100.0
266 4.444444444444445 4.44 a-curv-i1 2022-23 Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School 35010505 47 47 100.0
267 3.7022222222222223 3.7 a-curv-i1 2022-23 Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.) 02290705 12 10 83.3
268 3.1333333333333333 3.13 a-curv-i1 2022-23 Peabody - Peabody Veterans Memorial High 02290510 346 244 70.5
269 4.444444444444445 4.44 a-curv-i1 2022-23 Pembroke - Pembroke High School 02310505 195 195 100.0
270 3.7511111111111113 3.75 a-curv-i1 2022-23 Pentucket - Pentucket Regional Sr High 07450505 154 130 84.4
271 4.444444444444445 4.44 a-curv-i1 2022-23 Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea 04930505 7 7 100.0
272 4.444444444444445 4.44 a-curv-i1 2022-23 Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence 35180505 12 12 100.0
273 4.444444444444445 4.44 a-curv-i1 2022-23 Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield 35080505 9 9 100.0
274 4.444444444444445 4.44 a-curv-i1 2022-23 Pioneer Charter School of Science (District) - Pioneer Charter School of Science 04940205 44 44 100.0
275 4.444444444444445 4.44 a-curv-i1 2022-23 Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II 35060505 46 46 100.0
276 4.262222222222222 4.26 a-curv-i1 2022-23 Pioneer Valley - Pioneer Valley Regional 07500505 49 47 95.9
277 4.444444444444445 4.44 a-curv-i1 2022-23 Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School 04970205 19 19 100.0
278 4.444444444444445 4.44 a-curv-i1 2022-23 Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School 04790505 57 57 100.0
279 3.7111111111111112 3.71 a-curv-i1 2022-23 Pittsfield - Pittsfield High 02360505 139 116 83.5
280 2.2222222222222223 2.22 a-curv-i1 2022-23 Pittsfield - Pittsfield Public Virtual Academy 02360705 12 6 50.0
281 3.2977777777777777 3.3 a-curv-i1 2022-23 Pittsfield - Taconic High 02360510 178 132 74.2
282 3.684444444444445 3.68 a-curv-i1 2022-23 Plymouth - Plymouth North High 02390505 292 242 82.9
283 3.6799999999999997 3.68 a-curv-i1 2022-23 Plymouth - Plymouth South High 02390515 238 197 82.8
284 4.444444444444445 4.44 a-curv-i1 2022-23 Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School 04870550 64 64 100.0
285 4.444444444444445 4.44 a-curv-i1 2022-23 Quabbin - Quabbin Regional High School 07530505 127 127 100.0
286 4.444444444444445 4.44 a-curv-i1 2022-23 Quaboag Regional - Quaboag Regional High 07780505 94 94 100.0
287 1.6444444444444444 1.64 a-curv-i1 2022-23 Quincy - North Quincy High 02430510 332 123 37.0
288 2.697777777777778 2.7 a-curv-i1 2022-23 Quincy - Quincy High 02430505 379 230 60.7
289 4.444444444444445 4.44 a-curv-i1 2022-23 Ralph C Mahar - Ralph C Mahar Regional 07550505 77 77 100.0
290 2.2933333333333334 2.29 a-curv-i1 2022-23 Randolph - Randolph High 02440505 128 66 51.6
291 4.262222222222222 4.26 a-curv-i1 2022-23 Reading - Reading Memorial High 02460505 294 282 95.9
292 4.444444444444445 4.44 a-curv-i1 2022-23 Revere - CityLab Innovation High School 02480520 14 14 100.0
293 4.444444444444445 4.44 a-curv-i1 2022-23 Revere - Revere High 02480505 433 433 100.0
294 4.444444444444445 4.44 a-curv-i1 2022-23 Rising Tide Charter Public (District) - Rising Tide Charter Public School 04830305 64 64 100.0
295 4.444444444444445 4.44 a-curv-i1 2022-23 Rockland - Rockland Senior High 02510505 133 133 100.0
296 4.444444444444445 4.44 a-curv-i1 2022-23 Rockport - Rockport High 02520510 61 61 100.0
297 4.444444444444445 4.44 a-curv-i1 2022-23 Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School 04840505 107 107 100.0
298 4.444444444444445 4.44 a-curv-i1 2022-23 Salem - New Liberty Innovation School 02580510 13 13 100.0
299 4.444444444444445 4.44 a-curv-i1 2022-23 Salem - Salem High 02580505 218 218 100.0
300 4.444444444444445 4.44 a-curv-i1 2022-23 Salem - Salem Prep High School 02580515 6 6 100.0
301 4.444444444444445 4.44 a-curv-i1 2022-23 Salem Academy Charter (District) - Salem Academy Charter School 04850485 65 65 100.0
302 4.386666666666667 4.39 a-curv-i1 2022-23 Sandwich - Sandwich Middle High School 02610505 157 155 98.7
303 3.902222222222222 3.9 a-curv-i1 2022-23 Saugus - Saugus High 02620505 172 151 87.8
304 4.111111111111111 4.11 a-curv-i1 2022-23 Scituate - Scituate High School 02640505 187 173 92.5
305 2.088888888888889 2.09 a-curv-i1 2022-23 Seekonk - Seekonk High 02650505 134 63 47.0
306 3.7511111111111113 3.75 a-curv-i1 2022-23 Sharon - Sharon High 02660505 289 244 84.4
307 0.8933333333333334 1 a-curv-i1 2022-23 Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School 08710605 283 57 20.1
308 4.444444444444445 4.44 a-curv-i1 2022-23 Shrewsbury - Shrewsbury High School 02710505 440 440 100.0
309 4.342222222222222 4.34 a-curv-i1 2022-23 Silver Lake - Silver Lake Regional High 07600505 256 250 97.7
310 4.444444444444445 4.44 a-curv-i1 2022-23 Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School 04740505 38 38 100.0
311 3.3244444444444445 3.32 a-curv-i1 2022-23 Somerset Berkley Regional School District - Somerset Berkley Regional High School 07630505 226 169 74.8
312 3.888888888888889 3.89 a-curv-i1 2022-23 Somerville - Full Circle High School 02740510 8 7 87.5
313 3.0577777777777775 3.06 a-curv-i1 2022-23 Somerville - Somerville High 02740505 266 183 68.8
314 2.7022222222222223 2.7 a-curv-i1 2022-23 South Hadley - South Hadley High 02780505 125 76 60.8
315 4.115555555555555 4.12 a-curv-i1 2022-23 South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School 08290605 175 162 92.6
316 2.7688888888888887 2.77 a-curv-i1 2022-23 South Shore Charter Public (District) - South Shore Charter Public School 04880550 77 48 62.3
317 4.444444444444445 4.44 a-curv-i1 2022-23 South Shore Regional Vocational Technical - South Shore Vocational Technical High 08730605 154 154 100.0
318 4.444444444444445 4.44 a-curv-i1 2022-23 Southbridge - Southbridge High School 02770515 87 87 100.0
319 4.444444444444445 4.44 a-curv-i1 2022-23 Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical 08720605 364 364 100.0
320 3.48 3.48 a-curv-i1 2022-23 Southern Berkshire - Mt Everett Regional 07650505 46 36 78.3
321 4.444444444444445 4.44 a-curv-i1 2022-23 Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School 08760605 267 267 100.0
322 3.7022222222222223 3.7 a-curv-i1 2022-23 Southwick-Tolland-Granville Regional School District - Southwick Regional School 07660505 90 75 83.3
323 4.444444444444445 4.44 a-curv-i1 2022-23 Spencer-E Brookfield - David Prouty High 07670505 67 67 100.0
324 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Conservatory of the Arts 02810475 37 37 100.0
325 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Gateway to College at Holyoke Community College 02810575 15 15 100.0
326 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Gateway to College at Springfield Technical Community College 02810580 19 19 100.0
327 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - High School Of Commerce 02810510 195 195 100.0
328 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - John J Duggan Academy 02810320 81 81 100.0
329 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Roger L. Putnam Vocational Technical Academy 02810620 313 313 100.0
330 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Springfield Central High 02810500 465 465 100.0
331 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Springfield High School 02810570 34 34 100.0
332 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Springfield High School of Science and Technology 02810530 247 247 100.0
333 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Springfield International Academy at Sci-Tech 02810700 13 13 100.0
334 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - Springfield Public Day High School 02810550 11 11 100.0
335 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - The Springfield Renaissance School an Expeditionary Learning School 02810205 72 72 100.0
336 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield - The Springfield Virtual School 02810705 20 20 100.0
337 4.444444444444445 4.44 a-curv-i1 2022-23 Springfield International Charter (District) - Springfield International Charter School 04410505 84 84 100.0
338 4.444444444444445 4.44 a-curv-i1 2022-23 Stoneham - Stoneham High 02840505 141 141 100.0
339 4.444444444444445 4.44 a-curv-i1 2022-23 Stoughton - Stoughton High 02850505 217 217 100.0
340 4.444444444444445 4.44 a-curv-i1 2022-23 Sturgis Charter Public (District) - Sturgis Charter Public School 04890505 207 207 100.0
341 3.9955555555555557 4.0 a-curv-i1 2022-23 Sutton - Sutton High School 02900510 89 80 89.9
342 4.444444444444445 4.44 a-curv-i1 2022-23 Swampscott - Swampscott High 02910505 150 150 100.0
343 0.0 1 a-curv-i1 2022-23 Swansea - Joseph Case High 02920505 106 0 0.0
344 4.444444444444445 4.44 a-curv-i1 2022-23 TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School 39020900 339 339 100.0
345 4.1466666666666665 4.15 a-curv-i1 2022-23 Tantasqua - Tantasqua Regional Sr High 07700505 165 154 93.3
346 2.9466666666666663 2.95 a-curv-i1 2022-23 Tantasqua - Tantasqua Regional Vocational 07700605 101 67 66.3
347 0.39111111111111113 1 a-curv-i1 2022-23 Taunton - Taunton Alternative High School 02930525 34 3 8.8
348 3.9511111111111115 3.95 a-curv-i1 2022-23 Taunton - Taunton High 02930505 458 407 88.9
349 4.444444444444445 4.44 a-curv-i1 2022-23 Tewksbury - Tewksbury Memorial High 02950505 189 189 100.0
350 4.444444444444445 4.44 a-curv-i1 2022-23 Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical 08780605 211 211 100.0
351 3.9466666666666663 3.95 a-curv-i1 2022-23 Triton - Triton Regional High School 07730505 169 150 88.8
352 4.444444444444445 4.44 a-curv-i1 2022-23 Tyngsborough - Tyngsborough High School 03010505 103 103 100.0
353 4.444444444444445 4.44 a-curv-i1 2022-23 Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical 08790605 152 152 100.0
354 3.457777777777778 3.46 a-curv-i1 2022-23 Uxbridge - Gateway to College 03040515 9 7 77.8
355 3.6711111111111108 3.67 a-curv-i1 2022-23 Uxbridge - Uxbridge High 03040505 109 90 82.6
356 3.817777777777778 3.82 a-curv-i1 2022-23 Wachusett - Wachusett Regional High 07750505 467 401 85.9
357 4.444444444444445 4.44 a-curv-i1 2022-23 Wakefield - Wakefield Memorial High 03050505 198 198 100.0
358 2.7688888888888887 2.77 a-curv-i1 2022-23 Walpole - Walpole High 03070505 244 152 62.3
359 3.795555555555556 3.8 a-curv-i1 2022-23 Waltham - Waltham Sr High 03080505 363 310 85.4
360 4.444444444444445 4.44 a-curv-i1 2022-23 Ware - Ware Junior/Senior High School 03090505 54 54 100.0
361 4.444444444444445 4.44 a-curv-i1 2022-23 Wareham - Wareham Cooperative Alternative School 03100315 12 12 100.0
362 4.444444444444445 4.44 a-curv-i1 2022-23 Wareham - Wareham Senior High 03100505 81 81 100.0
363 3.3422222222222224 3.34 a-curv-i1 2022-23 Watertown - Watertown High 03140505 149 112 75.2
364 3.471111111111111 3.47 a-curv-i1 2022-23 Wayland - Wayland High School 03150505 187 146 78.1
365 3.4755555555555557 3.48 a-curv-i1 2022-23 Webster - Bartlett High School 03160505 78 61 78.2
366 2.2044444444444444 2.2 a-curv-i1 2022-23 Wellesley - Wellesley Sr High 03170505 351 174 49.6
367 4.444444444444445 4.44 a-curv-i1 2022-23 West Boylston - West Boylston Junior/Senior High 03220505 60 60 100.0
368 4.444444444444445 4.44 a-curv-i1 2022-23 West Bridgewater - West Bridgewater Junior/Senior 03230505 99 99 100.0
369 2.9422222222222225 2.94 a-curv-i1 2022-23 West Springfield - West Springfield High 03320505 269 178 66.2
370 4.444444444444445 4.44 a-curv-i1 2022-23 Westborough - Westborough High 03210505 259 259 100.0
371 2.8311111111111114 2.83 a-curv-i1 2022-23 Westfield - Westfield High 03250505 215 137 63.7
372 4.444444444444445 4.44 a-curv-i1 2022-23 Westfield - Westfield Technical Academy 03250605 126 126 100.0
373 4.444444444444445 4.44 a-curv-i1 2022-23 Westfield - Westfield Virtual School 03250705 9 9 100.0
374 4.444444444444445 4.44 a-curv-i1 2022-23 Westford - Westford Academy 03260505 418 418 100.0
375 4.444444444444445 4.44 a-curv-i1 2022-23 Weston - Weston High 03300505 154 154 100.0
376 3.008888888888889 3.01 a-curv-i1 2022-23 Westport - Westport Middle-High School 03310515 65 44 67.7
377 4.248888888888889 4.25 a-curv-i1 2022-23 Westwood - Westwood High 03350505 248 237 95.6
378 2.0 2.0 a-curv-i1 2022-23 Weymouth - Weymouth High School 03360505 409 184 45.0
379 4.1288888888888895 4.13 a-curv-i1 2022-23 Whitman-Hanson - Whitman Hanson Regional 07800505 282 262 92.9
380 4.444444444444445 4.44 a-curv-i1 2022-23 Whittier Regional Vocational Technical - Whittier Regional Vocational 08850605 319 319 100.0
381 4.444444444444445 4.44 a-curv-i1 2022-23 Wilmington - Wilmington High 03420505 191 191 100.0
382 4.0 4.0 a-curv-i1 2022-23 Winchendon - Murdock Academy for Success 03430405 10 9 90.0
383 4.444444444444445 4.44 a-curv-i1 2022-23 Winchendon - Murdock High School 03430515 45 45 100.0
384 3.9155555555555552 3.92 a-curv-i1 2022-23 Winchester - Winchester High School 03440505 337 297 88.1
385 4.444444444444445 4.44 a-curv-i1 2022-23 Winthrop - Winthrop High School 03460505 128 128 100.0
386 4.444444444444445 4.44 a-curv-i1 2022-23 Woburn - Woburn High 03470505 264 264 100.0
387 4.177777777777778 4.18 a-curv-i1 2022-23 Worcester - Burncoat Senior High 03480503 265 249 94.0
388 4.142222222222222 4.14 a-curv-i1 2022-23 Worcester - Claremont Academy 03480350 73 68 93.2
389 4.053333333333334 4.05 a-curv-i1 2022-23 Worcester - Doherty Memorial High 03480512 294 268 91.2
390 4.102222222222222 4.1 a-curv-i1 2022-23 Worcester - North High 03480515 272 251 92.3
391 3.8577777777777778 3.86 a-curv-i1 2022-23 Worcester - South High Community 03480520 318 276 86.8
392 4.444444444444445 4.44 a-curv-i1 2022-23 Worcester - University Pk Campus School 03480285 39 39 100.0
393 4.404444444444445 4.4 a-curv-i1 2022-23 Worcester - Worcester Technical High 03480605 347 344 99.1
394 4.444444444444445 4.44 a-curv-i1 2021-22 Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School 04450105 91 91 100.0
395 2.8044444444444445 2.8 a-curv-i1 2021-22 Abington - Abington High 00010505 149 94 63.1
396 4.368888888888889 4.37 a-curv-i1 2021-22 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 04120530 59 58 98.3

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -1,4 +1,409 @@
Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade Nine Students,# Passing All Courses,% Passing All Courses
3.4063157894736844,3.41,a-ovpe-i1,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 89, 72, 80.9
3.263157894736842,3.26,a-ovpe-i1,2022-23,Abington-Abington High,00010505, 138, 107, 77.5
3.8821052631578947,3.88,a-ovpe-i1,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 64, 59, 92.2
4.109473684210526,4.11,a-ovpe-i1,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 418, 408, 97.6
3.9663157894736845,3.97,a-ovpe-i1,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 137, 129, 94.2
3.216842105263158,3.22,a-ovpe-i1,2022-23,Agawam-Agawam High,00050505, 314, 240, 76.4
3.6042105263157893,3.6,a-ovpe-i1,2022-23,Amesbury-Amesbury High,00070505, 125, 107, 85.6
1.296842105263158,1.3,a-ovpe-i1,2022-23,Amesbury-Amesbury Innovation High School,00070515, 13, 4, 30.8
3.528421052631579,3.53,a-ovpe-i1,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 229, 192, 83.8
4.037894736842105,4.04,a-ovpe-i1,2022-23,Andover-Andover High,00090505, 411, 394, 95.9
2.6989473684210523,2.7,a-ovpe-i1,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 92, 59, 64.1
4.025263157894736,4.03,a-ovpe-i1,2022-23,Arlington-Arlington High,00100505, 383, 366, 95.6
3.9157894736842107,3.92,a-ovpe-i1,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 172, 160, 93.0
3.8989473684210525,3.9,a-ovpe-i1,2022-23,Ashland-Ashland High,00140505, 230, 213, 92.6
3.7936842105263158,3.79,a-ovpe-i1,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 302, 272, 90.1
2.7578947368421054,2.76,a-ovpe-i1,2022-23,Athol-Royalston-Athol High,06150505, 113, 74, 65.5
3.2336842105263157,3.23,a-ovpe-i1,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 82, 63, 76.8
NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Community Academy,00160515, 2,"",""
3.8105263157894735,3.81,a-ovpe-i1,2022-23,Attleboro-Attleboro High,00160505, 515, 466, 90.5
NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 3,"",""
3.7263157894736842,3.73,a-ovpe-i1,2022-23,Auburn-Auburn Senior High,00170505, 191, 169, 88.5
3.2757894736842106,3.28,a-ovpe-i1,2022-23,Avon-Avon Middle High School,00180510, 54, 42, 77.8
3.877894736842105,3.88,a-ovpe-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 101, 93, 92.1
3.1073684210526316,3.11,a-ovpe-i1,2022-23,Barnstable-Barnstable High,00200505, 359, 265, 73.8
3.8063157894736843,3.81,a-ovpe-i1,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 52, 47, 90.4
4.042105263157895,4.04,a-ovpe-i1,2022-23,Bedford-Bedford High,00230505, 225, 216, 96.0
3.6378947368421053,3.64,a-ovpe-i1,2022-23,Belchertown-Belchertown High,00240505, 147, 127, 86.4
3.6842105263157894,3.68,a-ovpe-i1,2022-23,Bellingham-Bellingham High School,00250505, 160, 140, 87.5
2.1052631578947367,2.11,a-ovpe-i1,2022-23,Bellingham-Keough Memorial Academy,00250510, 8, 4, 50.0
4.105263157894737,4.11,a-ovpe-i1,2022-23,Belmont-Belmont High,00260505, 360, 351, 97.5
2.778947368421053,2.78,a-ovpe-i1,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 50, 33, 66.0
3.6294736842105264,3.63,a-ovpe-i1,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 123, 106, 86.2
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 74, 74, 100.0
3.3557894736842107,3.36,a-ovpe-i1,2022-23,Beverly-Beverly High,00300505, 340, 271, 79.7
3.528421052631579,3.53,a-ovpe-i1,2022-23,Billerica-Billerica Memorial High School,00310505, 327, 274, 83.8
3.9789473684210526,3.98,a-ovpe-i1,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 307, 290, 94.5
3.8947368421052633,3.89,a-ovpe-i1,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 107, 99, 92.5
4.105263157894737,4.11,a-ovpe-i1,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 241, 235, 97.5
2.7621052631578946,2.76,a-ovpe-i1,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 96, 63, 65.6
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 58, 58, 100.0
3.2336842105263157,3.23,a-ovpe-i1,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 82, 63, 76.8
3.873684210526316,3.87,a-ovpe-i1,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 125, 115, 92.0
2.143157894736842,2.14,a-ovpe-i1,2022-23,Boston-Another Course To College,00350541, 53, 27, 50.9
2.8968421052631577,2.9,a-ovpe-i1,2022-23,Boston-Boston Arts Academy,00350546, 141, 97, 68.8
NA,NA,a-ovpe-i1,2022-23,Boston-Boston Collaborative High School,00350755, 2,"",""
3.191578947368421,3.19,a-ovpe-i1,2022-23,Boston-Boston Community Leadership Academy,00350558, 124, 94, 75.8
2.778947368421053,2.78,a-ovpe-i1,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 215, 142, 66.0
3.663157894736842,3.66,a-ovpe-i1,2022-23,Boston-Boston Latin Academy,00350545, 323, 281, 87.0
3.9747368421052633,3.97,a-ovpe-i1,2022-23,Boston-Boston Latin School,00350560, 412, 389, 94.4
2.7705263157894735,2.77,a-ovpe-i1,2022-23,Boston-Brighton High School,00350505, 117, 77, 65.8
3.3263157894736843,3.33,a-ovpe-i1,2022-23,Boston-Burke High School,00350525, 81, 64, 79.0
NA,NA,a-ovpe-i1,2022-23,Boston-Carter School,00350036, 4,"",""
2.517894736842105,2.52,a-ovpe-i1,2022-23,Boston-Charlestown High School,00350515, 174, 104, 59.8
NA,NA,a-ovpe-i1,2022-23,Boston-Community Academy,00350518, 3,"",""
1.8778947368421053,1.88,a-ovpe-i1,2022-23,Boston-Community Academy of Science and Health,00350581, 74, 33, 44.6
2.0336842105263155,2.03,a-ovpe-i1,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 89, 43, 48.3
3.8610526315789473,3.86,a-ovpe-i1,2022-23,Boston-East Boston High School,00350530, 228, 209, 91.7
1.8526315789473684,1.85,a-ovpe-i1,2022-23,Boston-English High School,00350535, 141, 62, 44.0
2.210526315789474,2.21,a-ovpe-i1,2022-23,Boston-Excel High School,00350522, 99, 52, 52.5
3.002105263157895,3.0,a-ovpe-i1,2022-23,Boston-Fenway High School,00350540, 94, 67, 71.3
NA,NA,a-ovpe-i1,2022-23,Boston-Greater Egleston High School,00350543, 2,"",""
1.7473684210526317,1.75,a-ovpe-i1,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 65, 27, 41.5
NA,NA,a-ovpe-i1,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"",""
3.9115789473684215,3.91,a-ovpe-i1,2022-23,Boston-Lyon High School,00350655, 28, 26, 92.9
0.7663157894736842,1,a-ovpe-i1,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 269, 49, 18.2
2.64,2.64,a-ovpe-i1,2022-23,Boston-Margarita Muniz Academy,00350549, 83, 52, 62.7
1.7347368421052634,1.73,a-ovpe-i1,2022-23,Boston-McKinley Schools,00350363, 17, 7, 41.2
3.2042105263157894,3.2,a-ovpe-i1,2022-23,Boston-New Mission High School,00350542, 134, 102, 76.1
3.5199999999999996,3.52,a-ovpe-i1,2022-23,Boston-O'Bryant School of Math & Science,00350575, 323, 270, 83.6
2.526315789473684,2.53,a-ovpe-i1,2022-23,Boston-Quincy Upper School,00350565, 70, 42, 60.0
1.7726315789473686,1.77,a-ovpe-i1,2022-23,Boston-Snowden International High School,00350690, 121, 51, 42.1
2.6315789473684212,2.63,a-ovpe-i1,2022-23,Boston-TechBoston Academy,00350657, 160, 100, 62.5
3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bourne-Bourne High School,00360505, 85, 72, 84.7
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Braintree-Braintree High,00400505, 408, 408, 100.0
3.8273684210526318,3.83,a-ovpe-i1,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 361, 328, 90.9
NA,NA,a-ovpe-i1,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 1,"",""
3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 170, 144, 84.7
4.0884210526315785,4.09,a-ovpe-i1,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 346, 336, 97.1
1.376842105263158,1.38,a-ovpe-i1,2022-23,Brockton-Brockton Champion High School,00440515, 52, 17, 32.7
1.8736842105263158,1.87,a-ovpe-i1,2022-23,Brockton-Brockton High,00440505," 1,172", 521, 44.5
0.648421052631579,1,a-ovpe-i1,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 26, 4, 15.4
2.2610526315789476,2.26,a-ovpe-i1,2022-23,Brockton-Edison Academy,00440520, 41, 22, 53.7
NA,NA,a-ovpe-i1,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 4,"",""
3.7557894736842106,3.76,a-ovpe-i1,2022-23,Brockton-PROMISE College and Career Academy,00440525, 37, 33, 89.2
3.477894736842105,3.48,a-ovpe-i1,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 155, 128, 82.6
3.8821052631578947,3.88,a-ovpe-i1,2022-23,Brookline-Brookline High,00460505, 515, 475, 92.2
3.9663157894736845,3.97,a-ovpe-i1,2022-23,Burlington-Burlington High,00480505, 226, 213, 94.2
3.7263157894736842,3.73,a-ovpe-i1,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 497, 440, 88.5
4.067368421052631,4.07,a-ovpe-i1,2022-23,Canton-Canton High,00500505, 261, 252, 96.6
3.6757894736842105,3.68,a-ovpe-i1,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 181, 158, 87.3
3.389473684210526,3.39,a-ovpe-i1,2022-23,Carver-Carver Middle/High School,00520405, 82, 66, 80.5
3.6042105263157893,3.6,a-ovpe-i1,2022-23,Central Berkshire-Wahconah Regional High,06350505, 111, 95, 85.6
4.0,4.0,a-ovpe-i1,2022-23,Chelmsford-Chelmsford High,00560505, 361, 343, 95.0
2.0589473684210526,2.06,a-ovpe-i1,2022-23,Chelsea-Chelsea High,00570505, 554, 271, 48.9
NA,NA,a-ovpe-i1,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 4,"",""
NA,NA,a-ovpe-i1,2022-23,Chicopee-Chicopee Academy,00610021, 9, 0, .0
3.1789473684210527,3.18,a-ovpe-i1,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 330, 249, 75.5
2.2778947368421054,2.28,a-ovpe-i1,2022-23,Chicopee-Chicopee High,00610505, 266, 144, 54.1
2.4463157894736844,2.45,a-ovpe-i1,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 43, 25, 58.1
3.4610526315789474,3.46,a-ovpe-i1,2022-23,Clinton-Clinton Senior High,00640505, 174, 143, 82.2
2.9221052631578948,2.92,a-ovpe-i1,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 36, 25, 69.4
4.172631578947368,4.17,a-ovpe-i1,2022-23,Cohasset-Cohasset High School,00650505, 114, 113, 99.1
2.4210526315789473,2.42,a-ovpe-i1,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 73, 42, 57.5
3.9621052631578944,3.96,a-ovpe-i1,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 34, 32, 94.1
4.197894736842105,4.2,a-ovpe-i1,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 323, 322, 99.7
3.7936842105263158,3.79,a-ovpe-i1,2022-23,Danvers-Danvers High,00710505, 181, 163, 90.1
3.3473684210526318,3.35,a-ovpe-i1,2022-23,Dartmouth-Dartmouth High,00720505, 244, 194, 79.5
3.7473684210526317,3.75,a-ovpe-i1,2022-23,Dedham-Dedham High,00730505, 182, 162, 89.0
3.023157894736842,3.02,a-ovpe-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 195, 140, 71.8
3.3010526315789477,3.3,a-ovpe-i1,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 162, 127, 78.4
3.8105263157894735,3.81,a-ovpe-i1,2022-23,Douglas-Douglas High School,00770505, 74, 67, 90.5
4.189473684210526,4.19,a-ovpe-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 184, 183, 99.5
3.2294736842105265,3.23,a-ovpe-i1,2022-23,Dracut-Dracut Senior High,00790505, 240, 184, 76.7
3.3810526315789473,3.38,a-ovpe-i1,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 289, 232, 80.3
4.1557894736842105,4.16,a-ovpe-i1,2022-23,Duxbury-Duxbury High,00820505, 226, 223, 98.7
3.663157894736842,3.66,a-ovpe-i1,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 154, 134, 87.0
3.76,3.76,a-ovpe-i1,2022-23,East Longmeadow-East Longmeadow High,00870505, 205, 183, 89.3
3.2294736842105265,3.23,a-ovpe-i1,2022-23,Easthampton-Easthampton High,00860505, 90, 69, 76.7
4.037894736842105,4.04,a-ovpe-i1,2022-23,Easton-Oliver Ames High,00880505, 243, 233, 95.9
2.6357894736842105,2.64,a-ovpe-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 107, 67, 62.6
3.953684210526316,3.95,a-ovpe-i1,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 446, 419, 93.9
NA,NA,a-ovpe-i1,2022-23,Everett-Devens School,00930030, 4,"",""
2.3073684210526313,2.31,a-ovpe-i1,2022-23,Everett-Everett High,00930505, 637, 349, 54.8
3.945263157894737,3.95,a-ovpe-i1,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 175, 164, 93.7
3.3305263157894736,3.33,a-ovpe-i1,2022-23,Fairhaven-Fairhaven High,00940505, 158, 125, 79.1
1.9157894736842105,1.92,a-ovpe-i1,2022-23,Fall River-B M C Durfee High,00950505, 708, 322, 45.5
4.054736842105263,4.05,a-ovpe-i1,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 27, 26, 96.3
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Fall River-Stone PK-12 School,00950340, 12, 12, 100.0
3.0694736842105264,3.07,a-ovpe-i1,2022-23,Falmouth-Falmouth High,00960505, 177, 129, 72.9
2.610526315789474,2.61,a-ovpe-i1,2022-23,Fitchburg-Fitchburg High,00970505, 321, 199, 62.0
1.6378947368421053,1.64,a-ovpe-i1,2022-23,Fitchburg-Goodrich Academy,00970510, 18, 7, 38.9
3.6757894736842105,3.68,a-ovpe-i1,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 102, 89, 87.3
3.6378947368421053,3.64,a-ovpe-i1,2022-23,Foxborough-Foxborough High,00990505, 206, 178, 86.4
2.383157894736842,2.38,a-ovpe-i1,2022-23,Framingham-Framingham High School,01000515, 742, 420, 56.6
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 66, 66, 100.0
4.16,4.16,a-ovpe-i1,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 161, 159, 98.8
4.037894736842105,4.04,a-ovpe-i1,2022-23,Franklin-Franklin High,01010505, 392, 376, 95.9
3.68,3.68,a-ovpe-i1,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 174, 152, 87.4
3.890526315789474,3.89,a-ovpe-i1,2022-23,Frontier-Frontier Regional,06700505, 92, 85, 92.4
1.806315789473684,1.81,a-ovpe-i1,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 7, 3, 42.9
2.9894736842105263,2.99,a-ovpe-i1,2022-23,Gardner-Gardner High,01030505, 169, 120, 71.0
3.313684210526316,3.31,a-ovpe-i1,2022-23,Gateway-Gateway Regional High,06720505, 47, 37, 78.7
3.7978947368421054,3.8,a-ovpe-i1,2022-23,Georgetown-Georgetown High School,01050505, 82, 74, 90.2
3.705263157894737,3.71,a-ovpe-i1,2022-23,Gill-Montague-Turners Fall High,06740505, 50, 44, 88.0
3.4526315789473685,3.45,a-ovpe-i1,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 50, 41, 82.0
2.858947368421053,2.86,a-ovpe-i1,2022-23,Gloucester-Gloucester High,01070505, 212, 144, 67.9
3.7936842105263158,3.79,a-ovpe-i1,2022-23,Grafton-Grafton High School,01100505, 213, 192, 90.1
4.042105263157895,4.04,a-ovpe-i1,2022-23,Granby-Granby Jr Sr High School,01110505, 50, 48, 96.0
1.2505263157894737,1.25,a-ovpe-i1,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 165, 49, 29.7
3.9747368421052633,3.97,a-ovpe-i1,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 377, 356, 94.4
3.654736842105263,3.65,a-ovpe-i1,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 438, 380, 86.8
4.016842105263158,4.02,a-ovpe-i1,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 587, 560, 95.4
3.9242105263157896,3.92,a-ovpe-i1,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 560, 522, 93.2
2.8547368421052632,2.85,a-ovpe-i1,2022-23,Greenfield-Greenfield High,01140505, 90, 61, 67.8
4.134736842105263,4.13,a-ovpe-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 164, 161, 98.2
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hadley-Hopkins Academy,01170505, 31, 31, 100.0
4.168421052631579,4.17,a-ovpe-i1,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 104, 103, 99.0
3.473684210526316,3.47,a-ovpe-i1,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 80, 66, 82.5
3.2926315789473684,3.29,a-ovpe-i1,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 55, 43, 78.2
4.021052631578947,4.02,a-ovpe-i1,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 267, 255, 95.5
4.130526315789473,4.13,a-ovpe-i1,2022-23,Hampshire-Hampshire Regional High,06830505, 103, 101, 98.1
4.1557894736842105,4.16,a-ovpe-i1,2022-23,Hanover-Hanover High,01220505, 150, 148, 98.7
4.008421052631579,4.01,a-ovpe-i1,2022-23,Harvard-Bromfield,01250505, 84, 80, 95.2
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hatfield-Smith Academy,01270505, 21, 21, 100.0
NA,NA,a-ovpe-i1,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 2,"",""
0.3831578947368421,1,a-ovpe-i1,2022-23,Haverhill-Gateway Academy,01280515, 11, 1, 9.1
2.1052631578947367,2.11,a-ovpe-i1,2022-23,Haverhill-Greenleaf Academy,01280033, 6, 3, 50.0
2.113684210526316,2.11,a-ovpe-i1,2022-23,Haverhill-Haverhill High,01280505, 611, 307, 50.2
4.016842105263158,4.02,a-ovpe-i1,2022-23,Hingham-Hingham High,01310505, 284, 271, 95.4
3.1578947368421053,3.16,a-ovpe-i1,2022-23,Holbrook-Holbrook Middle High School,01330505, 72, 54, 75.0
3.734736842105263,3.73,a-ovpe-i1,2022-23,Holliston-Holliston High,01360505, 213, 189, 88.7
2.4210526315789473,2.42,a-ovpe-i1,2022-23,Holyoke-Holyoke High,01370505, 393, 226, 57.5
2.656842105263158,2.66,a-ovpe-i1,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 84, 53, 63.1
4.143157894736842,4.14,a-ovpe-i1,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 62, 61, 98.4
4.117894736842105,4.12,a-ovpe-i1,2022-23,Hopkinton-Hopkinton High,01390505, 316, 309, 97.8
3.166315789473684,3.17,a-ovpe-i1,2022-23,Hudson-Hudson High,01410505, 165, 124, 75.2
3.823157894736842,3.82,a-ovpe-i1,2022-23,Hull-Hull High,01420505, 65, 59, 90.8
3.0189473684210526,3.02,a-ovpe-i1,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 106, 76, 71.7
3.776842105263158,3.78,a-ovpe-i1,2022-23,Ipswich-Ipswich High,01440505, 116, 104, 89.7
3.823157894736842,3.82,a-ovpe-i1,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 131, 119, 90.8
4.029473684210527,4.03,a-ovpe-i1,2022-23,King Philip-King Philip Regional High,06900505, 301, 288, 95.7
2.8126315789473684,2.81,a-ovpe-i1,2022-23,Lawrence-Lawrence High School,01490515, 960, 641, 66.8
NA,NA,a-ovpe-i1,2022-23,Lawrence-School for Exceptional Studies,01490537, 5,"",""
3.2842105263157895,3.28,a-ovpe-i1,2022-23,Lee-Lee Middle/High School,01500505, 41, 32, 78.0
3.3010526315789477,3.3,a-ovpe-i1,2022-23,Leicester-Leicester High,01510505, 116, 91, 78.4
4.008421052631579,4.01,a-ovpe-i1,2022-23,Lenox-Lenox Memorial High,01520505, 63, 60, 95.2
3.3305263157894736,3.33,a-ovpe-i1,2022-23,Leominster-Center For Technical Education Innovation,01530605, 292, 231, 79.1
3.886315789473684,3.89,a-ovpe-i1,2022-23,Leominster-Leominster Center for Excellence,01530515, 13, 12, 92.3
3.389473684210526,3.39,a-ovpe-i1,2022-23,Leominster-Leominster High School,01530505, 154, 124, 80.5
4.143157894736842,4.14,a-ovpe-i1,2022-23,Lexington-Lexington High,01550505, 608, 598, 98.4
3.9326315789473685,3.93,a-ovpe-i1,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 76, 71, 93.4
4.0,4.0,a-ovpe-i1,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 379, 360, 95.0
3.8526315789473684,3.85,a-ovpe-i1,2022-23,Littleton-Littleton High School,01580505, 129, 118, 91.5
4.0884210526315785,4.09,a-ovpe-i1,2022-23,Longmeadow-Longmeadow High,01590505, 239, 232, 97.1
0.7536842105263157,1,a-ovpe-i1,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 28, 5, 17.9
1.9157894736842105,1.92,a-ovpe-i1,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 11, 5, 45.5
2.1178947368421053,2.12,a-ovpe-i1,2022-23,Lowell-Lowell High,01600505," 1,003", 505, 50.3
0.13473684210526315,1,a-ovpe-i1,2022-23,Lowell-The Career Academy,01600515, 31, 1, 3.2
3.246315789473684,3.25,a-ovpe-i1,2022-23,Ludlow-Ludlow Senior High,01610505, 218, 168, 77.1
3.6168421052631583,3.62,a-ovpe-i1,2022-23,Lunenburg-Lunenburg High,01620505, 128, 110, 85.9
2.7157894736842105,2.72,a-ovpe-i1,2022-23,Lynn-Classical High,01630505, 581, 375, 64.5
2.2273684210526317,2.23,a-ovpe-i1,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 17, 9, 52.9
2.749473684210526,2.75,a-ovpe-i1,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 72, 47, 65.3
2.3789473684210525,2.38,a-ovpe-i1,2022-23,Lynn-Lynn English High,01630510, 621, 351, 56.5
3.1242105263157898,3.12,a-ovpe-i1,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 287, 213, 74.2
4.08421052631579,4.08,a-ovpe-i1,2022-23,Lynnfield-Lynnfield High,01640505, 133, 129, 97.0
2.6189473684210527,2.62,a-ovpe-i1,2022-23,Malden-Malden High,01650505, 519, 323, 62.2
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 93, 93, 100.0
3.9368421052631577,3.94,a-ovpe-i1,2022-23,Mansfield-Mansfield High,01670505, 263, 246, 93.5
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 47, 47, 100.0
4.126315789473685,4.13,a-ovpe-i1,2022-23,Marblehead-Marblehead High,01680505, 197, 193, 98.0
3.2336842105263157,3.23,a-ovpe-i1,2022-23,Marlborough-Marlborough High,01700505, 272, 209, 76.8
3.890526315789474,3.89,a-ovpe-i1,2022-23,Marshfield-Marshfield High,01710505, 291, 269, 92.4
3.928421052631579,3.93,a-ovpe-i1,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 15, 14, 93.3
3.663157894736842,3.66,a-ovpe-i1,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 215, 187, 87.0
4.050526315789474,4.05,a-ovpe-i1,2022-23,Masconomet-Masconomet Regional High School,07050505, 265, 255, 96.2
3.5873684210526315,3.59,a-ovpe-i1,2022-23,Mashpee-Mashpee Middle-High School,01720505, 108, 92, 85.2
2.808421052631579,2.81,a-ovpe-i1,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 75, 50, 66.7
3.8989473684210525,3.9,a-ovpe-i1,2022-23,Maynard-Maynard High,01740505, 81, 75, 92.6
3.928421052631579,3.93,a-ovpe-i1,2022-23,Medfield-Medfield Senior High,01750505, 178, 166, 93.3
NA,NA,a-ovpe-i1,2022-23,Medford-Curtis-Tufts,01760510, 2,"",""
3.208421052631579,3.21,a-ovpe-i1,2022-23,Medford-Medford High,01760505, 349, 266, 76.2
3.9242105263157896,3.92,a-ovpe-i1,2022-23,Medway-Medway High,01770505, 148, 138, 93.2
3.9789473684210526,3.98,a-ovpe-i1,2022-23,Melrose-Melrose High,01780505, 235, 222, 94.5
3.8989473684210525,3.9,a-ovpe-i1,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 135, 125, 92.6
3.023157894736842,3.02,a-ovpe-i1,2022-23,Methuen-Methuen High,01810505, 525, 377, 71.8
3.094736842105263,3.09,a-ovpe-i1,2022-23,Middleborough-Middleborough High,01820505, 230, 169, 73.5
3.0442105263157893,3.04,a-ovpe-i1,2022-23,Milford-Milford High,01850505, 400, 289, 72.3
3.76,3.76,a-ovpe-i1,2022-23,Millbury-Millbury Junior/Senior High,01860505, 112, 100, 89.3
3.957894736842105,3.96,a-ovpe-i1,2022-23,Millis-Millis High School,01870505, 67, 63, 94.0
4.092631578947368,4.09,a-ovpe-i1,2022-23,Milton-Milton High,01890505, 246, 239, 97.2
1.9326315789473683,1.93,a-ovpe-i1,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 183, 84, 45.9
2.606315789473684,2.61,a-ovpe-i1,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 42, 26, 61.9
3.612631578947368,3.61,a-ovpe-i1,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 141, 121, 85.8
3.427368421052632,3.43,a-ovpe-i1,2022-23,Monson-Monson High School,01910505, 43, 35, 81.4
4.00421052631579,4.0,a-ovpe-i1,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 366, 348, 95.1
3.9242105263157896,3.92,a-ovpe-i1,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 73, 68, 93.2
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 103, 103, 100.0
3.418947368421053,3.42,a-ovpe-i1,2022-23,Nantucket-Nantucket High,01970505, 170, 138, 81.2
3.0989473684210522,3.1,a-ovpe-i1,2022-23,Narragansett-Narragansett Regional High,07200505, 106, 78, 73.6
4.092631578947368,4.09,a-ovpe-i1,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 214, 208, 97.2
4.021052631578947,4.02,a-ovpe-i1,2022-23,Nashoba-Nashoba Regional,07250505, 202, 193, 95.5
3.9368421052631577,3.94,a-ovpe-i1,2022-23,Natick-Natick High,01980505, 429, 401, 93.5
3.76,3.76,a-ovpe-i1,2022-23,Nauset-Nauset Regional High,06600505, 169, 151, 89.3
4.109473684210526,4.11,a-ovpe-i1,2022-23,Needham-Needham High,01990505, 415, 405, 97.6
2.24,2.24,a-ovpe-i1,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 79, 42, 53.2
2.025263157894737,2.03,a-ovpe-i1,2022-23,New Bedford-New Bedford High,02010505, 807, 388, 48.1
1.8694736842105262,1.87,a-ovpe-i1,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 8, 44.4
1.3473684210526315,1.35,a-ovpe-i1,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 25, 8, 32.0
3.2294736842105265,3.23,a-ovpe-i1,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 116, 89, 76.7
3.8821052631578947,3.88,a-ovpe-i1,2022-23,Newburyport-Newburyport High,02040505, 193, 178, 92.2
3.983157894736842,3.98,a-ovpe-i1,2022-23,Newton-Newton North High,02070505, 514, 486, 94.6
4.130526315789473,4.13,a-ovpe-i1,2022-23,Newton-Newton South High,02070510, 467, 458, 98.1
4.130526315789473,4.13,a-ovpe-i1,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 155, 152, 98.1
2.8421052631578947,2.84,a-ovpe-i1,2022-23,North Adams-Drury High,02090505, 80, 54, 67.5
3.7136842105263157,3.71,a-ovpe-i1,2022-23,North Andover-North Andover High,02110505, 348, 307, 88.2
3.823157894736842,3.82,a-ovpe-i1,2022-23,North Attleborough-North Attleboro High,02120505, 239, 217, 90.8
1.8863157894736842,1.89,a-ovpe-i1,2022-23,North Brookfield-North Brookfield High,02150505, 29, 13, 44.8
3.9368421052631577,3.94,a-ovpe-i1,2022-23,North Middlesex-North Middlesex Regional,07350505, 185, 173, 93.5
4.185263157894737,4.19,a-ovpe-i1,2022-23,North Reading-North Reading High,02170505, 175, 174, 99.4
4.054736842105263,4.05,a-ovpe-i1,2022-23,Northampton-Northampton High,02100505, 218, 210, 96.3
3.7431578947368425,3.74,a-ovpe-i1,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 153, 136, 88.9
4.105263157894737,4.11,a-ovpe-i1,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 277, 270, 97.5
3.317894736842105,3.32,a-ovpe-i1,2022-23,Northbridge-Northbridge High,02140505, 156, 123, 78.8
3.4947368421052634,3.49,a-ovpe-i1,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 358, 297, 83.0
3.2884210526315787,3.29,a-ovpe-i1,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 146, 114, 78.1
3.848421052631579,3.85,a-ovpe-i1,2022-23,Norton-Norton High,02180505, 185, 169, 91.4
4.181052631578948,4.18,a-ovpe-i1,2022-23,Norwell-Norwell High,02190505, 145, 144, 99.3
3.5747368421052634,3.57,a-ovpe-i1,2022-23,Norwood-Norwood High,02200505, 218, 185, 84.9
4.0884210526315785,4.09,a-ovpe-i1,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 138, 134, 97.1
3.873684210526316,3.87,a-ovpe-i1,2022-23,Old Rochester-Old Rochester Regional High,07400505, 150, 138, 92.0
2.8968421052631577,2.9,a-ovpe-i1,2022-23,Oxford-Oxford High,02260505, 109, 75, 68.8
2.3410526315789473,2.34,a-ovpe-i1,2022-23,Palmer-Palmer High,02270505, 63, 35, 55.6
3.4357894736842103,3.44,a-ovpe-i1,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 179, 146, 81.6
1.4778947368421054,1.48,a-ovpe-i1,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 57, 20, 35.1
1.6842105263157894,1.68,a-ovpe-i1,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 10, 4, 40.0
2.454736842105263,2.45,a-ovpe-i1,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 367, 214, 58.3
4.08421052631579,4.08,a-ovpe-i1,2022-23,Pembroke-Pembroke High School,02310505, 168, 163, 97.0
4.08,4.08,a-ovpe-i1,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 130, 126, 96.9
4.2105263157894735,4.21,a-ovpe-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 9, 9, 100.0
0.11368421052631579,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 75, 2, 2.7
0.14736842105263157,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 85, 3, 3.5
3.877894736842105,3.88,a-ovpe-i1,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 63, 58, 92.1
3.4610526315789474,3.46,a-ovpe-i1,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 73, 60, 82.2
3.6715789473684213,3.67,a-ovpe-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 39, 34, 87.2
3.667368421052631,3.67,a-ovpe-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 70, 61, 87.1
3.8273684210526318,3.83,a-ovpe-i1,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 22, 20, 90.9
NA,NA,a-ovpe-i1,2022-23,Pittsfield-Eagle Education Academy,02360525, 3,"",""
3.431578947368421,3.43,a-ovpe-i1,2022-23,Pittsfield-Pittsfield High,02360505, 151, 123, 81.5
2.4042105263157896,2.4,a-ovpe-i1,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 7, 4, 57.1
2.425263157894737,2.43,a-ovpe-i1,2022-23,Pittsfield-Taconic High,02360510, 250, 144, 57.6
2.9810526315789474,2.98,a-ovpe-i1,2022-23,Plymouth-Plymouth North High,02390505, 322, 228, 70.8
3.76,3.76,a-ovpe-i1,2022-23,Plymouth-Plymouth South High,02390515, 261, 233, 89.3
3.2336842105263157,3.23,a-ovpe-i1,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 82, 63, 76.8
2.008421052631579,2.01,a-ovpe-i1,2022-23,Quabbin-Quabbin Regional High School,07530505, 172, 82, 47.7
3.4610526315789474,3.46,a-ovpe-i1,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 90, 74, 82.2
3.705263157894737,3.71,a-ovpe-i1,2022-23,Quincy-North Quincy High,02430510, 384, 338, 88.0
3.1789473684210527,3.18,a-ovpe-i1,2022-23,Quincy-Quincy High,02430505, 372, 281, 75.5
2.383157894736842,2.38,a-ovpe-i1,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 113, 64, 56.6
2.1347368421052635,2.13,a-ovpe-i1,2022-23,Randolph-Randolph High,02440505, 219, 111, 50.7
4.029473684210527,4.03,a-ovpe-i1,2022-23,Reading-Reading Memorial High,02460505, 258, 247, 95.7
1.305263157894737,1.31,a-ovpe-i1,2022-23,Revere-CityLab Innovation High School,02480520, 42, 13, 31.0
2.096842105263158,2.1,a-ovpe-i1,2022-23,Revere-Revere High,02480505, 621, 309, 49.8
3.322105263157895,3.32,a-ovpe-i1,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 76, 60, 78.9
3.1747368421052635,3.17,a-ovpe-i1,2022-23,Rockland-Rockland Senior High,02510505, 175, 132, 75.4
4.134736842105263,4.13,a-ovpe-i1,2022-23,Rockport-Rockport High,02520510, 55, 54, 98.2
3.8147368421052628,3.81,a-ovpe-i1,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 160, 145, 90.6
4.092631578947368,4.09,a-ovpe-i1,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 71, 69, 97.2
NA,NA,a-ovpe-i1,2022-23,Salem-New Liberty Innovation School,02580510, 3,"",""
2.522105263157895,2.52,a-ovpe-i1,2022-23,Salem-Salem High,02580505, 262, 157, 59.9
NA,NA,a-ovpe-i1,2022-23,Salem-Salem Prep High School,02580515, 2,"",""
3.7978947368421054,3.8,a-ovpe-i1,2022-23,Sandwich-Sandwich Middle High School,02610505, 132, 119, 90.2
3.082105263157895,3.08,a-ovpe-i1,2022-23,Saugus-Saugus High,02620505, 194, 142, 73.2
4.1557894736842105,4.16,a-ovpe-i1,2022-23,Scituate-Scituate High School,02640505, 159, 157, 98.7
3.5789473684210527,3.58,a-ovpe-i1,2022-23,Seekonk-Seekonk High,02650505, 120, 102, 85.0
3.9157894736842107,3.92,a-ovpe-i1,2022-23,Sharon-Sharon High,02660505, 300, 279, 93.0
3.9326315789473685,3.93,a-ovpe-i1,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 334, 312, 93.4
3.8610526315789473,3.86,a-ovpe-i1,2022-23,Shrewsbury-Shrewsbury High School,02710505, 496, 455, 91.7
3.595789473684211,3.6,a-ovpe-i1,2022-23,Silver Lake-Silver Lake Regional High,07600505, 261, 223, 85.4
3.418947368421053,3.42,a-ovpe-i1,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 69, 56, 81.2
3.427368421052632,3.43,a-ovpe-i1,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 264, 215, 81.4
NA,NA,a-ovpe-i1,2022-23,Somerville-Full Circle High School,02740510, 12, 0, .0
3.4021052631578947,3.4,a-ovpe-i1,2022-23,Somerville-Somerville High,02740505, 354, 286, 80.8
3.351578947368421,3.35,a-ovpe-i1,2022-23,South Hadley-South Hadley High,02780505, 108, 86, 79.6
3.7010526315789476,3.7,a-ovpe-i1,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 240, 211, 87.9
3.9705263157894737,3.97,a-ovpe-i1,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 87, 82, 94.3
4.058947368421053,4.06,a-ovpe-i1,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 165, 159, 96.4
2.6315789473684212,2.63,a-ovpe-i1,2022-23,Southbridge-Southbridge Academy,02770525, 8, 5, 62.5
2.471578947368421,2.47,a-ovpe-i1,2022-23,Southbridge-Southbridge High School,02770515, 138, 81, 58.7
4.008421052631579,4.01,a-ovpe-i1,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 415, 395, 95.2
3.545263157894737,3.55,a-ovpe-i1,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 38, 32, 84.2
3.351578947368421,3.35,a-ovpe-i1,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 318, 253, 79.6
3.8694736842105266,3.87,a-ovpe-i1,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 111, 102, 91.9
2.008421052631579,2.01,a-ovpe-i1,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 107, 51, 47.7
2.808421052631579,2.81,a-ovpe-i1,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 111, 74, 66.7
3.6842105263157894,3.68,a-ovpe-i1,2022-23,Springfield-Conservatory of the Arts,02810475, 48, 42, 87.5
3.709473684210526,3.71,a-ovpe-i1,2022-23,Springfield-Emergence Academy,02810318, 59, 52, 88.1
NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 1,"",""
NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 1,"",""
2.130526315789474,2.13,a-ovpe-i1,2022-23,Springfield-High School Of Commerce,02810510, 257, 130, 50.6
2.4,2.4,a-ovpe-i1,2022-23,Springfield-John J Duggan Academy,02810320, 79, 45, 57.0
NA,NA,a-ovpe-i1,2022-23,Springfield-Liberty Preparatory Academy,02810560, 1,"",""
3.221052631578947,3.22,a-ovpe-i1,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 366, 280, 76.5
1.545263157894737,1.55,a-ovpe-i1,2022-23,Springfield-Springfield Central High,02810500, 645, 237, 36.7
2.1052631578947367,2.11,a-ovpe-i1,2022-23,Springfield-Springfield High School,02810570, 12, 6, 50.0
1.806315789473684,1.81,a-ovpe-i1,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 331, 142, 42.9
3.7978947368421054,3.8,a-ovpe-i1,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 41, 37, 90.2
1.6842105263157894,1.68,a-ovpe-i1,2022-23,Springfield-Springfield Public Day High School,02810550, 10, 4, 40.0
3.890526315789474,3.89,a-ovpe-i1,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 92, 85, 92.4
1.3389473684210527,1.34,a-ovpe-i1,2022-23,Springfield-The Springfield Virtual School,02810705, 44, 14, 31.8
4.063157894736842,4.06,a-ovpe-i1,2022-23,Stoneham-Stoneham High,02840505, 171, 165, 96.5
2.6442105263157893,2.64,a-ovpe-i1,2022-23,Stoughton-Stoughton High,02850505, 290, 182, 62.8
4.113684210526316,4.11,a-ovpe-i1,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 215, 210, 97.7
4.16421052631579,4.16,a-ovpe-i1,2022-23,Sutton-Sutton High School,02900510, 91, 90, 98.9
3.9663157894736845,3.97,a-ovpe-i1,2022-23,Swampscott-Swampscott High,02910505, 172, 162, 94.2
3.3684210526315788,3.37,a-ovpe-i1,2022-23,Swansea-Joseph Case High,02920505, 145, 116, 80.0
1.654736842105263,1.65,a-ovpe-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 499, 196, 39.3
3.789473684210526,3.79,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 160, 144, 90.0
3.334736842105263,3.33,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 144, 114, 79.2
2.8294736842105266,2.83,a-ovpe-i1,2022-23,Taunton-Taunton High,02930505, 573, 385, 67.2
3.987368421052632,3.99,a-ovpe-i1,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 188, 178, 94.7
3.642105263157895,3.64,a-ovpe-i1,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 275, 238, 86.5
3.4652631578947366,3.47,a-ovpe-i1,2022-23,Triton-Triton Regional High School,07730505, 158, 130, 82.3
3.9621052631578944,3.96,a-ovpe-i1,2022-23,Tyngsborough-Tyngsborough High School,03010505, 119, 112, 94.1
4.172631578947368,4.17,a-ovpe-i1,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 219, 217, 99.1
3.890526315789474,3.89,a-ovpe-i1,2022-23,Uxbridge-Uxbridge High,03040505, 105, 97, 92.4
NA,NA,a-ovpe-i1,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 90, 0, .0
3.8947368421052633,3.89,a-ovpe-i1,2022-23,Wachusett-Wachusett Regional High,07750505, 451, 417, 92.5
3.3642105263157895,3.36,a-ovpe-i1,2022-23,Wakefield-Wakefield Memorial High,03050505, 224, 179, 79.9
3.890526315789474,3.89,a-ovpe-i1,2022-23,Walpole-Walpole High,03070505, 236, 218, 92.4
2.863157894736842,2.86,a-ovpe-i1,2022-23,Waltham-Waltham Sr High,03080505, 535, 364, 68.0
2.218947368421053,2.22,a-ovpe-i1,2022-23,Ware-Ware Junior/Senior High School,03090505, 91, 48, 52.7
NA,NA,a-ovpe-i1,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 2,"",""
2.0631578947368423,2.06,a-ovpe-i1,2022-23,Wareham-Wareham Senior High,03100505, 143, 70, 49.0
3.1157894736842104,3.12,a-ovpe-i1,2022-23,Watertown-Watertown High,03140505, 215, 159, 74.0
4.147368421052631,4.15,a-ovpe-i1,2022-23,Wayland-Wayland High School,03150505, 204, 201, 98.5
1.9663157894736842,1.97,a-ovpe-i1,2022-23,Webster-Bartlett High School,03160505, 105, 49, 46.7
4.126315789473685,4.13,a-ovpe-i1,2022-23,Wellesley-Wellesley Sr High,03170505, 358, 351, 98.0
3.945263157894737,3.95,a-ovpe-i1,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 63, 59, 93.7
3.6884210526315786,3.69,a-ovpe-i1,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 113, 99, 87.6
2.7663157894736843,2.77,a-ovpe-i1,2022-23,West Springfield-West Springfield High,03320505, 344, 226, 65.7
4.042105263157895,4.04,a-ovpe-i1,2022-23,Westborough-Westborough High,03210505, 301, 289, 96.0
3.0442105263157893,3.04,a-ovpe-i1,2022-23,Westfield-Westfield High,03250505, 253, 183, 72.3
4.0,4.0,a-ovpe-i1,2022-23,Westfield-Westfield Technical Academy,03250605, 140, 133, 95.0
3.608421052631579,3.61,a-ovpe-i1,2022-23,Westfield-Westfield Virtual School,03250705, 7, 6, 85.7
4.126315789473685,4.13,a-ovpe-i1,2022-23,Westford-Westford Academy,03260505, 353, 346, 98.0
4.2105263157894735,4.21,a-ovpe-i1,2022-23,Weston-Weston High,03300505, 159, 159, 100.0
3.3936842105263154,3.39,a-ovpe-i1,2022-23,Westport-Westport Middle-High School,03310515, 72, 58, 80.6
4.021052631578947,4.02,a-ovpe-i1,2022-23,Westwood-Westwood High,03350505, 202, 193, 95.5
3.023157894736842,3.02,a-ovpe-i1,2022-23,Weymouth-Weymouth High School,03360505, 507, 364, 71.8
3.4652631578947366,3.47,a-ovpe-i1,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 260, 214, 82.3
3.8442105263157895,3.84,a-ovpe-i1,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 322, 294, 91.3
3.8442105263157895,3.84,a-ovpe-i1,2022-23,Wilmington-Wilmington High,03420505, 160, 146, 91.3
NA,NA,a-ovpe-i1,2022-23,Winchendon-Murdock Academy for Success,03430405, 2,"",""
3.216842105263158,3.22,a-ovpe-i1,2022-23,Winchendon-Murdock High School,03430515, 89, 68, 76.4
4.16421052631579,4.16,a-ovpe-i1,2022-23,Winchester-Winchester High School,03440505, 361, 357, 98.9
3.0610526315789475,3.06,a-ovpe-i1,2022-23,Winthrop-Winthrop High School,03460505, 172, 125, 72.7
3.8105263157894735,3.81,a-ovpe-i1,2022-23,Woburn-Woburn High,03470505, 294, 266, 90.5
3.191578947368421,3.19,a-ovpe-i1,2022-23,Worcester-Burncoat Senior High,03480503, 318, 241, 75.8
3.246315789473684,3.25,a-ovpe-i1,2022-23,Worcester-Claremont Academy,03480350, 70, 54, 77.1
3.9663157894736845,3.97,a-ovpe-i1,2022-23,Worcester-Doherty Memorial High,03480512, 381, 359, 94.2
2.9557894736842107,2.96,a-ovpe-i1,2022-23,Worcester-North High,03480515, 359, 252, 70.2
3.9494736842105262,3.95,a-ovpe-i1,2022-23,Worcester-South High Community,03480520, 468, 439, 93.8
3.8694736842105266,3.87,a-ovpe-i1,2022-23,Worcester-University Pk Campus School,03480285, 37, 34, 91.9
3.8989473684210525,3.9,a-ovpe-i1,2022-23,Worcester-Worcester Technical High,03480605, 378, 350, 92.6
3.7010526315789476,3.7,a-ovpe-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 91, 80, 87.9
3.250526315789474,3.25,a-ovpe-i1,2021-22,Abington-Abington High,00010505, 136, 105, 77.2
3.4989473684210526,3.5,a-ovpe-i1,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 71, 59, 83.1

1 Raw likert calculation Likert Score Admin Data Item Academic Year School Name DESE ID # Grade Nine Students # Passing All Courses % Passing All Courses
2 3.4063157894736844 3.41 a-ovpe-i1 2022-23 Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School 04450105 89 72 80.9
3 3.263157894736842 3.26 a-ovpe-i1 2022-23 Abington-Abington High 00010505 138 107 77.5
4 3.8821052631578947 3.88 a-ovpe-i1 2022-23 Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School 04120530 64 59 92.2
5 4.109473684210526 4.11 a-ovpe-i1 2022-23 Acton-Boxborough-Acton-Boxborough Regional High 06000505 418 408 97.6
6 3.9663157894736845 3.97 a-ovpe-i1 2022-23 Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School 04300305 137 129 94.2
7 3.216842105263158 3.22 a-ovpe-i1 2022-23 Agawam-Agawam High 00050505 314 240 76.4
8 3.6042105263157893 3.6 a-ovpe-i1 2022-23 Amesbury-Amesbury High 00070505 125 107 85.6
9 1.296842105263158 1.3 a-ovpe-i1 2022-23 Amesbury-Amesbury Innovation High School 00070515 13 4 30.8
10 3.528421052631579 3.53 a-ovpe-i1 2022-23 Amherst-Pelham-Amherst Regional High 06050505 229 192 83.8
11 4.037894736842105 4.04 a-ovpe-i1 2022-23 Andover-Andover High 00090505 411 394 95.9
12 2.6989473684210523 2.7 a-ovpe-i1 2022-23 Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School 35090305 92 59 64.1
13 4.025263157894736 4.03 a-ovpe-i1 2022-23 Arlington-Arlington High 00100505 383 366 95.6
14 3.9157894736842107 3.92 a-ovpe-i1 2022-23 Ashburnham-Westminster-Oakmont Regional High School 06100505 172 160 93.0
15 3.8989473684210525 3.9 a-ovpe-i1 2022-23 Ashland-Ashland High 00140505 230 213 92.6
16 3.7936842105263158 3.79 a-ovpe-i1 2022-23 Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School 08010605 302 272 90.1
17 2.7578947368421054 2.76 a-ovpe-i1 2022-23 Athol-Royalston-Athol High 06150505 113 74 65.5
18 3.2336842105263157 3.23 a-ovpe-i1 2022-23 Atlantis Charter (District)-Atlantis Charter School 04910550 82 63 76.8
19 NA NA a-ovpe-i1 2022-23 Attleboro-Attleboro Community Academy 00160515 2
20 3.8105263157894735 3.81 a-ovpe-i1 2022-23 Attleboro-Attleboro High 00160505 515 466 90.5
21 NA NA a-ovpe-i1 2022-23 Attleboro-Attleboro Virtual Academy 00160705 3
22 3.7263157894736842 3.73 a-ovpe-i1 2022-23 Auburn-Auburn Senior High 00170505 191 169 88.5
23 3.2757894736842106 3.28 a-ovpe-i1 2022-23 Avon-Avon Middle High School 00180510 54 42 77.8
24 3.877894736842105 3.88 a-ovpe-i1 2022-23 Ayer Shirley School District-Ayer Shirley Regional High School 06160505 101 93 92.1
25 3.1073684210526316 3.11 a-ovpe-i1 2022-23 Barnstable-Barnstable High 00200505 359 265 73.8
26 3.8063157894736843 3.81 a-ovpe-i1 2022-23 Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School 35020405 52 47 90.4
27 4.042105263157895 4.04 a-ovpe-i1 2022-23 Bedford-Bedford High 00230505 225 216 96.0
28 3.6378947368421053 3.64 a-ovpe-i1 2022-23 Belchertown-Belchertown High 00240505 147 127 86.4
29 3.6842105263157894 3.68 a-ovpe-i1 2022-23 Bellingham-Bellingham High School 00250505 160 140 87.5
30 2.1052631578947367 2.11 a-ovpe-i1 2022-23 Bellingham-Keough Memorial Academy 00250510 8 4 50.0
31 4.105263157894737 4.11 a-ovpe-i1 2022-23 Belmont-Belmont High 00260505 360 351 97.5
32 2.778947368421053 2.78 a-ovpe-i1 2022-23 Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School 04140305 50 33 66.0
33 3.6294736842105264 3.63 a-ovpe-i1 2022-23 Berkshire Hills-Monument Mt Regional High 06180505 123 106 86.2
34 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Berlin-Boylston-Tahanto Regional High 06200505 74 74 100.0
35 3.3557894736842107 3.36 a-ovpe-i1 2022-23 Beverly-Beverly High 00300505 340 271 79.7
36 3.528421052631579 3.53 a-ovpe-i1 2022-23 Billerica-Billerica Memorial High School 00310505 327 274 83.8
37 3.9789473684210526 3.98 a-ovpe-i1 2022-23 Blackstone Valley Regional Vocational Technical-Blackstone Valley 08050605 307 290 94.5
38 3.8947368421052633 3.89 a-ovpe-i1 2022-23 Blackstone-Millville-Blackstone Millville RHS 06220505 107 99 92.5
39 4.105263157894737 4.11 a-ovpe-i1 2022-23 Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical 08060605 241 235 97.5
40 2.7621052631578946 2.76 a-ovpe-i1 2022-23 Boston Collegiate Charter (District)-Boston Collegiate Charter School 04490305 96 63 65.6
41 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School 04240505 58 58 100.0
42 3.2336842105263157 3.23 a-ovpe-i1 2022-23 Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School 04110305 82 63 76.8
43 3.873684210526316 3.87 a-ovpe-i1 2022-23 Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School 04160305 125 115 92.0
44 2.143157894736842 2.14 a-ovpe-i1 2022-23 Boston-Another Course To College 00350541 53 27 50.9
45 2.8968421052631577 2.9 a-ovpe-i1 2022-23 Boston-Boston Arts Academy 00350546 141 97 68.8
46 NA NA a-ovpe-i1 2022-23 Boston-Boston Collaborative High School 00350755 2
47 3.191578947368421 3.19 a-ovpe-i1 2022-23 Boston-Boston Community Leadership Academy 00350558 124 94 75.8
48 2.778947368421053 2.78 a-ovpe-i1 2022-23 Boston-Boston International High School & Newcomers Academy 00350507 215 142 66.0
49 3.663157894736842 3.66 a-ovpe-i1 2022-23 Boston-Boston Latin Academy 00350545 323 281 87.0
50 3.9747368421052633 3.97 a-ovpe-i1 2022-23 Boston-Boston Latin School 00350560 412 389 94.4
51 2.7705263157894735 2.77 a-ovpe-i1 2022-23 Boston-Brighton High School 00350505 117 77 65.8
52 3.3263157894736843 3.33 a-ovpe-i1 2022-23 Boston-Burke High School 00350525 81 64 79.0
53 NA NA a-ovpe-i1 2022-23 Boston-Carter School 00350036 4
54 2.517894736842105 2.52 a-ovpe-i1 2022-23 Boston-Charlestown High School 00350515 174 104 59.8
55 NA NA a-ovpe-i1 2022-23 Boston-Community Academy 00350518 3
56 1.8778947368421053 1.88 a-ovpe-i1 2022-23 Boston-Community Academy of Science and Health 00350581 74 33 44.6
57 2.0336842105263155 2.03 a-ovpe-i1 2022-23 Boston-Dearborn 6-12 STEM Academy 00350074 89 43 48.3
58 3.8610526315789473 3.86 a-ovpe-i1 2022-23 Boston-East Boston High School 00350530 228 209 91.7
59 1.8526315789473684 1.85 a-ovpe-i1 2022-23 Boston-English High School 00350535 141 62 44.0
60 2.210526315789474 2.21 a-ovpe-i1 2022-23 Boston-Excel High School 00350522 99 52 52.5
61 3.002105263157895 3.0 a-ovpe-i1 2022-23 Boston-Fenway High School 00350540 94 67 71.3
62 NA NA a-ovpe-i1 2022-23 Boston-Greater Egleston High School 00350543 2
63 1.7473684210526317 1.75 a-ovpe-i1 2022-23 Boston-Henderson K-12 Inclusion School Upper 00350426 65 27 41.5
64 NA NA a-ovpe-i1 2022-23 Boston-Horace Mann School for the Deaf Hard of Hearing 00350750 1
65 3.9115789473684215 3.91 a-ovpe-i1 2022-23 Boston-Lyon High School 00350655 28 26 92.9
66 0.7663157894736842 1 a-ovpe-i1 2022-23 Boston-Madison Park Technical Vocational High School 00350537 269 49 18.2
67 2.64 2.64 a-ovpe-i1 2022-23 Boston-Margarita Muniz Academy 00350549 83 52 62.7
68 1.7347368421052634 1.73 a-ovpe-i1 2022-23 Boston-McKinley Schools 00350363 17 7 41.2
69 3.2042105263157894 3.2 a-ovpe-i1 2022-23 Boston-New Mission High School 00350542 134 102 76.1
70 3.5199999999999996 3.52 a-ovpe-i1 2022-23 Boston-O'Bryant School of Math & Science 00350575 323 270 83.6
71 2.526315789473684 2.53 a-ovpe-i1 2022-23 Boston-Quincy Upper School 00350565 70 42 60.0
72 1.7726315789473686 1.77 a-ovpe-i1 2022-23 Boston-Snowden International High School 00350690 121 51 42.1
73 2.6315789473684212 2.63 a-ovpe-i1 2022-23 Boston-TechBoston Academy 00350657 160 100 62.5
74 3.5663157894736845 3.57 a-ovpe-i1 2022-23 Bourne-Bourne High School 00360505 85 72 84.7
75 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Braintree-Braintree High 00400505 408 408 100.0
76 3.8273684210526318 3.83 a-ovpe-i1 2022-23 Bridgewater-Raynham-Bridgewater-Raynham Regional 06250505 361 328 90.9
77 NA NA a-ovpe-i1 2022-23 Bridgewater-Raynham-Therapeutic Day School 06250415 1
78 3.5663157894736845 3.57 a-ovpe-i1 2022-23 Bristol County Agricultural-Bristol County Agricultural High 09100705 170 144 84.7
79 4.0884210526315785 4.09 a-ovpe-i1 2022-23 Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical 08100605 346 336 97.1
80 1.376842105263158 1.38 a-ovpe-i1 2022-23 Brockton-Brockton Champion High School 00440515 52 17 32.7
81 1.8736842105263158 1.87 a-ovpe-i1 2022-23 Brockton-Brockton High 00440505 1,172 521 44.5
82 0.648421052631579 1 a-ovpe-i1 2022-23 Brockton-Brockton Virtual Learning Academy 00440705 26 4 15.4
83 2.2610526315789476 2.26 a-ovpe-i1 2022-23 Brockton-Edison Academy 00440520 41 22 53.7
84 NA NA a-ovpe-i1 2022-23 Brockton-Huntington Therapeutic Day School 00440400 4
85 3.7557894736842106 3.76 a-ovpe-i1 2022-23 Brockton-PROMISE College and Career Academy 00440525 37 33 89.2
86 3.477894736842105 3.48 a-ovpe-i1 2022-23 Brooke Charter School (District)-Brooke Charter School 04280305 155 128 82.6
87 3.8821052631578947 3.88 a-ovpe-i1 2022-23 Brookline-Brookline High 00460505 515 475 92.2
88 3.9663157894736845 3.97 a-ovpe-i1 2022-23 Burlington-Burlington High 00480505 226 213 94.2
89 3.7263157894736842 3.73 a-ovpe-i1 2022-23 Cambridge-Cambridge Rindge and Latin 00490506 497 440 88.5
90 4.067368421052631 4.07 a-ovpe-i1 2022-23 Canton-Canton High 00500505 261 252 96.6
91 3.6757894736842105 3.68 a-ovpe-i1 2022-23 Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical 08150605 181 158 87.3
92 3.389473684210526 3.39 a-ovpe-i1 2022-23 Carver-Carver Middle/High School 00520405 82 66 80.5
93 3.6042105263157893 3.6 a-ovpe-i1 2022-23 Central Berkshire-Wahconah Regional High 06350505 111 95 85.6
94 4.0 4.0 a-ovpe-i1 2022-23 Chelmsford-Chelmsford High 00560505 361 343 95.0
95 2.0589473684210526 2.06 a-ovpe-i1 2022-23 Chelsea-Chelsea High 00570505 554 271 48.9
96 NA NA a-ovpe-i1 2022-23 Chelsea-Chelsea Virtual Learning Academy 00570705 4
97 NA NA a-ovpe-i1 2022-23 Chicopee-Chicopee Academy 00610021 9 0 .0
98 3.1789473684210527 3.18 a-ovpe-i1 2022-23 Chicopee-Chicopee Comprehensive High School 00610510 330 249 75.5
99 2.2778947368421054 2.28 a-ovpe-i1 2022-23 Chicopee-Chicopee High 00610505 266 144 54.1
100 2.4463157894736844 2.45 a-ovpe-i1 2022-23 City on a Hill Charter Public School (District)-City on a Hill Charter Public School 04370505 43 25 58.1
101 3.4610526315789474 3.46 a-ovpe-i1 2022-23 Clinton-Clinton Senior High 00640505 174 143 82.2
102 2.9221052631578948 2.92 a-ovpe-i1 2022-23 Codman Academy Charter Public (District)-Codman Academy Charter Public School 04380505 36 25 69.4
103 4.172631578947368 4.17 a-ovpe-i1 2022-23 Cohasset-Cohasset High School 00650505 114 113 99.1
104 2.4210526315789473 2.42 a-ovpe-i1 2022-23 Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell 35030205 73 42 57.5
105 3.9621052631578944 3.96 a-ovpe-i1 2022-23 Community Charter School of Cambridge (District)-Community Charter School of Cambridge 04360305 34 32 94.1
106 4.197894736842105 4.2 a-ovpe-i1 2022-23 Concord-Carlisle-Concord Carlisle High 06400505 323 322 99.7
107 3.7936842105263158 3.79 a-ovpe-i1 2022-23 Danvers-Danvers High 00710505 181 163 90.1
108 3.3473684210526318 3.35 a-ovpe-i1 2022-23 Dartmouth-Dartmouth High 00720505 244 194 79.5
109 3.7473684210526317 3.75 a-ovpe-i1 2022-23 Dedham-Dedham High 00730505 182 162 89.0
110 3.023157894736842 3.02 a-ovpe-i1 2022-23 Dennis-Yarmouth-Dennis-Yarmouth Regional High 06450505 195 140 71.8
111 3.3010526315789477 3.3 a-ovpe-i1 2022-23 Dighton-Rehoboth-Dighton-Rehoboth Regional High School 06500505 162 127 78.4
112 3.8105263157894735 3.81 a-ovpe-i1 2022-23 Douglas-Douglas High School 00770505 74 67 90.5
113 4.189473684210526 4.19 a-ovpe-i1 2022-23 Dover-Sherborn-Dover-Sherborn Regional High 06550505 184 183 99.5
114 3.2294736842105265 3.23 a-ovpe-i1 2022-23 Dracut-Dracut Senior High 00790505 240 184 76.7
115 3.3810526315789473 3.38 a-ovpe-i1 2022-23 Dudley-Charlton Reg-Shepherd Hill Regional High 06580505 289 232 80.3
116 4.1557894736842105 4.16 a-ovpe-i1 2022-23 Duxbury-Duxbury High 00820505 226 223 98.7
117 3.663157894736842 3.66 a-ovpe-i1 2022-23 East Bridgewater-East Bridgewater JR./SR. High School 00830505 154 134 87.0
118 3.76 3.76 a-ovpe-i1 2022-23 East Longmeadow-East Longmeadow High 00870505 205 183 89.3
119 3.2294736842105265 3.23 a-ovpe-i1 2022-23 Easthampton-Easthampton High 00860505 90 69 76.7
120 4.037894736842105 4.04 a-ovpe-i1 2022-23 Easton-Oliver Ames High 00880505 243 233 95.9
121 2.6357894736842105 2.64 a-ovpe-i1 2022-23 Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School 04520505 107 67 62.6
122 3.953684210526316 3.95 a-ovpe-i1 2022-23 Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School 08170505 446 419 93.9
123 NA NA a-ovpe-i1 2022-23 Everett-Devens School 00930030 4
124 2.3073684210526313 2.31 a-ovpe-i1 2022-23 Everett-Everett High 00930505 637 349 54.8
125 3.945263157894737 3.95 a-ovpe-i1 2022-23 Excel Academy Charter (District)-Excel Academy Charter School 04100205 175 164 93.7
126 3.3305263157894736 3.33 a-ovpe-i1 2022-23 Fairhaven-Fairhaven High 00940505 158 125 79.1
127 1.9157894736842105 1.92 a-ovpe-i1 2022-23 Fall River-B M C Durfee High 00950505 708 322 45.5
128 4.054736842105263 4.05 a-ovpe-i1 2022-23 Fall River-Resiliency Preparatory Academy 00950525 27 26 96.3
129 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Fall River-Stone PK-12 School 00950340 12 12 100.0
130 3.0694736842105264 3.07 a-ovpe-i1 2022-23 Falmouth-Falmouth High 00960505 177 129 72.9
131 2.610526315789474 2.61 a-ovpe-i1 2022-23 Fitchburg-Fitchburg High 00970505 321 199 62.0
132 1.6378947368421053 1.64 a-ovpe-i1 2022-23 Fitchburg-Goodrich Academy 00970510 18 7 38.9
133 3.6757894736842105 3.68 a-ovpe-i1 2022-23 Foxborough Regional Charter (District)-Foxborough Regional Charter School 04460550 102 89 87.3
134 3.6378947368421053 3.64 a-ovpe-i1 2022-23 Foxborough-Foxborough High 00990505 206 178 86.4
135 2.383157894736842 2.38 a-ovpe-i1 2022-23 Framingham-Framingham High School 01000515 742 420 56.6
136 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School 04780505 66 66 100.0
137 4.16 4.16 a-ovpe-i1 2022-23 Franklin County Regional Vocational Technical-Franklin County Technical 08180605 161 159 98.8
138 4.037894736842105 4.04 a-ovpe-i1 2022-23 Franklin-Franklin High 01010505 392 376 95.9
139 3.68 3.68 a-ovpe-i1 2022-23 Freetown-Lakeville-Apponequet Regional High 06650505 174 152 87.4
140 3.890526315789474 3.89 a-ovpe-i1 2022-23 Frontier-Frontier Regional 06700505 92 85 92.4
141 1.806315789473684 1.81 a-ovpe-i1 2022-23 Gardner-Gardner Academy for Learning and Technology 01030515 7 3 42.9
142 2.9894736842105263 2.99 a-ovpe-i1 2022-23 Gardner-Gardner High 01030505 169 120 71.0
143 3.313684210526316 3.31 a-ovpe-i1 2022-23 Gateway-Gateway Regional High 06720505 47 37 78.7
144 3.7978947368421054 3.8 a-ovpe-i1 2022-23 Georgetown-Georgetown High School 01050505 82 74 90.2
145 3.705263157894737 3.71 a-ovpe-i1 2022-23 Gill-Montague-Turners Fall High 06740505 50 44 88.0
146 3.4526315789473685 3.45 a-ovpe-i1 2022-23 Global Learning Charter Public (District)-Global Learning Charter Public School 04960305 50 41 82.0
147 2.858947368421053 2.86 a-ovpe-i1 2022-23 Gloucester-Gloucester High 01070505 212 144 67.9
148 3.7936842105263158 3.79 a-ovpe-i1 2022-23 Grafton-Grafton High School 01100505 213 192 90.1
149 4.042105263157895 4.04 a-ovpe-i1 2022-23 Granby-Granby Jr Sr High School 01110505 50 48 96.0
150 1.2505263157894737 1.25 a-ovpe-i1 2022-23 Greater Commonwealth Virtual District-Greater Commonwealth Virtual School 39010900 165 49 29.7
151 3.9747368421052633 3.97 a-ovpe-i1 2022-23 Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High 08210605 377 356 94.4
152 3.654736842105263 3.65 a-ovpe-i1 2022-23 Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical 08230605 438 380 86.8
153 4.016842105263158 4.02 a-ovpe-i1 2022-23 Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical 08280605 587 560 95.4
154 3.9242105263157896 3.92 a-ovpe-i1 2022-23 Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical 08250605 560 522 93.2
155 2.8547368421052632 2.85 a-ovpe-i1 2022-23 Greenfield-Greenfield High 01140505 90 61 67.8
156 4.134736842105263 4.13 a-ovpe-i1 2022-23 Groton-Dunstable-Groton Dunstable Regional 06730505 164 161 98.2
157 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Hadley-Hopkins Academy 01170505 31 31 100.0
158 4.168421052631579 4.17 a-ovpe-i1 2022-23 Hamilton-Wenham-Hamilton-Wenham Regional High 06750505 104 103 99.0
159 3.473684210526316 3.47 a-ovpe-i1 2022-23 Hampden Charter School of Science East (District)-Hampden Charter School of Science East 04990305 80 66 82.5
160 3.2926315789473684 3.29 a-ovpe-i1 2022-23 Hampden Charter School of Science West (District)-Hampden Charter School of Science West 35160305 55 43 78.2
161 4.021052631578947 4.02 a-ovpe-i1 2022-23 Hampden-Wilbraham-Minnechaug Regional High 06800505 267 255 95.5
162 4.130526315789473 4.13 a-ovpe-i1 2022-23 Hampshire-Hampshire Regional High 06830505 103 101 98.1
163 4.1557894736842105 4.16 a-ovpe-i1 2022-23 Hanover-Hanover High 01220505 150 148 98.7
164 4.008421052631579 4.01 a-ovpe-i1 2022-23 Harvard-Bromfield 01250505 84 80 95.2
165 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Hatfield-Smith Academy 01270505 21 21 100.0
166 NA NA a-ovpe-i1 2022-23 Haverhill-Bartlett School and Assessment Center 01280073 2
167 0.3831578947368421 1 a-ovpe-i1 2022-23 Haverhill-Gateway Academy 01280515 11 1 9.1
168 2.1052631578947367 2.11 a-ovpe-i1 2022-23 Haverhill-Greenleaf Academy 01280033 6 3 50.0
169 2.113684210526316 2.11 a-ovpe-i1 2022-23 Haverhill-Haverhill High 01280505 611 307 50.2
170 4.016842105263158 4.02 a-ovpe-i1 2022-23 Hingham-Hingham High 01310505 284 271 95.4
171 3.1578947368421053 3.16 a-ovpe-i1 2022-23 Holbrook-Holbrook Middle High School 01330505 72 54 75.0
172 3.734736842105263 3.73 a-ovpe-i1 2022-23 Holliston-Holliston High 01360505 213 189 88.7
173 2.4210526315789473 2.42 a-ovpe-i1 2022-23 Holyoke-Holyoke High 01370505 393 226 57.5
174 2.656842105263158 2.66 a-ovpe-i1 2022-23 Hoosac Valley Regional-Hoosac Valley High School 06030505 84 53 63.1
175 4.143157894736842 4.14 a-ovpe-i1 2022-23 Hopedale-Hopedale Jr Sr High 01380505 62 61 98.4
176 4.117894736842105 4.12 a-ovpe-i1 2022-23 Hopkinton-Hopkinton High 01390505 316 309 97.8
177 3.166315789473684 3.17 a-ovpe-i1 2022-23 Hudson-Hudson High 01410505 165 124 75.2
178 3.823157894736842 3.82 a-ovpe-i1 2022-23 Hull-Hull High 01420505 65 59 90.8
179 3.0189473684210526 3.02 a-ovpe-i1 2022-23 Innovation Academy Charter (District)-Innovation Academy Charter School 04350305 106 76 71.7
180 3.776842105263158 3.78 a-ovpe-i1 2022-23 Ipswich-Ipswich High 01440505 116 104 89.7
181 3.823157894736842 3.82 a-ovpe-i1 2022-23 KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School 04290010 131 119 90.8
182 4.029473684210527 4.03 a-ovpe-i1 2022-23 King Philip-King Philip Regional High 06900505 301 288 95.7
183 2.8126315789473684 2.81 a-ovpe-i1 2022-23 Lawrence-Lawrence High School 01490515 960 641 66.8
184 NA NA a-ovpe-i1 2022-23 Lawrence-School for Exceptional Studies 01490537 5
185 3.2842105263157895 3.28 a-ovpe-i1 2022-23 Lee-Lee Middle/High School 01500505 41 32 78.0
186 3.3010526315789477 3.3 a-ovpe-i1 2022-23 Leicester-Leicester High 01510505 116 91 78.4
187 4.008421052631579 4.01 a-ovpe-i1 2022-23 Lenox-Lenox Memorial High 01520505 63 60 95.2
188 3.3305263157894736 3.33 a-ovpe-i1 2022-23 Leominster-Center For Technical Education Innovation 01530605 292 231 79.1
189 3.886315789473684 3.89 a-ovpe-i1 2022-23 Leominster-Leominster Center for Excellence 01530515 13 12 92.3
190 3.389473684210526 3.39 a-ovpe-i1 2022-23 Leominster-Leominster High School 01530505 154 124 80.5
191 4.143157894736842 4.14 a-ovpe-i1 2022-23 Lexington-Lexington High 01550505 608 598 98.4
192 3.9326315789473685 3.93 a-ovpe-i1 2022-23 Libertas Academy Charter School (District)-Libertas Academy Charter School 35140305 76 71 93.4
193 4.0 4.0 a-ovpe-i1 2022-23 Lincoln-Sudbury-Lincoln-Sudbury Regional High 06950505 379 360 95.0
194 3.8526315789473684 3.85 a-ovpe-i1 2022-23 Littleton-Littleton High School 01580505 129 118 91.5
195 4.0884210526315785 4.09 a-ovpe-i1 2022-23 Longmeadow-Longmeadow High 01590505 239 232 97.1
196 0.7536842105263157 1 a-ovpe-i1 2022-23 Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School 04580505 28 5 17.9
197 1.9157894736842105 1.92 a-ovpe-i1 2022-23 Lowell-Leblanc Therapeutic Day School 01600320 11 5 45.5
198 2.1178947368421053 2.12 a-ovpe-i1 2022-23 Lowell-Lowell High 01600505 1,003 505 50.3
199 0.13473684210526315 1 a-ovpe-i1 2022-23 Lowell-The Career Academy 01600515 31 1 3.2
200 3.246315789473684 3.25 a-ovpe-i1 2022-23 Ludlow-Ludlow Senior High 01610505 218 168 77.1
201 3.6168421052631583 3.62 a-ovpe-i1 2022-23 Lunenburg-Lunenburg High 01620505 128 110 85.9
202 2.7157894736842105 2.72 a-ovpe-i1 2022-23 Lynn-Classical High 01630505 581 375 64.5
203 2.2273684210526317 2.23 a-ovpe-i1 2022-23 Lynn-Fecteau-Leary Junior/Senior High School 01630525 17 9 52.9
204 2.749473684210526 2.75 a-ovpe-i1 2022-23 Lynn-Fredrick Douglass Collegiate Academy 01630575 72 47 65.3
205 2.3789473684210525 2.38 a-ovpe-i1 2022-23 Lynn-Lynn English High 01630510 621 351 56.5
206 3.1242105263157898 3.12 a-ovpe-i1 2022-23 Lynn-Lynn Vocational Technical Institute 01630605 287 213 74.2
207 4.08421052631579 4.08 a-ovpe-i1 2022-23 Lynnfield-Lynnfield High 01640505 133 129 97.0
208 2.6189473684210527 2.62 a-ovpe-i1 2022-23 Malden-Malden High 01650505 519 323 62.2
209 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Manchester Essex Regional-Manchester Essex Regional High School 06980510 93 93 100.0
210 3.9368421052631577 3.94 a-ovpe-i1 2022-23 Mansfield-Mansfield High 01670505 263 246 93.5
211 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Map Academy Charter School (District)-Map Academy Charter School 35170505 47 47 100.0
212 4.126315789473685 4.13 a-ovpe-i1 2022-23 Marblehead-Marblehead High 01680505 197 193 98.0
213 3.2336842105263157 3.23 a-ovpe-i1 2022-23 Marlborough-Marlborough High 01700505 272 209 76.8
214 3.890526315789474 3.89 a-ovpe-i1 2022-23 Marshfield-Marshfield High 01710505 291 269 92.4
215 3.928421052631579 3.93 a-ovpe-i1 2022-23 Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School 04660550 15 14 93.3
216 3.663157894736842 3.66 a-ovpe-i1 2022-23 Martha's Vineyard-Martha's Vineyard Regional High 07000505 215 187 87.0
217 4.050526315789474 4.05 a-ovpe-i1 2022-23 Masconomet-Masconomet Regional High School 07050505 265 255 96.2
218 3.5873684210526315 3.59 a-ovpe-i1 2022-23 Mashpee-Mashpee Middle-High School 01720505 108 92 85.2
219 2.808421052631579 2.81 a-ovpe-i1 2022-23 Match Charter Public School (District)-Match Charter Public School 04690505 75 50 66.7
220 3.8989473684210525 3.9 a-ovpe-i1 2022-23 Maynard-Maynard High 01740505 81 75 92.6
221 3.928421052631579 3.93 a-ovpe-i1 2022-23 Medfield-Medfield Senior High 01750505 178 166 93.3
222 NA NA a-ovpe-i1 2022-23 Medford-Curtis-Tufts 01760510 2
223 3.208421052631579 3.21 a-ovpe-i1 2022-23 Medford-Medford High 01760505 349 266 76.2
224 3.9242105263157896 3.92 a-ovpe-i1 2022-23 Medway-Medway High 01770505 148 138 93.2
225 3.9789473684210526 3.98 a-ovpe-i1 2022-23 Melrose-Melrose High 01780505 235 222 94.5
226 3.8989473684210525 3.9 a-ovpe-i1 2022-23 Mendon-Upton-Nipmuc Regional High 07100510 135 125 92.6
227 3.023157894736842 3.02 a-ovpe-i1 2022-23 Methuen-Methuen High 01810505 525 377 71.8
228 3.094736842105263 3.09 a-ovpe-i1 2022-23 Middleborough-Middleborough High 01820505 230 169 73.5
229 3.0442105263157893 3.04 a-ovpe-i1 2022-23 Milford-Milford High 01850505 400 289 72.3
230 3.76 3.76 a-ovpe-i1 2022-23 Millbury-Millbury Junior/Senior High 01860505 112 100 89.3
231 3.957894736842105 3.96 a-ovpe-i1 2022-23 Millis-Millis High School 01870505 67 63 94.0
232 4.092631578947368 4.09 a-ovpe-i1 2022-23 Milton-Milton High 01890505 246 239 97.2
233 1.9326315789473683 1.93 a-ovpe-i1 2022-23 Minuteman Regional Vocational Technical-Minuteman Regional High 08300605 183 84 45.9
234 2.606315789473684 2.61 a-ovpe-i1 2022-23 Mohawk Trail-Mohawk Trail Regional School 07170505 42 26 61.9
235 3.612631578947368 3.61 a-ovpe-i1 2022-23 Monomoy Regional School District-Monomoy Regional High School 07120515 141 121 85.8
236 3.427368421052632 3.43 a-ovpe-i1 2022-23 Monson-Monson High School 01910505 43 35 81.4
237 4.00421052631579 4.0 a-ovpe-i1 2022-23 Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical 08320605 366 348 95.1
238 3.9242105263157896 3.92 a-ovpe-i1 2022-23 Mount Greylock-Mt Greylock Regional High 07150505 73 68 93.2
239 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School 04700105 103 103 100.0
240 3.418947368421053 3.42 a-ovpe-i1 2022-23 Nantucket-Nantucket High 01970505 170 138 81.2
241 3.0989473684210522 3.1 a-ovpe-i1 2022-23 Narragansett-Narragansett Regional High 07200505 106 78 73.6
242 4.092631578947368 4.09 a-ovpe-i1 2022-23 Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School 08520605 214 208 97.2
243 4.021052631578947 4.02 a-ovpe-i1 2022-23 Nashoba-Nashoba Regional 07250505 202 193 95.5
244 3.9368421052631577 3.94 a-ovpe-i1 2022-23 Natick-Natick High 01980505 429 401 93.5
245 3.76 3.76 a-ovpe-i1 2022-23 Nauset-Nauset Regional High 06600505 169 151 89.3
246 4.109473684210526 4.11 a-ovpe-i1 2022-23 Needham-Needham High 01990505 415 405 97.6
247 2.24 2.24 a-ovpe-i1 2022-23 Neighborhood House Charter (District)-Neighborhood House Charter School 04440205 79 42 53.2
248 2.025263157894737 2.03 a-ovpe-i1 2022-23 New Bedford-New Bedford High 02010505 807 388 48.1
249 1.8694736842105262 1.87 a-ovpe-i1 2022-23 New Bedford-Trinity Day Academy 02010510 18 8 44.4
250 1.3473684210526315 1.35 a-ovpe-i1 2022-23 New Bedford-Whaling City Junior/Senior High School 02010515 25 8 32.0
251 3.2294736842105265 3.23 a-ovpe-i1 2022-23 New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton 35130305 116 89 76.7
252 3.8821052631578947 3.88 a-ovpe-i1 2022-23 Newburyport-Newburyport High 02040505 193 178 92.2
253 3.983157894736842 3.98 a-ovpe-i1 2022-23 Newton-Newton North High 02070505 514 486 94.6
254 4.130526315789473 4.13 a-ovpe-i1 2022-23 Newton-Newton South High 02070510 467 458 98.1
255 4.130526315789473 4.13 a-ovpe-i1 2022-23 Norfolk County Agricultural-Norfolk County Agricultural 09150705 155 152 98.1
256 2.8421052631578947 2.84 a-ovpe-i1 2022-23 North Adams-Drury High 02090505 80 54 67.5
257 3.7136842105263157 3.71 a-ovpe-i1 2022-23 North Andover-North Andover High 02110505 348 307 88.2
258 3.823157894736842 3.82 a-ovpe-i1 2022-23 North Attleborough-North Attleboro High 02120505 239 217 90.8
259 1.8863157894736842 1.89 a-ovpe-i1 2022-23 North Brookfield-North Brookfield High 02150505 29 13 44.8
260 3.9368421052631577 3.94 a-ovpe-i1 2022-23 North Middlesex-North Middlesex Regional 07350505 185 173 93.5
261 4.185263157894737 4.19 a-ovpe-i1 2022-23 North Reading-North Reading High 02170505 175 174 99.4
262 4.054736842105263 4.05 a-ovpe-i1 2022-23 Northampton-Northampton High 02100505 218 210 96.3
263 3.7431578947368425 3.74 a-ovpe-i1 2022-23 Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High 04060705 153 136 88.9
264 4.105263157894737 4.11 a-ovpe-i1 2022-23 Northboro-Southboro-Algonquin Regional High 07300505 277 270 97.5
265 3.317894736842105 3.32 a-ovpe-i1 2022-23 Northbridge-Northbridge High 02140505 156 123 78.8
266 3.4947368421052634 3.49 a-ovpe-i1 2022-23 Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational 08530605 358 297 83.0
267 3.2884210526315787 3.29 a-ovpe-i1 2022-23 Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical 08510605 146 114 78.1
268 3.848421052631579 3.85 a-ovpe-i1 2022-23 Norton-Norton High 02180505 185 169 91.4
269 4.181052631578948 4.18 a-ovpe-i1 2022-23 Norwell-Norwell High 02190505 145 144 99.3
270 3.5747368421052634 3.57 a-ovpe-i1 2022-23 Norwood-Norwood High 02200505 218 185 84.9
271 4.0884210526315785 4.09 a-ovpe-i1 2022-23 Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical 08550605 138 134 97.1
272 3.873684210526316 3.87 a-ovpe-i1 2022-23 Old Rochester-Old Rochester Regional High 07400505 150 138 92.0
273 2.8968421052631577 2.9 a-ovpe-i1 2022-23 Oxford-Oxford High 02260505 109 75 68.8
274 2.3410526315789473 2.34 a-ovpe-i1 2022-23 Palmer-Palmer High 02270505 63 35 55.6
275 3.4357894736842103 3.44 a-ovpe-i1 2022-23 Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical 08600605 179 146 81.6
276 1.4778947368421054 1.48 a-ovpe-i1 2022-23 Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School 35010505 57 20 35.1
277 1.6842105263157894 1.68 a-ovpe-i1 2022-23 Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.) 02290705 10 4 40.0
278 2.454736842105263 2.45 a-ovpe-i1 2022-23 Peabody-Peabody Veterans Memorial High 02290510 367 214 58.3
279 4.08421052631579 4.08 a-ovpe-i1 2022-23 Pembroke-Pembroke High School 02310505 168 163 97.0
280 4.08 4.08 a-ovpe-i1 2022-23 Pentucket-Pentucket Regional Sr High 07450505 130 126 96.9
281 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea 04930505 9 9 100.0
282 0.11368421052631579 1 a-ovpe-i1 2022-23 Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence 35180505 75 2 2.7
283 0.14736842105263157 1 a-ovpe-i1 2022-23 Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield 35080505 85 3 3.5
284 3.877894736842105 3.88 a-ovpe-i1 2022-23 Pioneer Charter School of Science (District)-Pioneer Charter School of Science 04940205 63 58 92.1
285 3.4610526315789474 3.46 a-ovpe-i1 2022-23 Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II 35060505 73 60 82.2
286 3.6715789473684213 3.67 a-ovpe-i1 2022-23 Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School 04970205 39 34 87.2
287 3.667368421052631 3.67 a-ovpe-i1 2022-23 Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School 04790505 70 61 87.1
288 3.8273684210526318 3.83 a-ovpe-i1 2022-23 Pioneer Valley-Pioneer Valley Regional 07500505 22 20 90.9
289 NA NA a-ovpe-i1 2022-23 Pittsfield-Eagle Education Academy 02360525 3
290 3.431578947368421 3.43 a-ovpe-i1 2022-23 Pittsfield-Pittsfield High 02360505 151 123 81.5
291 2.4042105263157896 2.4 a-ovpe-i1 2022-23 Pittsfield-Pittsfield Public Virtual Academy 02360705 7 4 57.1
292 2.425263157894737 2.43 a-ovpe-i1 2022-23 Pittsfield-Taconic High 02360510 250 144 57.6
293 2.9810526315789474 2.98 a-ovpe-i1 2022-23 Plymouth-Plymouth North High 02390505 322 228 70.8
294 3.76 3.76 a-ovpe-i1 2022-23 Plymouth-Plymouth South High 02390515 261 233 89.3
295 3.2336842105263157 3.23 a-ovpe-i1 2022-23 Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School 04870550 82 63 76.8
296 2.008421052631579 2.01 a-ovpe-i1 2022-23 Quabbin-Quabbin Regional High School 07530505 172 82 47.7
297 3.4610526315789474 3.46 a-ovpe-i1 2022-23 Quaboag Regional-Quaboag Regional High 07780505 90 74 82.2
298 3.705263157894737 3.71 a-ovpe-i1 2022-23 Quincy-North Quincy High 02430510 384 338 88.0
299 3.1789473684210527 3.18 a-ovpe-i1 2022-23 Quincy-Quincy High 02430505 372 281 75.5
300 2.383157894736842 2.38 a-ovpe-i1 2022-23 Ralph C Mahar-Ralph C Mahar Regional 07550505 113 64 56.6
301 2.1347368421052635 2.13 a-ovpe-i1 2022-23 Randolph-Randolph High 02440505 219 111 50.7
302 4.029473684210527 4.03 a-ovpe-i1 2022-23 Reading-Reading Memorial High 02460505 258 247 95.7
303 1.305263157894737 1.31 a-ovpe-i1 2022-23 Revere-CityLab Innovation High School 02480520 42 13 31.0
304 2.096842105263158 2.1 a-ovpe-i1 2022-23 Revere-Revere High 02480505 621 309 49.8
305 3.322105263157895 3.32 a-ovpe-i1 2022-23 Rising Tide Charter Public (District)-Rising Tide Charter Public School 04830305 76 60 78.9
306 3.1747368421052635 3.17 a-ovpe-i1 2022-23 Rockland-Rockland Senior High 02510505 175 132 75.4
307 4.134736842105263 4.13 a-ovpe-i1 2022-23 Rockport-Rockport High 02520510 55 54 98.2
308 3.8147368421052628 3.81 a-ovpe-i1 2022-23 Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School 04840505 160 145 90.6
309 4.092631578947368 4.09 a-ovpe-i1 2022-23 Salem Academy Charter (District)-Salem Academy Charter School 04850485 71 69 97.2
310 NA NA a-ovpe-i1 2022-23 Salem-New Liberty Innovation School 02580510 3
311 2.522105263157895 2.52 a-ovpe-i1 2022-23 Salem-Salem High 02580505 262 157 59.9
312 NA NA a-ovpe-i1 2022-23 Salem-Salem Prep High School 02580515 2
313 3.7978947368421054 3.8 a-ovpe-i1 2022-23 Sandwich-Sandwich Middle High School 02610505 132 119 90.2
314 3.082105263157895 3.08 a-ovpe-i1 2022-23 Saugus-Saugus High 02620505 194 142 73.2
315 4.1557894736842105 4.16 a-ovpe-i1 2022-23 Scituate-Scituate High School 02640505 159 157 98.7
316 3.5789473684210527 3.58 a-ovpe-i1 2022-23 Seekonk-Seekonk High 02650505 120 102 85.0
317 3.9157894736842107 3.92 a-ovpe-i1 2022-23 Sharon-Sharon High 02660505 300 279 93.0
318 3.9326315789473685 3.93 a-ovpe-i1 2022-23 Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School 08710605 334 312 93.4
319 3.8610526315789473 3.86 a-ovpe-i1 2022-23 Shrewsbury-Shrewsbury High School 02710505 496 455 91.7
320 3.595789473684211 3.6 a-ovpe-i1 2022-23 Silver Lake-Silver Lake Regional High 07600505 261 223 85.4
321 3.418947368421053 3.42 a-ovpe-i1 2022-23 Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School 04740505 69 56 81.2
322 3.427368421052632 3.43 a-ovpe-i1 2022-23 Somerset Berkley Regional School District-Somerset Berkley Regional High School 07630505 264 215 81.4
323 NA NA a-ovpe-i1 2022-23 Somerville-Full Circle High School 02740510 12 0 .0
324 3.4021052631578947 3.4 a-ovpe-i1 2022-23 Somerville-Somerville High 02740505 354 286 80.8
325 3.351578947368421 3.35 a-ovpe-i1 2022-23 South Hadley-South Hadley High 02780505 108 86 79.6
326 3.7010526315789476 3.7 a-ovpe-i1 2022-23 South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School 08290605 240 211 87.9
327 3.9705263157894737 3.97 a-ovpe-i1 2022-23 South Shore Charter Public (District)-South Shore Charter Public School 04880550 87 82 94.3
328 4.058947368421053 4.06 a-ovpe-i1 2022-23 South Shore Regional Vocational Technical-South Shore Vocational Technical High 08730605 165 159 96.4
329 2.6315789473684212 2.63 a-ovpe-i1 2022-23 Southbridge-Southbridge Academy 02770525 8 5 62.5
330 2.471578947368421 2.47 a-ovpe-i1 2022-23 Southbridge-Southbridge High School 02770515 138 81 58.7
331 4.008421052631579 4.01 a-ovpe-i1 2022-23 Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical 08720605 415 395 95.2
332 3.545263157894737 3.55 a-ovpe-i1 2022-23 Southern Berkshire-Mt Everett Regional 07650505 38 32 84.2
333 3.351578947368421 3.35 a-ovpe-i1 2022-23 Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School 08760605 318 253 79.6
334 3.8694736842105266 3.87 a-ovpe-i1 2022-23 Southwick-Tolland-Granville Regional School District-Southwick Regional School 07660505 111 102 91.9
335 2.008421052631579 2.01 a-ovpe-i1 2022-23 Spencer-E Brookfield-David Prouty High 07670505 107 51 47.7
336 2.808421052631579 2.81 a-ovpe-i1 2022-23 Springfield International Charter (District)-Springfield International Charter School 04410505 111 74 66.7
337 3.6842105263157894 3.68 a-ovpe-i1 2022-23 Springfield-Conservatory of the Arts 02810475 48 42 87.5
338 3.709473684210526 3.71 a-ovpe-i1 2022-23 Springfield-Emergence Academy 02810318 59 52 88.1
339 NA NA a-ovpe-i1 2022-23 Springfield-Gateway to College at Holyoke Community College 02810575 1
340 NA NA a-ovpe-i1 2022-23 Springfield-Gateway to College at Springfield Technical Community College 02810580 1
341 2.130526315789474 2.13 a-ovpe-i1 2022-23 Springfield-High School Of Commerce 02810510 257 130 50.6
342 2.4 2.4 a-ovpe-i1 2022-23 Springfield-John J Duggan Academy 02810320 79 45 57.0
343 NA NA a-ovpe-i1 2022-23 Springfield-Liberty Preparatory Academy 02810560 1
344 3.221052631578947 3.22 a-ovpe-i1 2022-23 Springfield-Roger L. Putnam Vocational Technical Academy 02810620 366 280 76.5
345 1.545263157894737 1.55 a-ovpe-i1 2022-23 Springfield-Springfield Central High 02810500 645 237 36.7
346 2.1052631578947367 2.11 a-ovpe-i1 2022-23 Springfield-Springfield High School 02810570 12 6 50.0
347 1.806315789473684 1.81 a-ovpe-i1 2022-23 Springfield-Springfield High School of Science and Technology 02810530 331 142 42.9
348 3.7978947368421054 3.8 a-ovpe-i1 2022-23 Springfield-Springfield International Academy at Sci-Tech 02810700 41 37 90.2
349 1.6842105263157894 1.68 a-ovpe-i1 2022-23 Springfield-Springfield Public Day High School 02810550 10 4 40.0
350 3.890526315789474 3.89 a-ovpe-i1 2022-23 Springfield-The Springfield Renaissance School an Expeditionary Learning School 02810205 92 85 92.4
351 1.3389473684210527 1.34 a-ovpe-i1 2022-23 Springfield-The Springfield Virtual School 02810705 44 14 31.8
352 4.063157894736842 4.06 a-ovpe-i1 2022-23 Stoneham-Stoneham High 02840505 171 165 96.5
353 2.6442105263157893 2.64 a-ovpe-i1 2022-23 Stoughton-Stoughton High 02850505 290 182 62.8
354 4.113684210526316 4.11 a-ovpe-i1 2022-23 Sturgis Charter Public (District)-Sturgis Charter Public School 04890505 215 210 97.7
355 4.16421052631579 4.16 a-ovpe-i1 2022-23 Sutton-Sutton High School 02900510 91 90 98.9
356 3.9663157894736845 3.97 a-ovpe-i1 2022-23 Swampscott-Swampscott High 02910505 172 162 94.2
357 3.3684210526315788 3.37 a-ovpe-i1 2022-23 Swansea-Joseph Case High 02920505 145 116 80.0
358 1.654736842105263 1.65 a-ovpe-i1 2022-23 TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School 39020900 499 196 39.3
359 3.789473684210526 3.79 a-ovpe-i1 2022-23 Tantasqua-Tantasqua Regional Sr High 07700505 160 144 90.0
360 3.334736842105263 3.33 a-ovpe-i1 2022-23 Tantasqua-Tantasqua Regional Vocational 07700605 144 114 79.2
361 2.8294736842105266 2.83 a-ovpe-i1 2022-23 Taunton-Taunton High 02930505 573 385 67.2
362 3.987368421052632 3.99 a-ovpe-i1 2022-23 Tewksbury-Tewksbury Memorial High 02950505 188 178 94.7
363 3.642105263157895 3.64 a-ovpe-i1 2022-23 Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical 08780605 275 238 86.5
364 3.4652631578947366 3.47 a-ovpe-i1 2022-23 Triton-Triton Regional High School 07730505 158 130 82.3
365 3.9621052631578944 3.96 a-ovpe-i1 2022-23 Tyngsborough-Tyngsborough High School 03010505 119 112 94.1
366 4.172631578947368 4.17 a-ovpe-i1 2022-23 Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical 08790605 219 217 99.1
367 3.890526315789474 3.89 a-ovpe-i1 2022-23 Uxbridge-Uxbridge High 03040505 105 97 92.4
368 NA NA a-ovpe-i1 2022-23 Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School 04980405 90 0 .0
369 3.8947368421052633 3.89 a-ovpe-i1 2022-23 Wachusett-Wachusett Regional High 07750505 451 417 92.5
370 3.3642105263157895 3.36 a-ovpe-i1 2022-23 Wakefield-Wakefield Memorial High 03050505 224 179 79.9
371 3.890526315789474 3.89 a-ovpe-i1 2022-23 Walpole-Walpole High 03070505 236 218 92.4
372 2.863157894736842 2.86 a-ovpe-i1 2022-23 Waltham-Waltham Sr High 03080505 535 364 68.0
373 2.218947368421053 2.22 a-ovpe-i1 2022-23 Ware-Ware Junior/Senior High School 03090505 91 48 52.7
374 NA NA a-ovpe-i1 2022-23 Wareham-Wareham Cooperative Alternative School 03100315 2
375 2.0631578947368423 2.06 a-ovpe-i1 2022-23 Wareham-Wareham Senior High 03100505 143 70 49.0
376 3.1157894736842104 3.12 a-ovpe-i1 2022-23 Watertown-Watertown High 03140505 215 159 74.0
377 4.147368421052631 4.15 a-ovpe-i1 2022-23 Wayland-Wayland High School 03150505 204 201 98.5
378 1.9663157894736842 1.97 a-ovpe-i1 2022-23 Webster-Bartlett High School 03160505 105 49 46.7
379 4.126315789473685 4.13 a-ovpe-i1 2022-23 Wellesley-Wellesley Sr High 03170505 358 351 98.0
380 3.945263157894737 3.95 a-ovpe-i1 2022-23 West Boylston-West Boylston Junior/Senior High 03220505 63 59 93.7
381 3.6884210526315786 3.69 a-ovpe-i1 2022-23 West Bridgewater-West Bridgewater Junior/Senior 03230505 113 99 87.6
382 2.7663157894736843 2.77 a-ovpe-i1 2022-23 West Springfield-West Springfield High 03320505 344 226 65.7
383 4.042105263157895 4.04 a-ovpe-i1 2022-23 Westborough-Westborough High 03210505 301 289 96.0
384 3.0442105263157893 3.04 a-ovpe-i1 2022-23 Westfield-Westfield High 03250505 253 183 72.3
385 4.0 4.0 a-ovpe-i1 2022-23 Westfield-Westfield Technical Academy 03250605 140 133 95.0
386 3.608421052631579 3.61 a-ovpe-i1 2022-23 Westfield-Westfield Virtual School 03250705 7 6 85.7
387 4.126315789473685 4.13 a-ovpe-i1 2022-23 Westford-Westford Academy 03260505 353 346 98.0
388 4.2105263157894735 4.21 a-ovpe-i1 2022-23 Weston-Weston High 03300505 159 159 100.0
389 3.3936842105263154 3.39 a-ovpe-i1 2022-23 Westport-Westport Middle-High School 03310515 72 58 80.6
390 4.021052631578947 4.02 a-ovpe-i1 2022-23 Westwood-Westwood High 03350505 202 193 95.5
391 3.023157894736842 3.02 a-ovpe-i1 2022-23 Weymouth-Weymouth High School 03360505 507 364 71.8
392 3.4652631578947366 3.47 a-ovpe-i1 2022-23 Whitman-Hanson-Whitman Hanson Regional 07800505 260 214 82.3
393 3.8442105263157895 3.84 a-ovpe-i1 2022-23 Whittier Regional Vocational Technical-Whittier Regional Vocational 08850605 322 294 91.3
394 3.8442105263157895 3.84 a-ovpe-i1 2022-23 Wilmington-Wilmington High 03420505 160 146 91.3
395 NA NA a-ovpe-i1 2022-23 Winchendon-Murdock Academy for Success 03430405 2
396 3.216842105263158 3.22 a-ovpe-i1 2022-23 Winchendon-Murdock High School 03430515 89 68 76.4
397 4.16421052631579 4.16 a-ovpe-i1 2022-23 Winchester-Winchester High School 03440505 361 357 98.9
398 3.0610526315789475 3.06 a-ovpe-i1 2022-23 Winthrop-Winthrop High School 03460505 172 125 72.7
399 3.8105263157894735 3.81 a-ovpe-i1 2022-23 Woburn-Woburn High 03470505 294 266 90.5
400 3.191578947368421 3.19 a-ovpe-i1 2022-23 Worcester-Burncoat Senior High 03480503 318 241 75.8
401 3.246315789473684 3.25 a-ovpe-i1 2022-23 Worcester-Claremont Academy 03480350 70 54 77.1
402 3.9663157894736845 3.97 a-ovpe-i1 2022-23 Worcester-Doherty Memorial High 03480512 381 359 94.2
403 2.9557894736842107 2.96 a-ovpe-i1 2022-23 Worcester-North High 03480515 359 252 70.2
404 3.9494736842105262 3.95 a-ovpe-i1 2022-23 Worcester-South High Community 03480520 468 439 93.8
405 3.8694736842105266 3.87 a-ovpe-i1 2022-23 Worcester-University Pk Campus School 03480285 37 34 91.9
406 3.8989473684210525 3.9 a-ovpe-i1 2022-23 Worcester-Worcester Technical High 03480605 378 350 92.6
407 3.7010526315789476 3.7 a-ovpe-i1 2021-22 Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School 04450105 91 80 87.9
408 3.250526315789474 3.25 a-ovpe-i1 2021-22 Abington-Abington High 00010505 136 105 77.2
409 3.4989473684210526 3.5 a-ovpe-i1 2021-22 Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School 04120530 71 59 83.1

File diff suppressed because it is too large Load Diff

@ -2382,3 +2382,409 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE
5.045333333333334,5,a-cgpr-i1,2021-22,Worcester - South High Community,03480520, 15.6, 18.6, 0.0, 28.7, 5.4, 0.6, 25.7, 2.1, 1.2, 2.1, 334
5.007999999999999,5,a-cgpr-i1,2021-22,Worcester - University Pk Campus School,03480285, 21.2, 39.4, 0.0, 18.2, 0.0, 3.0, 12.1, 3.0, 3.0, 0.0, 33
4.848,4.85,a-cgpr-i1,2021-22,Worcester - Worcester Technical High,03480605, 11.4, 36.1, 0.0, 19.3, 2.8, 1.4, 19.9, 2.3, 0.0, 6.8, 352
5.157333333333334,5,a-cgpr-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 23.9, 55.7, 0.0, 11.4, 3.4, 0.0, 2.3, 0.0, 3.4, 0.0, 88
4.458666666666667,4.46,a-cgpr-i1,2022-23,Abington - Abington High,00010505, 28.6, 48.9, 0.0, 3.8, 1.5, 0.8, 0.0, 1.5, 0.0, 15.0, 133
5.327999999999999,5,a-cgpr-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 34.6, 40.4, 3.8, 9.6, 0.0, 9.6, 1.9, 0.0, 0.0, 0.0, 52
5.061333333333334,5,a-cgpr-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 45.2, 47.2, 0.0, 1.6, 0.0, 0.2, 0.7, 0.0, 0.9, 4.3, 445
5.290666666666667,5,a-cgpr-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 46.4, 47.1, 0.0, 3.6, 0.7, 0.0, 1.4, 0.7, 0.0, 0.0, 138
5.130666666666667,5,a-cgpr-i1,2022-23,Agawam - Agawam High,00050505, 28.1, 31.5, 0.0, 18.7, 0.4, 0.9, 16.6, 1.3, 0.0, 2.6, 235
4.928,4.93,a-cgpr-i1,2022-23,Amesbury - Amesbury High,00070505, 27.9, 38.5, 0.0, 12.5, 4.8, 1.0, 7.7, 1.0, 5.8, 1.0, 104
0.0,1,a-cgpr-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515,"","","","","","","","","","", 3
4.384,4.38,a-cgpr-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 36.6, 29.7, 0.5, 9.4, 2.5, 0.5, 3.0, 0.0, 0.5, 17.3, 202
5.12,5,a-cgpr-i1,2022-23,Andover - Andover High,00090505, 48.3, 38.8, 0.0, 5.5, 0.5, 0.0, 2.9, 0.0, 1.4, 2.6, 420
5.210666666666667,5,a-cgpr-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 20.9, 0.0, 60.5, 0.0, 0.0, 16.3, 2.3, 0.0, 0.0, 43
5.002666666666666,5,a-cgpr-i1,2022-23,Arlington - Arlington High,00100505, 43.2, 41.0, 0.0, 3.3, 1.4, 1.1, 3.8, 0.0, 5.4, 0.8, 368
5.168,5,a-cgpr-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 28.8, 43.6, 0.0, 10.4, 1.8, 0.0, 12.3, 1.8, 0.0, 1.2, 163
5.215999999999999,5,a-cgpr-i1,2022-23,Ashland - Ashland High,00140505, 34.3, 48.3, 0.0, 9.6, 1.1, 0.6, 3.9, 0.6, 1.1, 0.6, 178
5.104,5,a-cgpr-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 19.1, 15.6, 0.0, 7.8, 1.2, 0.0, 52.0, 2.3, 0.4, 1.6, 256
5.114666666666667,5,a-cgpr-i1,2022-23,Athol-Royalston - Athol High,06150505, 5.5, 16.4, 0.0, 17.8, 0.0, 0.0, 56.2, 4.1, 0.0, 0.0, 73
5.061333333333334,5,a-cgpr-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 15.6, 32.5, 0.0, 29.9, 6.5, 3.9, 6.5, 1.3, 0.0, 3.9, 77
4.421333333333334,4.42,a-cgpr-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 2.4, 0.0, 12.2, 4.9, 4.9, 58.5, 2.4, 9.8, 4.9, 41
5.0986666666666665,5,a-cgpr-i1,2022-23,Attleboro - Attleboro High,00160505, 25.6, 26.9, 0.0, 17.8, 4.7, 0.0, 20.6, 2.9, 1.0, 0.5, 383
2.6666666666666665,2.67,a-cgpr-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 8.3, 0.0, 0.0, 41.7, 8.3, 41.7, 0.0, 12
5.024,5,a-cgpr-i1,2022-23,Auburn - Auburn Senior High,00170505, 22.9, 47.9, 0.0, 10.9, 2.6, 0.0, 9.9, 1.0, 0.5, 4.2, 192
4.976,4.98,a-cgpr-i1,2022-23,Avon - Avon Middle High School,00180510, 2.2, 48.9, 0.0, 22.2, 0.0, 0.0, 20.0, 2.2, 2.2, 2.2, 45
4.842666666666666,4.84,a-cgpr-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 27.9, 44.2, 0.0, 10.5, 1.2, 1.2, 5.8, 5.8, 1.2, 2.3, 86
2.1279999999999997,2.13,a-cgpr-i1,2022-23,Barnstable - Barnstable High,00200505, 13.1, 16.2, 1.2, 6.7, 0.9, 0.0, 1.8, 0.9, 0.6, 58.5, 328
4.992,4.99,a-cgpr-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 48.9, 6.4, 0.0, 29.8, 8.5, 0.0, 0.0, 6.4, 0.0, 0.0, 47
5.061333333333334,5,a-cgpr-i1,2022-23,Bedford - Bedford High,00230505, 38.7, 47.2, 0.0, 7.0, 0.0, 0.0, 2.0, 0.0, 4.5, 0.5, 199
5.050666666666666,5,a-cgpr-i1,2022-23,Belchertown - Belchertown High,00240505, 32.4, 26.5, 0.0, 22.9, 3.5, 1.2, 8.2, 0.6, 1.2, 3.5, 170
4.602666666666667,4.6,a-cgpr-i1,2022-23,Bellingham - Bellingham High School,00250505, 26.5, 41.0, 0.9, 3.4, 3.4, 0.0, 11.1, 3.4, 0.0, 10.3, 117
0.0,1,a-cgpr-i1,2022-23,Bellingham - Keough Memorial Academy,00250510,"","","","","","","","","","", 5
5.061333333333334,5,a-cgpr-i1,2022-23,Belmont - Belmont High,00260505, 57.6, 33.1, 0.0, 1.3, 1.0, 0.0, 1.9, 0.3, 4.1, 0.6, 314
4.954666666666665,4.95,a-cgpr-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28.6, 50.0, 3.6, 7.1, 3.6, 0.0, 0.0, 0.0, 0.0, 7.1, 28
4.992,4.99,a-cgpr-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 33.9, 29.4, 0.0, 9.2, 3.7, 0.0, 17.4, 1.8, 4.6, 0.0, 109
5.066666666666666,5,a-cgpr-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 41.7, 38.3, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0, 5.0, 0.0, 60
4.357333333333333,4.36,a-cgpr-i1,2022-23,Beverly - Beverly High,00300505, 28.1, 39.4, 0.6, 5.0, 0.0, 1.3, 7.3, 0.6, 5.0, 12.6, 317
5.157333333333335,5,a-cgpr-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 34.7, 37.6, 0.0, 11.3, 4.7, 0.7, 7.7, 1.1, 1.5, 0.7, 274
5.082666666666668,5,a-cgpr-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 40.5, 32.7, 0.0, 4.4, 1.4, 5.4, 10.9, 2.0, 2.7, 0.0, 294
5.002666666666667,5,a-cgpr-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 34.7, 22.1, 1.1, 8.4, 5.3, 1.1, 21.1, 1.1, 5.3, 0.0, 95
4.949333333333334,4.95,a-cgpr-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 26.2, 27.2, 1.0, 15.5, 1.5, 0.0, 21.4, 2.4, 0.0, 4.9, 206
4.688000000000001,4.69,a-cgpr-i1,2022-23,Boston - Another Course To College,00350541, 15.5, 29.3, 1.7, 29.3, 5.2, 0.0, 6.9, 1.7, 3.4, 6.9, 58
2.538666666666667,2.54,a-cgpr-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 7.6, 1.9, 21.9, 7.6, 0.0, 8.6, 4.8, 1.0, 46.7, 105
4.730666666666667,4.73,a-cgpr-i1,2022-23,Boston - Boston Arts Academy,00350546, 29.6, 35.7, 0.0, 15.3, 2.0, 0.0, 6.1, 0.0, 4.1, 7.1, 98
1.4453333333333334,1.45,a-cgpr-i1,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 2.4, 0.0, 5.9, 4.7, 1.2, 12.9, 0.0, 2.4, 70.6, 85
4.096,4.1,a-cgpr-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 20.5, 19.6, 0.9, 25.9, 3.6, 0.0, 6.3, 1.8, 3.6, 17.9, 112
4.1226666666666665,4.12,a-cgpr-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 18.7, 13.3, 4.0, 17.3, 2.7, 0.0, 21.3, 2.7, 1.3, 18.7, 75
5.034666666666667,5,a-cgpr-i1,2022-23,Boston - Boston Latin Academy,00350545, 48.7, 38.0, 0.0, 3.7, 1.3, 1.0, 1.7, 0.7, 0.7, 4.3, 300
5.136000000000001,5,a-cgpr-i1,2022-23,Boston - Boston Latin School,00350560, 58.3, 34.1, 0.2, 0.7, 2.0, 0.0, 1.0, 0.2, 1.0, 2.4, 410
4.191999999999999,4.19,a-cgpr-i1,2022-23,Boston - Brighton High School,00350505, 6.5, 18.7, 1.9, 29.0, 1.9, 1.9, 18.7, 0.9, 5.6, 15.0, 107
4.101333333333334,4.1,a-cgpr-i1,2022-23,Boston - Burke High School,00350525, 6.4, 37.2, 0.0, 12.8, 3.8, 2.6, 14.1, 6.4, 3.8, 12.8, 78
3.6533333333333333,3.65,a-cgpr-i1,2022-23,Boston - Charlestown High School,00350515, 10.2, 19.7, 0.0, 16.8, 5.8, 0.7, 15.3, 2.2, 5.1, 24.1, 137
2.970666666666667,2.97,a-cgpr-i1,2022-23,Boston - Community Academy,00350518, 5.6, 11.1, 0.0, 0.0, 5.6, 5.6, 27.8, 0.0, 5.6, 38.9, 18
3.7920000000000003,3.79,a-cgpr-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 4.4, 20.0, 2.2, 31.1, 6.7, 0.0, 6.7, 0.0, 2.2, 26.7, 45
4.453333333333333,4.45,a-cgpr-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 8.2, 20.5, 1.4, 24.7, 6.8, 2.7, 19.2, 0.0, 0.0, 16.4, 73
3.9519999999999995,3.95,a-cgpr-i1,2022-23,Boston - East Boston High School,00350530, 13.5, 14.8, 1.7, 12.2, 6.6, 1.3, 24.0, 0.9, 5.2, 19.7, 229
4.698666666666666,4.7,a-cgpr-i1,2022-23,Boston - English High School,00350535, 9.5, 24.6, 1.6, 38.9, 2.4, 0.8, 10.3, 1.6, 2.4, 7.9, 126
3.7813333333333334,3.78,a-cgpr-i1,2022-23,Boston - Excel High School,00350522, 9.3, 18.6, 2.3, 15.1, 5.8, 3.5, 16.3, 4.7, 4.7, 19.8, 86
4.426666666666667,4.43,a-cgpr-i1,2022-23,Boston - Fenway High School,00350540, 31.3, 24.1, 0.0, 9.6, 8.4, 0.0, 9.6, 0.0, 0.0, 16.9, 83
1.7226666666666668,1.72,a-cgpr-i1,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 8.8, 0.0, 11.8, 8.8, 0.0, 2.9, 2.9, 0.0, 64.7, 34
4.757333333333333,4.76,a-cgpr-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 16.9, 27.7, 4.6, 24.6, 9.2, 0.0, 6.2, 1.5, 0.0, 9.2, 65
0.0,1,a-cgpr-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750,"","","","","","","","","","", 2
3.936,3.94,a-cgpr-i1,2022-23,Boston - Lyon High School,00350655, 13.0, 30.4, 0.0, 17.4, 4.3, 0.0, 8.7, 0.0, 0.0, 26.1, 23
4.1706666666666665,4.17,a-cgpr-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 6.6, 9.8, 1.1, 19.7, 2.2, 4.4, 34.4, 2.7, 4.4, 14.8, 183
4.181333333333334,4.18,a-cgpr-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 12.3, 41.5, 1.5, 15.4, 1.5, 0.0, 6.2, 3.1, 1.5, 16.9, 65
2.464,2.46,a-cgpr-i1,2022-23,Boston - McKinley Schools,00350363, 0.0, 7.7, 0.0, 15.4, 0.0, 0.0, 23.1, 0.0, 0.0, 53.8, 13
5.114666666666667,5,a-cgpr-i1,2022-23,Boston - New Mission High School,00350542, 37.1, 25.8, 0.0, 15.5, 10.3, 0.0, 7.2, 0.0, 1.0, 3.1, 97
5.109333333333334,5,a-cgpr-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 43.4, 33.0, 0.3, 9.7, 6.9, 0.0, 2.5, 1.3, 0.9, 1.9, 318
4.997333333333334,5.0,a-cgpr-i1,2022-23,Boston - Quincy Upper School,00350565, 22.6, 35.5, 6.5, 12.9, 9.7, 6.5, 0.0, 0.0, 3.2, 3.2, 31
4.117333333333334,4.12,a-cgpr-i1,2022-23,Boston - Snowden International High School,00350690, 18.5, 30.4, 1.1, 12.0, 6.5, 0.0, 8.7, 0.0, 3.3, 19.6, 92
4.634666666666667,4.63,a-cgpr-i1,2022-23,Boston - TechBoston Academy,00350657, 16.4, 18.8, 1.6, 25.0, 6.3, 4.7, 14.1, 1.6, 3.1, 8.6, 128
4.906666666666666,4.91,a-cgpr-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 36.8, 44.7, 0.0, 1.3, 0.0, 3.9, 5.3, 0.0, 7.9, 0.0, 76
5.008,5,a-cgpr-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 4.1, 8.2, 0.0, 36.7, 10.2, 16.3, 18.4, 0.0, 6.1, 0.0, 49
4.586666666666666,4.59,a-cgpr-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 33.3, 24.6, 1.8, 10.5, 15.8, 0.0, 0.0, 0.0, 1.8, 12.3, 57
5.093333333333334,5,a-cgpr-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.2, 53.6, 4.3, 13.0, 0.0, 0.0, 1.4, 0.0, 0.0, 4.3, 69
4.421333333333334,4.42,a-cgpr-i1,2022-23,Bourne - Bourne High School,00360505, 22.7, 38.6, 0.0, 11.4, 0.0, 0.0, 10.2, 3.4, 0.0, 13.6, 88
5.28,5,a-cgpr-i1,2022-23,Braintree - Braintree High,00400505, 39.1, 37.3, 0.0, 6.8, 5.5, 0.0, 10.3, 0.5, 0.0, 0.5, 399
4.618666666666666,4.62,a-cgpr-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 34.6, 34.9, 2.2, 7.3, 1.0, 0.6, 6.0, 3.8, 0.0, 9.5, 315
0.0,1,a-cgpr-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415,"","","","","","","","","","", 1
5.12,5,a-cgpr-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 18.6, 30.4, 0.0, 17.6, 1.0, 0.0, 28.4, 2.0, 2.0, 0.0, 102
4.816,4.82,a-cgpr-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 11.9, 20.3, 0.6, 8.7, 6.4, 9.6, 32.8, 2.9, 0.3, 6.4, 311
4.266666666666667,4.27,a-cgpr-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 8.0, 0.0, 28.0, 20.0, 0.0, 24.0, 8.0, 0.0, 12.0, 25
4.656,4.66,a-cgpr-i1,2022-23,Brockton - Brockton High,00440505, 14.7, 25.5, 0.3, 27.1, 7.9, 0.1, 11.7, 2.9, 1.6, 8.2, 760
4.367999999999999,4.37,a-cgpr-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 36.4, 0.0, 18.2, 9.1, 0.0, 18.2, 0.0, 9.1, 9.1, 11
4.250666666666667,4.25,a-cgpr-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 1.3, 0.0, 30.7, 21.6, 0.0, 26.1, 5.2, 0.0, 15.0, 153
0.0,1,a-cgpr-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400,"","","","","","","","","","", 1
4.901333333333333,4.9,a-cgpr-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 30.6, 43.9, 0.0, 11.2, 0.0, 3.1, 3.1, 0.0, 0.0, 8.2, 98
5.12,5,a-cgpr-i1,2022-23,Brookline - Brookline High,00460505, 51.7, 33.3, 0.6, 6.9, 0.2, 0.2, 3.1, 0.0, 3.6, 0.4, 478
4.992000000000001,4.99,a-cgpr-i1,2022-23,Burlington - Burlington High,00480505, 34.1, 44.7, 0.0, 12.0, 2.8, 0.0, 0.0, 0.5, 6.0, 0.0, 217
5.077333333333333,5,a-cgpr-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 47.3, 29.7, 0.0, 9.5, 2.6, 1.1, 5.0, 0.2, 2.2, 2.4, 461
5.258666666666667,5,a-cgpr-i1,2022-23,Canton - Canton High,00500505, 41.0, 48.8, 1.0, 0.0, 0.5, 0.0, 7.3, 1.0, 0.0, 0.5, 205
2.672,2.67,a-cgpr-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 7.7, 10.3, 0.0, 7.1, 1.9, 0.0, 23.1, 1.9, 4.5, 43.6, 156
5.029333333333333,5,a-cgpr-i1,2022-23,Carver - Carver Middle/High School,00520405, 25.0, 28.4, 1.1, 11.4, 9.1, 0.0, 19.3, 3.4, 0.0, 2.3, 88
5.290666666666667,5,a-cgpr-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 27.3, 37.3, 0.9, 15.5, 6.4, 0.0, 11.8, 0.9, 0.0, 0.0, 110
4.501333333333333,4.5,a-cgpr-i1,2022-23,Chelmsford - Chelmsford High,00560505, 45.6, 30.1, 0.6, 2.6, 0.3, 0.0, 5.2, 1.3, 0.3, 13.9, 309
5.2,5,a-cgpr-i1,2022-23,Chelsea - Chelsea High,00570505, 14.0, 16.6, 0.0, 30.3, 5.2, 3.0, 28.4, 0.7, 0.7, 1.1, 271
5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 3.0, 3.0, 45.5, 9.1, 3.0, 36.4, 0.0, 0.0, 0.0, 33
5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 13.3, 0.0, 13.3, 0.0, 6.7, 66.7, 0.0, 0.0, 0.0, 15
3.6693333333333333,3.67,a-cgpr-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 43.8, 0.0, 0.0, 31.3, 16
3.76,3.76,a-cgpr-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 11.5, 19.8, 0.0, 24.5, 2.8, 1.6, 10.3, 2.0, 4.7, 22.9, 253
4.490666666666666,4.49,a-cgpr-i1,2022-23,Chicopee - Chicopee High,00610505, 20.5, 14.6, 0.0, 32.4, 1.6, 0.0, 15.1, 2.7, 0.0, 13.0, 185
5.3279999999999985,5,a-cgpr-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 17.1, 25.7, 0.0, 31.4, 0.0, 8.6, 17.1, 0.0, 0.0, 0.0, 35
5.290666666666666,5,a-cgpr-i1,2022-23,Clinton - Clinton Senior High,00640505, 31.3, 27.7, 2.7, 9.8, 1.8, 0.0, 25.9, 0.0, 0.0, 0.9, 112
4.933333333333334,4.93,a-cgpr-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 25.9, 44.4, 0.0, 11.1, 7.4, 0.0, 3.7, 3.7, 0.0, 3.7, 27
5.008,5,a-cgpr-i1,2022-23,Cohasset - Cohasset High School,00650505, 57.0, 36.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9, 0.9, 4.4, 114
4.5440000000000005,4.54,a-cgpr-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 22.2, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7, 11.1, 27
5.136000000000001,5,a-cgpr-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 25.9, 51.9, 0.0, 7.4, 3.7, 0.0, 7.4, 0.0, 3.7, 0.0, 27
5.205333333333334,5,a-cgpr-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 61.3, 32.1, 0.0, 2.4, 0.3, 0.0, 1.5, 0.0, 0.6, 1.8, 336
5.248000000000001,5,a-cgpr-i1,2022-23,Danvers - Danvers High,00710505, 40.0, 34.2, 0.0, 7.4, 0.0, 7.9, 8.9, 0.5, 1.1, 0.0, 190
4.842666666666667,4.84,a-cgpr-i1,2022-23,Dartmouth - Dartmouth High,00720505, 22.8, 40.9, 0.4, 17.7, 3.0, 0.0, 6.0, 2.6, 3.9, 2.6, 232
4.368,4.37,a-cgpr-i1,2022-23,Dedham - Dedham High,00730505, 22.7, 47.1, 0.0, 8.7, 1.7, 0.0, 1.7, 1.2, 0.0, 16.9, 172
4.938666666666666,4.94,a-cgpr-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 25.7, 28.4, 0.0, 18.9, 2.0, 0.7, 16.9, 3.4, 0.7, 3.4, 148
5.269333333333334,5,a-cgpr-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 20.3, 38.6, 0.7, 14.4, 2.6, 0.0, 22.2, 1.3, 0.0, 0.0, 153
5.077333333333333,5,a-cgpr-i1,2022-23,Douglas - Douglas High School,00770505, 25.6, 29.3, 0.0, 9.8, 6.1, 0.0, 24.4, 1.2, 0.0, 3.7, 82
5.301333333333334,5,a-cgpr-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 62.4, 32.9, 0.0, 0.7, 0.7, 0.0, 2.7, 0.0, 0.7, 0.0, 149
4.912000000000001,4.91,a-cgpr-i1,2022-23,Dracut - Dracut Senior High,00790505, 23.4, 38.8, 1.1, 17.6, 5.3, 0.0, 5.9, 1.6, 4.8, 1.6, 188
4.922666666666666,4.92,a-cgpr-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 35.8, 29.2, 0.0, 11.3, 4.2, 0.0, 11.8, 2.4, 0.9, 4.2, 212
5.328000000000001,5,a-cgpr-i1,2022-23,Duxbury - Duxbury High,00820505, 56.6, 36.7, 0.0, 0.9, 1.3, 0.0, 4.4, 0.0, 0.0, 0.0, 226
5.093333333333334,5,a-cgpr-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 29.7, 40.5, 0.0, 5.7, 8.2, 0.0, 11.4, 0.6, 3.2, 0.6, 158
4.922666666666665,4.92,a-cgpr-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 28.4, 26.5, 1.4, 20.9, 3.3, 0.0, 11.8, 2.4, 5.2, 0.0, 211
4.986666666666666,4.99,a-cgpr-i1,2022-23,Easthampton - Easthampton High,00860505, 4.3, 50.5, 0.0, 12.9, 0.0, 0.0, 25.8, 1.1, 4.3, 1.1, 93
4.8,4.8,a-cgpr-i1,2022-23,Easton - Oliver Ames High,00880505, 39.3, 43.7, 0.0, 3.3, 3.7, 0.0, 0.0, 1.5, 7.8, 0.7, 270
5.072,5,a-cgpr-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 21.7, 34.9, 1.2, 26.5, 4.8, 3.6, 2.4, 0.0, 2.4, 2.4, 83
4.938666666666666,4.94,a-cgpr-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 22.6, 38.4, 0.0, 8.7, 0.0, 0.0, 22.9, 0.8, 6.1, 0.5, 393
0.0,1,a-cgpr-i1,2022-23,Everett - Devens School,00930030,"","","","","","","","","","", 2
3.9573333333333336,3.96,a-cgpr-i1,2022-23,Everett - Everett High,00930505, 14.9, 27.5, 0.0, 9.6, 0.0, 7.8, 14.4, 0.0, 0.0, 25.7, 436
5.168,5,a-cgpr-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 37.9, 19.9, 1.2, 16.8, 9.9, 1.9, 9.3, 2.5, 0.0, 0.6, 161
5.034666666666667,5,a-cgpr-i1,2022-23,Fairhaven - Fairhaven High,00940505, 20.9, 46.6, 1.2, 14.7, 0.6, 0.0, 10.4, 0.6, 4.9, 0.0, 163
4.933333333333334,4.93,a-cgpr-i1,2022-23,Fall River - B M C Durfee High,00950505, 9.3, 16.1, 2.3, 31.3, 2.3, 0.6, 30.6, 2.5, 1.2, 3.7, 483
4.32,4.32,a-cgpr-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 35.1, 5.4, 5.4, 35.1, 0.0, 2.7, 16.2, 37
0.0,1,a-cgpr-i1,2022-23,Fall River - Stone PK-12 School,00950340,"","","","","","","","","","", 5
5.141333333333334,5,a-cgpr-i1,2022-23,Falmouth - Falmouth High,00960505, 31.1, 42.6, 0.0, 7.9, 3.2, 0.0, 11.6, 2.1, 1.6, 0.0, 190
5.189333333333334,5,a-cgpr-i1,2022-23,Fitchburg - Fitchburg High,00970505, 8.8, 39.1, 0.4, 29.1, 1.9, 0.0, 18.0, 1.5, 0.0, 1.1, 261
5.247999999999999,5,a-cgpr-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 8.1, 0.0, 20.7, 1.5, 0.0, 68.1, 0.0, 0.7, 0.7, 135
5.024,5,a-cgpr-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 32.4, 32.4, 0.0, 23.5, 5.9, 0.0, 0.0, 0.0, 0.0, 5.9, 34
5.061333333333334,5,a-cgpr-i1,2022-23,Foxborough - Foxborough High,00990505, 41.8, 43.5, 0.0, 4.5, 1.7, 0.0, 3.4, 0.6, 1.7, 2.8, 177
5.093333333333334,5,a-cgpr-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 46.5, 38.4, 0.0, 4.7, 4.7, 0.0, 1.2, 1.2, 0.0, 3.5, 86
5.237333333333334,5,a-cgpr-i1,2022-23,Framingham - Framingham High School,01000515, 20.4, 37.2, 0.2, 11.6, 4.8, 0.0, 24.0, 1.1, 0.6, 0.2, 545
5.242666666666666,5,a-cgpr-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 50.0, 37.1, 0.0, 1.6, 4.8, 0.0, 4.8, 0.0, 1.6, 0.0, 62
5.087999999999999,5,a-cgpr-i1,2022-23,Franklin - Franklin High,01010505, 42.0, 46.1, 0.0, 3.8, 0.7, 0.7, 2.1, 0.5, 3.1, 1.0, 421
4.725333333333333,4.73,a-cgpr-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 4.8, 4.8, 1.6, 12.1, 0.0, 0.0, 65.3, 5.6, 5.6, 0.0, 124
5.333333333333332,5,a-cgpr-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 27.2, 38.6, 0.0, 16.3, 3.3, 1.6, 13.0, 0.0, 0.0, 0.0, 184
4.970666666666667,4.97,a-cgpr-i1,2022-23,Frontier - Frontier Regional,06700505, 31.8, 28.4, 1.1, 18.2, 2.3, 0.0, 11.4, 3.4, 1.1, 2.3, 88
5.333333333333333,5,a-cgpr-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 3.6, 23.6, 0.0, 25.5, 0.0, 0.0, 47.3, 0.0, 0.0, 0.0, 55
4.485333333333334,4.49,a-cgpr-i1,2022-23,Gardner - Gardner High,01030505, 7.9, 32.5, 0.0, 27.0, 4.0, 0.0, 12.7, 2.4, 4.8, 8.7, 126
5.082666666666666,5,a-cgpr-i1,2022-23,Gateway - Gateway Regional High,06720505, 22.0, 22.0, 0.0, 17.1, 4.9, 0.0, 29.3, 4.9, 0.0, 0.0, 41
4.714666666666667,4.71,a-cgpr-i1,2022-23,Georgetown - Georgetown High School,01050505, 28.2, 42.3, 0.0, 6.4, 0.0, 0.0, 11.5, 0.0, 2.6, 9.0, 78
5.1626666666666665,5,a-cgpr-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 32.3, 9.7, 0.0, 25.8, 0.0, 0.0, 29.0, 3.2, 0.0, 0.0, 31
5.210666666666666,5,a-cgpr-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 9.3, 30.2, 0.0, 32.6, 0.0, 0.0, 25.6, 2.3, 0.0, 0.0, 43
4.768000000000001,4.77,a-cgpr-i1,2022-23,Gloucester - Gloucester High,01070505, 29.8, 21.0, 0.0, 7.7, 11.0, 0.0, 19.9, 1.7, 1.7, 7.2, 181
5.216,5,a-cgpr-i1,2022-23,Grafton - Grafton High School,01100505, 33.8, 42.1, 0.0, 7.0, 0.9, 0.0, 14.0, 0.4, 0.4, 1.3, 228
4.954666666666667,4.95,a-cgpr-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 35.7, 12.5, 0.0, 19.6, 5.4, 3.6, 16.1, 0.0, 0.0, 7.1, 56
4.0,4.0,a-cgpr-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 13.6, 18.2, 0.0, 16.7, 4.5, 0.0, 22.0, 1.5, 6.8, 16.7, 132
4.672,4.67,a-cgpr-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 6.0, 23.2, 0.3, 15.2, 1.9, 14.0, 27.0, 4.1, 0.0, 8.3, 315
5.1786666666666665,5,a-cgpr-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 12.2, 16.2, 0.0, 20.4, 1.7, 19.7, 26.9, 1.5, 0.2, 1.2, 402
4.522666666666667,4.52,a-cgpr-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 7.2, 20.6, 0.4, 22.1, 4.0, 0.0, 30.5, 3.0, 11.8, 0.4, 525
5.258666666666667,5,a-cgpr-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 4.9, 29.9, 0.0, 20.5, 2.5, 0.0, 40.8, 1.3, 0.0, 0.0, 448
5.178666666666667,5,a-cgpr-i1,2022-23,Greenfield - Greenfield High,01140505, 19.1, 8.8, 1.5, 41.2, 0.0, 0.0, 26.5, 1.5, 1.5, 0.0, 68
5.082666666666667,5,a-cgpr-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 38.1, 45.2, 0.0, 5.4, 3.0, 0.0, 3.6, 1.2, 1.2, 2.4, 168
5.184,5,a-cgpr-i1,2022-23,Hadley - Hopkins Academy,01170505, 43.2, 32.4, 0.0, 13.5, 5.4, 0.0, 2.7, 0.0, 2.7, 0.0, 37
5.200000000000001,5,a-cgpr-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 55.1, 31.4, 0.0, 5.9, 1.7, 0.0, 3.4, 0.0, 0.0, 2.5, 118
5.253333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 54.7, 31.3, 0.0, 10.9, 0.0, 0.0, 1.6, 1.6, 0.0, 0.0, 64
5.333333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 68.0, 8.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25
5.077333333333335,5,a-cgpr-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 36.7, 26.7, 0.5, 18.1, 1.4, 1.4, 10.4, 0.9, 2.3, 1.8, 221
4.896,4.9,a-cgpr-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 33.7, 21.4, 0.0, 26.5, 2.0, 0.0, 8.2, 3.1, 4.1, 1.0, 98
5.013333333333333,5,a-cgpr-i1,2022-23,Hanover - Hanover High,01220505, 44.3, 39.5, 0.6, 3.0, 1.8, 0.0, 4.8, 2.4, 3.0, 0.6, 167
4.981333333333334,4.98,a-cgpr-i1,2022-23,Harvard - Bromfield,01250505, 44.7, 48.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.6, 76
4.666666666666667,4.67,a-cgpr-i1,2022-23,Hatfield - Smith Academy,01270505, 29.2, 20.8, 0.0, 33.3, 0.0, 0.0, 4.2, 0.0, 0.0, 12.5, 24
5.333333333333333,5,a-cgpr-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 30.0, 20.0, 0.0, 50.0, 0.0, 0.0, 0.0, 10
5.109333333333334,5,a-cgpr-i1,2022-23,Haverhill - Haverhill High,01280505, 13.3, 17.5, 0.0, 35.1, 8.9, 0.0, 21.0, 2.2, 1.7, 0.2, 405
5.04,5,a-cgpr-i1,2022-23,Hingham - Hingham High,01310505, 51.1, 39.4, 0.6, 0.0, 0.9, 0.9, 1.6, 0.0, 0.9, 4.4, 317
5.1946666666666665,5,a-cgpr-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 14.1, 42.3, 1.3, 5.1, 12.8, 0.0, 21.8, 1.3, 1.3, 0.0, 78
5.221333333333332,5,a-cgpr-i1,2022-23,Holliston - Holliston High,01360505, 47.9, 42.3, 0.0, 1.0, 2.6, 0.0, 4.1, 0.0, 0.0, 2.1, 194
4.928,4.93,a-cgpr-i1,2022-23,Holyoke - Holyoke High,01370505, 10.1, 14.8, 0.9, 31.1, 7.2, 0.6, 27.7, 2.5, 0.0, 5.0, 318
4.458666666666667,4.46,a-cgpr-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 22.4, 34.7, 2.0, 6.1, 4.1, 0.0, 14.3, 2.0, 2.0, 12.2, 49
4.218666666666667,4.22,a-cgpr-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 45.2, 27.4, 0.0, 6.5, 0.0, 0.0, 0.0, 4.8, 16.1, 0.0, 62
4.986666666666666,4.99,a-cgpr-i1,2022-23,Hopkinton - Hopkinton High,01390505, 45.2, 46.1, 0.0, 0.6, 0.6, 0.0, 1.0, 1.0, 4.5, 1.0, 310
5.269333333333332,5,a-cgpr-i1,2022-23,Hudson - Hudson High,01410505, 35.3, 28.8, 0.0, 11.1, 0.7, 0.0, 22.9, 0.7, 0.7, 0.0, 153
5.248,5,a-cgpr-i1,2022-23,Hull - Hull High,01420505, 26.7, 45.0, 0.0, 8.3, 10.0, 1.7, 6.7, 0.0, 0.0, 1.7, 60
5.008,5,a-cgpr-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 33.7, 36.1, 0.0, 10.8, 0.0, 0.0, 13.3, 1.2, 4.8, 0.0, 83
5.072,5,a-cgpr-i1,2022-23,Ipswich - Ipswich High,01440505, 36.7, 44.2, 0.0, 10.8, 1.7, 0.0, 1.7, 1.7, 0.0, 3.3, 120
5.237333333333334,5,a-cgpr-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 34.6, 44.9, 0.0, 4.7, 14.0, 0.0, 0.0, 0.0, 0.9, 0.9, 107
4.794666666666666,4.79,a-cgpr-i1,2022-23,King Philip - King Philip Regional High,06900505, 39.6, 44.9, 0.0, 2.3, 0.8, 0.0, 2.3, 0.8, 0.8, 8.7, 265
2.6453333333333333,2.65,a-cgpr-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.9, 7.5, 0.0, 15.0, 10.3, 0.0, 15.9, 0.9, 2.8, 46.7, 107
4.469333333333334,4.47,a-cgpr-i1,2022-23,Lawrence - Lawrence High School,01490515, 9.3, 21.1, 0.2, 26.3, 19.2, 0.2, 7.5, 1.4, 4.4, 10.5, 589
0.0,1,a-cgpr-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 11
0.0,1,a-cgpr-i1,2022-23,Lawrence - School for Exceptional Studies,01490537,"","","","","","","","","","", 2
5.237333333333333,5,a-cgpr-i1,2022-23,Lee - Lee Middle/High School,01500505, 13.8, 34.5, 1.7, 13.8, 10.3, 0.0, 24.1, 0.0, 1.7, 0.0, 58
5.168,5,a-cgpr-i1,2022-23,Leicester - Leicester High,01510505, 32.0, 23.7, 0.0, 15.5, 1.0, 0.0, 24.7, 3.1, 0.0, 0.0, 97
4.656000000000001,4.66,a-cgpr-i1,2022-23,Lenox - Lenox Memorial High,01520505, 71.4, 0.0, 0.0, 15.9, 0.0, 0.0, 0.0, 0.0, 0.0, 12.7, 63
4.848,4.85,a-cgpr-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 8.5, 25.4, 0.0, 16.2, 0.0, 8.5, 32.3, 5.4, 3.8, 0.0, 130
3.2,3.2,a-cgpr-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 10.0, 10.0, 0.0, 10.0, 30.0, 0.0, 40.0, 0.0, 10
4.736,4.74,a-cgpr-i1,2022-23,Leominster - Leominster High School,01530505, 14.2, 44.3, 0.0, 15.2, 1.0, 0.3, 13.8, 2.4, 8.7, 0.0, 289
5.162666666666667,5,a-cgpr-i1,2022-23,Lexington - Lexington High,01550505, 58.0, 36.0, 0.0, 1.7, 0.2, 0.0, 0.9, 0.5, 1.6, 1.0, 572
5.274666666666667,5,a-cgpr-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 58.4, 34.9, 0.0, 2.8, 0.8, 0.3, 1.7, 0.3, 0.8, 0.0, 358
5.338666666666668,5,a-cgpr-i1,2022-23,Littleton - Littleton High School,01580505, 44.8, 46.7, 0.0, 2.9, 0.0, 0.0, 5.7, 0.0, 0.0, 0.0, 105
4.650666666666668,4.65,a-cgpr-i1,2022-23,Longmeadow - Longmeadow High,01590505, 51.2, 25.1, 0.0, 9.0, 1.4, 0.0, 0.5, 1.4, 2.8, 8.5, 211
0.0,1,a-cgpr-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320,"","","","","","","","","","", 4
5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - Lowell High,01600505, 13.3, 28.7, 0.2, 27.7, 7.5, 3.8, 14.7, 2.1, 1.0, 1.0, 585
5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.9, 2.0, 0.0, 2.0, 49
2.9226666666666667,2.92,a-cgpr-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 16.1, 0.0, 0.0, 38.7, 0.0, 3.2, 41.9, 31
4.778666666666667,4.78,a-cgpr-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 30.9, 25.7, 0.0, 20.9, 4.2, 0.0, 7.9, 5.8, 4.7, 0.0, 191
5.168,5,a-cgpr-i1,2022-23,Lunenburg - Lunenburg High,01620505, 20.6, 53.6, 0.0, 10.3, 0.0, 0.0, 12.4, 1.0, 0.0, 2.1, 97
5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Classical High,01630505, 13.0, 24.6, 0.2, 24.9, 9.2, 0.2, 24.4, 1.0, 1.4, 1.0, 414
5.056,5,a-cgpr-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 5.3, 5.3, 0.0, 36.8, 0.0, 0.0, 47.4, 0.0, 0.0, 5.3, 19
4.368,4.37,a-cgpr-i1,2022-23,Lynn - Lynn English High,01630510, 16.4, 20.8, 0.8, 21.9, 1.6, 0.3, 20.1, 0.0, 6.8, 11.5, 384
5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 10.0, 15.1, 0.0, 23.5, 4.4, 7.6, 35.9, 2.8, 0.4, 0.4, 251
5.253333333333333,5,a-cgpr-i1,2022-23,Lynnfield - Lynnfield High,01640505, 48.5, 44.8, 0.0, 1.5, 1.5, 0.0, 2.2, 0.0, 0.7, 0.7, 134
5.333333333333333,5,a-cgpr-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50
4.794666666666667,4.79,a-cgpr-i1,2022-23,Malden - Malden High,01650505, 18.5, 34.4, 0.5, 17.0, 3.5, 1.0, 15.0, 0.5, 4.7, 5.0, 401
5.029333333333333,5,a-cgpr-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 46.3, 40.7, 0.8, 0.8, 0.8, 0.0, 4.9, 0.8, 0.8, 4.1, 123
5.2266666666666675,5,a-cgpr-i1,2022-23,Mansfield - Mansfield High,01670505, 36.2, 44.5, 0.0, 5.2, 4.5, 1.4, 6.2, 0.3, 0.3, 1.4, 290
5.135999999999999,5,a-cgpr-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.9, 0.0, 0.0, 33.3, 31.5, 0.0, 29.6, 1.9, 1.9, 0.0, 54
4.8693333333333335,4.87,a-cgpr-i1,2022-23,Marblehead - Marblehead High,01680505, 44.5, 39.5, 0.0, 3.2, 1.8, 0.0, 2.3, 0.5, 0.5, 7.7, 220
4.810666666666666,4.81,a-cgpr-i1,2022-23,Marlborough - Marlborough High,01700505, 16.7, 29.7, 2.7, 16.7, 0.0, 0.8, 23.6, 1.9, 0.4, 7.6, 263
4.597333333333333,4.6,a-cgpr-i1,2022-23,Marshfield - Marshfield High,01710505, 45.8, 30.3, 1.7, 1.3, 0.7, 2.4, 4.0, 2.4, 1.7, 9.8, 297
4.981333333333334,4.98,a-cgpr-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 33.0, 33.0, 0.0, 5.0, 2.8, 0.0, 19.6, 1.1, 2.8, 2.8, 179
4.741333333333333,4.74,a-cgpr-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 55.6, 11.1, 0.0, 0.0, 0.0, 0.0, 22.2, 0.0, 11.1, 0.0, 9
5.157333333333334,5,a-cgpr-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 54.9, 33.1, 0.4, 5.3, 1.5, 0.0, 1.5, 0.8, 0.8, 1.9, 266
4.997333333333333,5.0,a-cgpr-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 25.7, 41.3, 0.0, 13.8, 0.0, 2.8, 10.1, 3.7, 2.8, 0.0, 109
5.157333333333335,5,a-cgpr-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 45.8, 44.1, 0.0, 3.4, 0.0, 0.0, 3.4, 0.0, 3.4, 0.0, 59
4.373333333333333,4.37,a-cgpr-i1,2022-23,Maynard - Maynard High,01740505, 26.4, 37.5, 0.0, 5.6, 0.0, 0.0, 12.5, 0.0, 8.3, 9.7, 72
5.114666666666667,5,a-cgpr-i1,2022-23,Medfield - Medfield Senior High,01750505, 50.5, 43.4, 0.0, 1.5, 0.5, 0.0, 0.0, 0.0, 3.0, 1.0, 198
0.0,1,a-cgpr-i1,2022-23,Medford - Curtis-Tufts,01760510,"","","","","","","","","","", 2
4.970666666666667,4.97,a-cgpr-i1,2022-23,Medford - Medford High,01760505, 26.4, 31.6, 0.0, 12.1, 4.2, 0.7, 18.2, 1.0, 3.9, 2.0, 307
5.135999999999999,5,a-cgpr-i1,2022-23,Medway - Medway High,01770505, 44.1, 38.5, 0.6, 2.5, 2.5, 0.0, 8.1, 0.6, 0.0, 3.1, 161
4.773333333333334,4.77,a-cgpr-i1,2022-23,Melrose - Melrose High,01780505, 46.8, 37.6, 0.0, 3.7, 1.4, 0.0, 0.0, 0.5, 6.4, 3.7, 218
4.650666666666666,4.65,a-cgpr-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 37.9, 40.7, 0.0, 3.6, 0.0, 0.7, 4.3, 0.7, 5.0, 7.1, 140
4.741333333333333,4.74,a-cgpr-i1,2022-23,Methuen - Methuen High,01810505, 18.2, 23.8, 0.6, 22.5, 8.4, 0.0, 15.4, 2.2, 0.0, 8.9, 462
4.4479999999999995,4.45,a-cgpr-i1,2022-23,Middleborough - Middleborough High,01820505, 28.4, 34.5, 1.0, 8.2, 7.2, 0.0, 4.1, 0.5, 15.5, 0.5, 194
3.6373333333333333,3.64,a-cgpr-i1,2022-23,Milford - Milford High,01850505, 22.6, 30.7, 0.0, 8.7, 4.5, 1.4, 0.3, 0.7, 1.4, 29.6, 287
4.256,4.26,a-cgpr-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 26.6, 36.3, 0.0, 14.5, 2.4, 0.0, 0.0, 1.6, 17.7, 0.8, 124
4.672,4.67,a-cgpr-i1,2022-23,Millis - Millis High School,01870505, 49.3, 34.2, 0.0, 0.0, 0.0, 0.0, 4.1, 0.0, 4.1, 8.2, 73
0.0,1,a-cgpr-i1,2022-23,Millis - TIES,01870515,"","","","","","","","","","", 1
5.029333333333333,5,a-cgpr-i1,2022-23,Milton - Milton High,01890505, 45.5, 38.7, 0.0, 5.6, 1.1, 1.5, 1.9, 0.8, 3.0, 1.9, 266
3.8880000000000003,3.89,a-cgpr-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 20.9, 23.6, 0.0, 14.2, 3.4, 10.8, 0.0, 3.4, 6.1, 17.6, 148
4.48,4.48,a-cgpr-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 20.0, 16.0, 0.0, 44.0, 0.0, 4.0, 0.0, 0.0, 12.0, 4.0, 25
5.0133333333333345,5,a-cgpr-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 42.4, 18.6, 0.0, 22.9, 4.2, 0.0, 5.9, 4.2, 1.7, 0.0, 118
3.9626666666666672,3.96,a-cgpr-i1,2022-23,Monson - Monson High School,01910505, 14.3, 22.9, 0.0, 37.1, 0.0, 0.0, 0.0, 5.7, 17.1, 2.9, 35
4.538666666666666,4.54,a-cgpr-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 12.3, 25.9, 0.9, 15.1, 0.3, 0.3, 30.3, 2.2, 3.8, 8.8, 317
5.136000000000001,5,a-cgpr-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 56.1, 25.6, 0.0, 7.3, 2.4, 0.0, 4.9, 1.2, 2.4, 0.0, 82
5.333333333333333,5,a-cgpr-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 45.8, 54.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72
5.04,5,a-cgpr-i1,2022-23,Nantucket - Nantucket High,01970505, 26.9, 33.8, 2.8, 6.2, 3.4, 0.0, 21.4, 2.1, 3.4, 0.0, 145
4.725333333333333,4.73,a-cgpr-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 16.1, 30.6, 0.0, 16.1, 11.3, 0.0, 14.5, 1.6, 1.6, 8.1, 62
5.056,5,a-cgpr-i1,2022-23,Nashoba - Nashoba Regional,07250505, 43.8, 41.1, 0.0, 5.2, 1.6, 0.0, 3.1, 0.0, 4.2, 1.0, 192
5.103999999999999,5,a-cgpr-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 15.6, 22.5, 1.3, 11.9, 6.3, 10.0, 28.1, 0.0, 0.0, 4.4, 160
5.173333333333333,5,a-cgpr-i1,2022-23,Natick - Natick High,01980505, 41.4, 45.6, 0.0, 4.2, 0.5, 1.3, 4.0, 0.8, 1.9, 0.3, 377
4.927999999999999,4.93,a-cgpr-i1,2022-23,Nauset - Nauset Regional High,06600505, 38.9, 34.8, 1.0, 7.6, 0.5, 0.0, 9.6, 1.0, 5.6, 1.0, 198
5.077333333333333,5,a-cgpr-i1,2022-23,Needham - Needham High,01990505, 53.6, 38.1, 0.3, 1.6, 0.3, 0.5, 0.8, 0.3, 1.3, 3.2, 375
4.943999999999999,4.94,a-cgpr-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 10.9, 36.4, 1.8, 10.9, 23.6, 0.0, 9.1, 0.0, 0.0, 7.3, 55
4.826666666666667,4.83,a-cgpr-i1,2022-23,New Bedford - New Bedford High,02010505, 6.8, 18.6, 0.0, 30.4, 7.5, 0.2, 27.0, 2.3, 2.6, 4.6, 570
5.333333333333333,5,a-cgpr-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 66.7, 0.0, 0.0, 33.3, 0.0, 0.0, 0.0, 9
5.2,5,a-cgpr-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 17.1, 0.0, 26.8, 2.4, 0.0, 51.2, 0.0, 0.0, 2.4, 41
5.333333333333333,5,a-cgpr-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 62.5, 0.0, 37.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80
4.949333333333334,4.95,a-cgpr-i1,2022-23,Newburyport - Newburyport High,02040505, 41.1, 40.6, 0.0, 6.3, 0.5, 0.0, 4.3, 1.4, 4.8, 1.0, 207
4.970666666666667,4.97,a-cgpr-i1,2022-23,Newton - Newton North High,02070505, 54.0, 34.2, 0.2, 2.6, 0.0, 0.0, 2.2, 0.4, 3.3, 3.1, 491
4.746666666666666,4.75,a-cgpr-i1,2022-23,Newton - Newton South High,02070510, 59.6, 25.7, 1.1, 1.5, 0.0, 0.0, 1.1, 0.8, 5.3, 5.1, 475
5.013333333333334,5,a-cgpr-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 22.0, 41.7, 0.0, 9.8, 0.0, 2.3, 18.2, 3.0, 0.8, 2.3, 132
4.373333333333333,4.37,a-cgpr-i1,2022-23,North Adams - Drury High,02090505, 19.7, 23.0, 1.6, 3.3, 9.8, 0.0, 24.6, 3.3, 9.8, 4.9, 61
5.050666666666666,5,a-cgpr-i1,2022-23,North Andover - North Andover High,02110505, 35.4, 45.7, 0.3, 5.0, 2.3, 0.0, 6.0, 1.0, 1.7, 2.6, 302
4.959999999999999,4.96,a-cgpr-i1,2022-23,North Attleborough - North Attleboro High,02120505, 32.3, 44.4, 0.0, 6.6, 0.8, 0.0, 8.9, 1.2, 0.0, 5.8, 257
4.1066666666666665,4.11,a-cgpr-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 46.2, 0.0, 30.8, 0.0, 0.0, 0.0, 0.0, 0.0, 23.1, 13
4.96,4.96,a-cgpr-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 22.2, 43.3, 0.0, 11.1, 4.7, 0.0, 11.7, 1.8, 0.0, 5.3, 171
5.2426666666666675,5,a-cgpr-i1,2022-23,North Reading - North Reading High,02170505, 45.7, 41.6, 0.0, 3.5, 2.3, 0.0, 5.2, 0.6, 0.6, 0.6, 173
4.896,4.9,a-cgpr-i1,2022-23,Northampton - Northampton High,02100505, 39.9, 29.2, 0.0, 12.0, 1.3, 0.0, 9.4, 0.4, 5.6, 2.1, 233
4.666666666666667,4.67,a-cgpr-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 8.6, 11.7, 0.8, 8.6, 3.1, 0.0, 54.7, 5.5, 0.8, 6.3, 128
5.296,5,a-cgpr-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 53.2, 34.3, 0.3, 2.2, 0.6, 0.0, 8.7, 0.3, 0.3, 0.0, 312
5.290666666666667,5,a-cgpr-i1,2022-23,Northbridge - Northbridge High,02140505, 16.0, 35.2, 0.0, 19.2, 8.0, 0.0, 20.8, 0.8, 0.0, 0.0, 125
4.938666666666666,4.94,a-cgpr-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 17.8, 15.7, 0.4, 9.6, 4.3, 1.4, 43.4, 1.1, 0.4, 6.0, 281
5.034666666666667,5,a-cgpr-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 16.3, 29.3, 0.0, 10.6, 1.6, 0.8, 35.8, 4.9, 0.0, 0.8, 123
4.8053333333333335,4.81,a-cgpr-i1,2022-23,Norton - Norton High,02180505, 36.8, 33.7, 0.0, 6.7, 4.3, 0.0, 8.6, 1.8, 4.9, 3.1, 163
5.088000000000001,5,a-cgpr-i1,2022-23,Norwell - Norwell High,02190505, 53.7, 35.6, 0.7, 2.7, 2.0, 0.0, 0.7, 1.3, 2.0, 1.3, 149
5.184,5,a-cgpr-i1,2022-23,Norwood - Norwood High,02200505, 35.4, 33.9, 0.0, 8.9, 8.9, 0.0, 10.1, 1.9, 0.8, 0.0, 257
5.173333333333333,5,a-cgpr-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 16.4, 32.1, 1.4, 12.1, 0.0, 0.0, 35.0, 1.4, 1.4, 0.0, 140
4.757333333333333,4.76,a-cgpr-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 37.7, 35.3, 1.8, 5.4, 2.4, 1.8, 4.8, 1.2, 3.6, 6.0, 167
4.613333333333332,4.61,a-cgpr-i1,2022-23,Oxford - Oxford High,02260505, 27.5, 18.8, 0.0, 26.3, 1.3, 1.3, 11.3, 1.3, 2.5, 10.0, 80
5.253333333333333,5,a-cgpr-i1,2022-23,Palmer - Palmer High,02270505, 14.8, 19.7, 0.0, 27.9, 6.6, 0.0, 29.5, 1.6, 0.0, 0.0, 61
4.224,4.22,a-cgpr-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 15.2, 12.0, 0.0, 16.0, 0.0, 5.6, 30.4, 2.4, 0.0, 18.4, 125
4.874666666666666,4.87,a-cgpr-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 23.4, 10.6, 0.0, 53.2, 0.0, 2.1, 2.1, 2.1, 6.4, 0.0, 47
5.333333333333333,5,a-cgpr-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 25.0, 0.0, 0.0, 33.3, 0.0, 0.0, 41.7, 0.0, 0.0, 0.0, 12
5.114666666666667,5,a-cgpr-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 28.6, 30.3, 0.0, 14.2, 4.6, 2.0, 16.2, 1.4, 0.0, 2.6, 346
4.213333333333333,4.21,a-cgpr-i1,2022-23,Pembroke - Pembroke High School,02310505, 44.1, 31.3, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 195
4.810666666666667,4.81,a-cgpr-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 41.6, 34.4, 0.0, 8.4, 1.3, 0.0, 4.5, 3.2, 3.2, 3.2, 154
5.333333333333333,5,a-cgpr-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 28.6, 0.0, 14.3, 0.0, 0.0, 57.1, 0.0, 0.0, 0.0, 7
4.885333333333333,4.89,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 8.3, 8.3, 0.0, 75.0, 0.0, 8.3, 0.0, 12
3.5519999999999996,3.55,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 33.3, 0.0, 22.2, 0.0, 0.0, 11.1, 11.1, 22.2, 0.0, 9
5.205333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 54.5, 38.6, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 44
5.333333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 47.8, 41.3, 0.0, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46
4.890666666666667,4.89,a-cgpr-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 16.3, 26.5, 0.0, 30.6, 6.1, 0.0, 12.2, 0.0, 8.2, 0.0, 49
5.338666666666668,5,a-cgpr-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.2, 31.6, 0.0, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19
5.242666666666667,5,a-cgpr-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 49.1, 14.0, 0.0, 15.8, 8.8, 1.8, 8.8, 0.0, 1.8, 0.0, 57
0.0,1,a-cgpr-i1,2022-23,Pittsfield - Eagle Education Academy,02360525,"","","","","","","","","","", 2
5.0666666666666655,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield High,02360505, 25.9, 30.2, 0.0, 21.6, 2.2, 0.0, 15.1, 2.2, 0.0, 2.9, 139
5.327999999999999,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 8.3, 25.0, 0.0, 8.3, 8.3, 0.0, 50.0, 0.0, 0.0, 0.0, 12
5.0986666666666665,5,a-cgpr-i1,2022-23,Pittsfield - Taconic High,02360510, 16.9, 15.7, 0.6, 28.7, 8.4, 1.1, 24.2, 1.7, 0.0, 2.8, 178
5.264000000000001,5,a-cgpr-i1,2022-23,Plymouth - Plymouth North High,02390505, 23.3, 34.6, 0.0, 7.9, 8.2, 0.0, 24.7, 1.4, 0.0, 0.0, 292
5.013333333333334,5,a-cgpr-i1,2022-23,Plymouth - Plymouth South High,02390515, 25.6, 29.4, 0.0, 9.2, 4.6, 0.4, 24.8, 5.5, 0.4, 0.0, 238
4.591999999999999,4.59,a-cgpr-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 25.0, 42.2, 1.6, 14.1, 1.6, 0.0, 1.6, 0.0, 1.6, 12.5, 64
4.112,4.11,a-cgpr-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 26.8, 22.0, 0.0, 17.3, 0.0, 0.0, 11.0, 2.4, 18.1, 2.4, 127
4.768,4.77,a-cgpr-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 24.5, 26.6, 0.0, 14.9, 1.1, 0.0, 22.3, 0.0, 0.0, 10.6, 94
5.007999999999999,5,a-cgpr-i1,2022-23,Quincy - North Quincy High,02430510, 37.0, 43.1, 0.3, 7.5, 1.5, 0.0, 4.5, 0.9, 2.1, 3.0, 332
4.266666666666667,4.27,a-cgpr-i1,2022-23,Quincy - Quincy High,02430505, 22.2, 29.8, 0.0, 9.0, 0.8, 5.5, 12.7, 5.0, 0.0, 15.0, 379
4.298666666666667,4.3,a-cgpr-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 18.2, 22.1, 0.0, 16.9, 0.0, 0.0, 23.4, 5.2, 0.0, 14.3, 77
4.704,4.7,a-cgpr-i1,2022-23,Randolph - Randolph High,02440505, 15.6, 25.8, 3.9, 14.8, 0.0, 0.0, 28.1, 4.7, 4.7, 2.3, 128
5.152000000000001,5,a-cgpr-i1,2022-23,Reading - Reading Memorial High,02460505, 42.9, 43.5, 0.0, 4.4, 2.4, 0.0, 3.4, 0.7, 1.4, 1.4, 294
4.944,4.94,a-cgpr-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 7.1, 21.4, 7.1, 57.1, 0.0, 7.1, 0.0, 14
4.890666666666666,4.89,a-cgpr-i1,2022-23,Revere - Revere High,02480505, 21.2, 22.6, 1.6, 22.9, 2.3, 0.5, 20.6, 0.9, 0.9, 6.5, 433
4.997333333333333,5.0,a-cgpr-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 48.4, 29.7, 0.0, 7.8, 3.1, 0.0, 4.7, 1.6, 1.6, 3.1, 64
4.810666666666667,4.81,a-cgpr-i1,2022-23,Rockland - Rockland Senior High,02510505, 25.6, 30.8, 0.8, 10.5, 6.0, 0.0, 16.5, 3.0, 5.3, 1.5, 133
4.549333333333332,4.55,a-cgpr-i1,2022-23,Rockport - Rockport High,02520510, 32.8, 44.3, 0.0, 1.6, 0.0, 0.0, 6.6, 0.0, 9.8, 4.9, 61
5.136,5,a-cgpr-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 38.3, 39.3, 7.5, 11.2, 0.0, 0.0, 0.0, 0.9, 2.8, 0.0, 107
4.517333333333333,4.52,a-cgpr-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 38.5, 30.8, 0.0, 15.4, 0.0, 7.7, 7.7, 13
3.3493333333333335,3.35,a-cgpr-i1,2022-23,Salem - Salem High,02580505, 11.0, 25.2, 0.5, 19.7, 3.2, 2.3, 0.9, 1.8, 16.1, 19.3, 218
0.8906666666666666,1,a-cgpr-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0, 16.7, 66.7, 6
5.242666666666667,5,a-cgpr-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 41.5, 53.8, 0.0, 0.0, 1.5, 0.0, 1.5, 1.5, 0.0, 0.0, 65
4.992000000000001,4.99,a-cgpr-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 36.3, 40.1, 0.0, 3.8, 6.4, 0.0, 7.0, 1.3, 0.0, 5.1, 157
4.933333333333334,4.93,a-cgpr-i1,2022-23,Saugus - Saugus High,02620505, 26.7, 29.1, 0.0, 14.0, 9.3, 0.0, 13.4, 2.9, 2.3, 2.3, 172
4.9866666666666655,4.99,a-cgpr-i1,2022-23,Scituate - Scituate High School,02640505, 46.0, 40.6, 0.0, 0.5, 2.1, 0.0, 4.3, 1.1, 1.1, 4.3, 187
5.050666666666666,5,a-cgpr-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 34.3, 0.0, 41.0, 6.7, 0.0, 12.7, 0.7, 4.5, 0.0, 134
4.144,4.14,a-cgpr-i1,2022-23,Sharon - Sharon High,02660505, 39.4, 37.0, 0.0, 1.0, 0.0, 0.0, 0.3, 0.3, 0.0, 21.8, 289
5.338666666666667,5,a-cgpr-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 16.6, 21.6, 0.4, 12.4, 4.2, 1.8, 43.1, 0.0, 0.0, 0.0, 283
4.9866666666666655,4.99,a-cgpr-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 84.3, 0.0, 7.0, 0.0, 1.1, 1.1, 0.5, 2.0, 3.9, 440
4.922666666666665,4.92,a-cgpr-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 38.3, 32.0, 0.8, 4.3, 1.2, 1.6, 14.1, 1.6, 6.3, 0.0, 256
4.917333333333333,4.92,a-cgpr-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 15.8, 23.7, 0.0, 31.6, 0.0, 0.0, 21.1, 2.6, 5.3, 0.0, 38
5.077333333333334,5,a-cgpr-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 28.8, 36.3, 0.0, 11.5, 6.2, 0.0, 12.4, 0.9, 1.8, 2.2, 226
4.666666666666667,4.67,a-cgpr-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 37.5, 0.0, 0.0, 12.5, 8
4.6240000000000006,4.62,a-cgpr-i1,2022-23,Somerville - Somerville High,02740505, 25.9, 23.3, 0.0, 18.0, 8.6, 0.0, 10.9, 0.8, 7.9, 4.5, 266
4.778666666666667,4.78,a-cgpr-i1,2022-23,South Hadley - South Hadley High,02780505, 20.0, 30.4, 0.0, 20.8, 3.2, 0.0, 15.2, 3.2, 0.8, 6.4, 125
4.970666666666667,4.97,a-cgpr-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 10.3, 14.3, 0.6, 32.6, 1.7, 0.0, 33.7, 2.3, 0.0, 4.6, 175
5.269333333333334,5,a-cgpr-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 27.3, 49.4, 0.0, 3.9, 0.0, 1.3, 16.9, 0.0, 1.3, 0.0, 77
5.12,5,a-cgpr-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 11.7, 17.5, 0.0, 2.6, 1.9, 0.6, 61.7, 3.2, 0.6, 0.0, 154
0.0,1,a-cgpr-i1,2022-23,Southbridge - Southbridge Academy,02770525,"","","","","","","","","","", 1
3.6053333333333337,3.61,a-cgpr-i1,2022-23,Southbridge - Southbridge High School,02770515, 5.7, 14.9, 0.0, 33.3, 5.7, 1.1, 6.9, 4.6, 8.0, 19.5, 87
5.168,5,a-cgpr-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 20.3, 25.0, 0.5, 13.5, 4.9, 2.5, 30.2, 2.2, 0.5, 0.3, 364
5.104000000000001,5,a-cgpr-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 34.8, 32.6, 0.0, 8.7, 2.2, 0.0, 17.4, 2.2, 2.2, 0.0, 46
4.794666666666667,4.79,a-cgpr-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 16.5, 18.0, 0.7, 13.9, 4.5, 0.0, 36.3, 3.0, 0.0, 7.1, 267
4.501333333333334,4.5,a-cgpr-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 25.6, 30.0, 0.0, 12.2, 2.2, 0.0, 14.4, 3.3, 0.0, 12.2, 90
5.173333333333333,5,a-cgpr-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 16.4, 22.4, 0.0, 13.4, 0.0, 3.0, 41.8, 0.0, 1.5, 1.5, 67
4.6080000000000005,4.61,a-cgpr-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 24.3, 24.3, 0.0, 10.8, 8.1, 0.0, 18.9, 2.7, 0.0, 10.8, 37
5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 53.3, 0.0, 0.0, 46.7, 0.0, 0.0, 0.0, 15
5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 10.5, 0.0, 52.6, 5.3, 0.0, 31.6, 0.0, 0.0, 0.0, 19
4.650666666666667,4.65,a-cgpr-i1,2022-23,Springfield - High School Of Commerce,02810510, 12.8, 15.9, 1.5, 31.8, 6.2, 0.0, 19.0, 1.5, 6.7, 4.6, 195
5.136,5,a-cgpr-i1,2022-23,Springfield - John J Duggan Academy,02810320, 27.2, 11.1, 3.7, 42.0, 0.0, 0.0, 12.3, 2.5, 0.0, 1.2, 81
0.0,1,a-cgpr-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560,"","","","","","","","","","", 5
5.056000000000001,5,a-cgpr-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 20.1, 10.5, 1.0, 33.2, 1.6, 0.0, 28.4, 1.6, 1.0, 2.6, 313
4.24,4.24,a-cgpr-i1,2022-23,Springfield - Springfield Central High,02810500, 17.6, 8.2, 1.7, 24.9, 2.8, 0.0, 24.3, 2.2, 2.8, 15.5, 465
4.698666666666667,4.7,a-cgpr-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 2.9, 2.9, 17.6, 0.0, 0.0, 64.7, 0.0, 2.9, 8.8, 34
4.341333333333334,4.34,a-cgpr-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 8.9, 5.7, 0.4, 25.1, 5.7, 0.0, 35.6, 2.0, 0.0, 16.6, 247
5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 13
4.362666666666667,4.36,a-cgpr-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 54.5, 0.0, 27.3, 0.0, 0.0, 18.2, 11
5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 27.8, 19.4, 0.0, 25.0, 12.5, 0.0, 15.3, 0.0, 0.0, 0.0, 72
4.8,4.8,a-cgpr-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 15.0, 0.0, 0.0, 20.0, 0.0, 0.0, 55.0, 0.0, 5.0, 5.0, 20
4.954666666666667,4.95,a-cgpr-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 36.9, 25.0, 1.2, 28.6, 0.0, 0.0, 1.2, 2.4, 0.0, 4.8, 84
4.352,4.35,a-cgpr-i1,2022-23,Stoneham - Stoneham High,02840505, 27.7, 50.4, 0.0, 1.4, 1.4, 0.0, 0.7, 1.4, 0.0, 17.0, 141
4.8213333333333335,4.82,a-cgpr-i1,2022-23,Stoughton - Stoughton High,02850505, 32.3, 32.3, 0.9, 12.9, 0.0, 0.9, 11.1, 1.4, 0.5, 7.8, 217
5.066666666666666,5,a-cgpr-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 47.3, 35.7, 0.0, 7.2, 0.5, 0.0, 4.3, 0.5, 2.4, 1.9, 207
5.333333333333333,5,a-cgpr-i1,2022-23,Sutton - Sutton High School,02900510, 41.6, 44.9, 1.1, 3.4, 1.1, 0.0, 7.9, 0.0, 0.0, 0.0, 89
4.976,4.98,a-cgpr-i1,2022-23,Swampscott - Swampscott High,02910505, 50.0, 34.0, 0.0, 3.3, 2.0, 0.0, 4.0, 0.7, 2.7, 3.3, 150
4.320000000000001,4.32,a-cgpr-i1,2022-23,Swansea - Joseph Case High,02920505, 22.6, 24.5, 0.0, 19.8, 4.7, 0.0, 9.4, 0.9, 0.0, 17.9, 106
3.6533333333333333,3.65,a-cgpr-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.3, 36.9, 0.0, 12.1, 7.1, 1.5, 10.6, 0.9, 14.2, 16.5, 339
4.784,4.78,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 23.0, 39.4, 0.0, 18.2, 1.2, 0.0, 7.9, 1.2, 3.6, 5.5, 165
4.917333333333334,4.92,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 14.9, 13.9, 0.0, 22.8, 6.9, 0.0, 33.7, 1.0, 3.0, 4.0, 101
5.333333333333333,5,a-cgpr-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 5.9, 0.0, 26.5, 0.0, 0.0, 67.6, 0.0, 0.0, 0.0, 34
5.290666666666667,5,a-cgpr-i1,2022-23,Taunton - Taunton High,02930505, 16.2, 33.2, 0.0, 19.4, 1.1, 0.0, 29.3, 0.9, 0.0, 0.0, 458
4.9706666666666655,4.97,a-cgpr-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 42.9, 32.8, 0.0, 6.3, 1.1, 0.0, 10.1, 2.1, 3.7, 1.1, 189
5.263999999999999,5,a-cgpr-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 19.0, 20.9, 0.0, 9.5, 2.8, 0.5, 46.0, 0.5, 0.0, 0.9, 211
4.954666666666667,4.95,a-cgpr-i1,2022-23,Triton - Triton Regional High School,07730505, 28.4, 33.7, 0.6, 8.9, 5.9, 0.6, 14.8, 1.2, 5.9, 0.0, 169
5.2266666666666675,5,a-cgpr-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 29.1, 39.8, 1.0, 18.4, 1.9, 0.0, 7.8, 0.0, 0.0, 1.9, 103
4.842666666666667,4.84,a-cgpr-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 13.8, 16.4, 1.3, 7.9, 0.7, 4.6, 46.1, 7.2, 0.7, 1.3, 152
5.327999999999999,5,a-cgpr-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 44.4, 0.0, 44.4, 0.0, 0.0, 11.1, 0.0, 0.0, 0.0, 9
5.189333333333334,5,a-cgpr-i1,2022-23,Uxbridge - Uxbridge High,03040505, 29.4, 33.0, 0.9, 9.2, 3.7, 0.0, 21.1, 2.8, 0.0, 0.0, 109
5.173333333333334,5,a-cgpr-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 38.5, 40.9, 0.0, 9.9, 1.7, 0.4, 5.6, 1.3, 1.3, 0.4, 467
4.687999999999999,4.69,a-cgpr-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 41.4, 33.3, 0.0, 5.1, 0.5, 1.5, 6.1, 0.5, 0.5, 11.1, 198
4.922666666666667,4.92,a-cgpr-i1,2022-23,Walpole - Walpole High,03070505, 42.2, 40.2, 0.0, 4.1, 2.9, 2.9, 0.0, 1.2, 3.3, 3.3, 244
5.184,5,a-cgpr-i1,2022-23,Waltham - Waltham Sr High,03080505, 29.8, 25.1, 0.6, 12.7, 2.2, 0.6, 26.2, 1.4, 0.6, 1.1, 363
5.328,5,a-cgpr-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 22.2, 37.0, 0.0, 11.1, 0.0, 0.0, 29.6, 0.0, 0.0, 0.0, 54
2.224,2.22,a-cgpr-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 41.7, 0.0, 58.3, 0.0, 12
5.136000000000001,5,a-cgpr-i1,2022-23,Wareham - Wareham Senior High,03100505, 13.6, 48.1, 0.0, 3.7, 7.4, 0.0, 23.5, 1.2, 0.0, 2.5, 81
4.581333333333333,4.58,a-cgpr-i1,2022-23,Watertown - Watertown High,03140505, 36.2, 38.9, 0.0, 7.4, 0.0, 0.0, 3.4, 0.7, 0.7, 12.8, 149
5.216,5,a-cgpr-i1,2022-23,Wayland - Wayland High School,03150505, 47.6, 48.1, 0.0, 0.0, 1.6, 0.0, 0.5, 0.0, 0.5, 1.6, 187
5.1306666666666665,5,a-cgpr-i1,2022-23,Webster - Bartlett High School,03160505, 28.2, 30.8, 0.0, 14.1, 0.0, 0.0, 23.1, 0.0, 2.6, 1.3, 78
5.226666666666666,5,a-cgpr-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 67.0, 28.2, 0.0, 0.6, 1.1, 0.0, 1.1, 0.0, 0.9, 1.1, 351
4.976,4.98,a-cgpr-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 76.7, 0.0, 10.0, 3.3, 0.0, 3.3, 0.0, 3.3, 3.3, 60
5.167999999999998,5,a-cgpr-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 33.3, 43.4, 0.0, 6.1, 4.0, 0.0, 10.1, 0.0, 2.0, 1.0, 99
5.269333333333334,5,a-cgpr-i1,2022-23,West Springfield - West Springfield High,03320505, 22.7, 22.3, 0.0, 29.7, 7.4, 0.0, 16.7, 1.1, 0.0, 0.0, 269
5.093333333333334,5,a-cgpr-i1,2022-23,Westborough - Westborough High,03210505, 42.1, 45.2, 0.0, 3.5, 0.0, 0.8, 3.9, 0.8, 2.3, 1.5, 259
5.007999999999999,5,a-cgpr-i1,2022-23,Westfield - Westfield High,03250505, 23.7, 27.9, 0.9, 26.5, 2.8, 0.0, 12.1, 2.8, 1.4, 1.9, 215
4.784,4.78,a-cgpr-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 4.8, 17.5, 0.0, 12.7, 6.3, 0.0, 48.4, 4.8, 4.0, 1.6, 126
4.741333333333333,4.74,a-cgpr-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 22.2, 0.0, 0.0, 66.7, 0.0, 0.0, 11.1, 9
5.173333333333333,5,a-cgpr-i1,2022-23,Westford - Westford Academy,03260505, 43.8, 47.4, 0.0, 2.2, 1.0, 0.7, 1.9, 0.0, 0.5, 2.6, 418
5.301333333333333,5,a-cgpr-i1,2022-23,Weston - Weston High,03300505, 63.0, 31.2, 0.0, 2.6, 1.3, 0.0, 1.3, 0.0, 0.6, 0.0, 154
5.247999999999999,5,a-cgpr-i1,2022-23,Westport - Westport Middle-High School,03310515, 20.0, 29.2, 1.5, 16.9, 3.1, 0.0, 27.7, 1.5, 0.0, 0.0, 65
5.178666666666667,5,a-cgpr-i1,2022-23,Westwood - Westwood High,03350505, 53.6, 41.1, 0.4, 1.6, 0.0, 0.0, 0.4, 0.0, 2.8, 0.0, 248
4.757333333333333,4.76,a-cgpr-i1,2022-23,Weymouth - Weymouth High School,03360505, 28.4, 24.9, 0.0, 11.7, 3.4, 1.5, 19.3, 4.9, 3.2, 2.7, 409
5.200000000000001,5,a-cgpr-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 28.4, 30.5, 0.0, 13.1, 6.7, 3.9, 14.9, 2.1, 0.0, 0.4, 282
4.88,4.88,a-cgpr-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 13.5, 18.5, 0.0, 23.5, 2.5, 0.0, 33.5, 2.5, 6.0, 0.0, 319
5.221333333333333,5,a-cgpr-i1,2022-23,Wilmington - Wilmington High,03420505, 46.1, 33.5, 0.5, 10.5, 2.1, 0.0, 5.2, 1.0, 0.5, 0.5, 191
4.8,4.8,a-cgpr-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 10.0, 0.0, 10
4.970666666666667,4.97,a-cgpr-i1,2022-23,Winchendon - Murdock High School,03430515, 13.3, 33.3, 0.0, 24.4, 0.0, 0.0, 22.2, 0.0, 6.7, 0.0, 45
5.210666666666666,5,a-cgpr-i1,2022-23,Winchester - Winchester High School,03440505, 44.8, 47.8, 0.6, 2.4, 0.6, 0.0, 1.5, 0.0, 1.5, 0.9, 337
4.5440000000000005,4.54,a-cgpr-i1,2022-23,Winthrop - Winthrop High School,03460505, 38.3, 26.6, 0.8, 7.0, 2.3, 0.0, 10.2, 2.3, 0.8, 11.7, 128
4.970666666666667,4.97,a-cgpr-i1,2022-23,Woburn - Woburn High,03470505, 31.1, 33.7, 0.0, 9.5, 7.2, 0.0, 11.7, 2.3, 0.0, 4.5, 264
4.746666666666667,4.75,a-cgpr-i1,2022-23,Worcester - Burncoat Senior High,03480503, 12.1, 20.4, 0.0, 31.7, 7.9, 1.1, 15.8, 0.8, 1.1, 9.1, 265
5.1146666666666665,5,a-cgpr-i1,2022-23,Worcester - Claremont Academy,03480350, 5.5, 24.7, 0.0, 27.4, 12.3, 0.0, 26.0, 0.0, 1.4, 2.7, 73
4.933333333333333,4.93,a-cgpr-i1,2022-23,Worcester - Doherty Memorial High,03480512, 22.8, 20.7, 0.3, 26.9, 8.5, 0.0, 13.3, 2.0, 1.7, 3.7, 294
4.938666666666667,4.94,a-cgpr-i1,2022-23,Worcester - North High,03480515, 12.1, 18.0, 0.0, 33.1, 8.8, 0.4, 20.2, 2.9, 1.1, 3.3, 272
4.8,4.8,a-cgpr-i1,2022-23,Worcester - South High Community,03480520, 12.3, 25.5, 0.3, 18.9, 13.5, 0.0, 19.5, 2.8, 0.6, 6.6, 318
5.2,5,a-cgpr-i1,2022-23,Worcester - University Pk Campus School,03480285, 23.1, 51.3, 0.0, 7.7, 2.6, 0.0, 12.8, 0.0, 0.0, 2.6, 39
5.029333333333333,5,a-cgpr-i1,2022-23,Worcester - Worcester Technical High,03480605, 19.9, 37.8, 0.6, 13.8, 0.3, 1.4, 20.5, 1.7, 0.6, 3.5, 347

1 Raw likert calculation Likert Score Admin Data Item Academic Year School Name DESE ID 4 Year Private College 4 Year Public College 2 Year Private College 2 Year Public College Other Post Secondary Apprenticeship Work Military Other Unknown Total
2382 5.045333333333334 5 a-cgpr-i1 2021-22 Worcester - South High Community 03480520 15.6 18.6 0.0 28.7 5.4 0.6 25.7 2.1 1.2 2.1 334
2383 5.007999999999999 5 a-cgpr-i1 2021-22 Worcester - University Pk Campus School 03480285 21.2 39.4 0.0 18.2 0.0 3.0 12.1 3.0 3.0 0.0 33
2384 4.848 4.85 a-cgpr-i1 2021-22 Worcester - Worcester Technical High 03480605 11.4 36.1 0.0 19.3 2.8 1.4 19.9 2.3 0.0 6.8 352
2385 5.157333333333334 5 a-cgpr-i1 2022-23 Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School 04450105 23.9 55.7 0.0 11.4 3.4 0.0 2.3 0.0 3.4 0.0 88
2386 4.458666666666667 4.46 a-cgpr-i1 2022-23 Abington - Abington High 00010505 28.6 48.9 0.0 3.8 1.5 0.8 0.0 1.5 0.0 15.0 133
2387 5.327999999999999 5 a-cgpr-i1 2022-23 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 04120530 34.6 40.4 3.8 9.6 0.0 9.6 1.9 0.0 0.0 0.0 52
2388 5.061333333333334 5 a-cgpr-i1 2022-23 Acton-Boxborough - Acton-Boxborough Regional High 06000505 45.2 47.2 0.0 1.6 0.0 0.2 0.7 0.0 0.9 4.3 445
2389 5.290666666666667 5 a-cgpr-i1 2022-23 Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School 04300305 46.4 47.1 0.0 3.6 0.7 0.0 1.4 0.7 0.0 0.0 138
2390 5.130666666666667 5 a-cgpr-i1 2022-23 Agawam - Agawam High 00050505 28.1 31.5 0.0 18.7 0.4 0.9 16.6 1.3 0.0 2.6 235
2391 4.928 4.93 a-cgpr-i1 2022-23 Amesbury - Amesbury High 00070505 27.9 38.5 0.0 12.5 4.8 1.0 7.7 1.0 5.8 1.0 104
2392 0.0 1 a-cgpr-i1 2022-23 Amesbury - Amesbury Innovation High School 00070515 3
2393 4.384 4.38 a-cgpr-i1 2022-23 Amherst-Pelham - Amherst Regional High 06050505 36.6 29.7 0.5 9.4 2.5 0.5 3.0 0.0 0.5 17.3 202
2394 5.12 5 a-cgpr-i1 2022-23 Andover - Andover High 00090505 48.3 38.8 0.0 5.5 0.5 0.0 2.9 0.0 1.4 2.6 420
2395 5.210666666666667 5 a-cgpr-i1 2022-23 Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School 35090305 0.0 20.9 0.0 60.5 0.0 0.0 16.3 2.3 0.0 0.0 43
2396 5.002666666666666 5 a-cgpr-i1 2022-23 Arlington - Arlington High 00100505 43.2 41.0 0.0 3.3 1.4 1.1 3.8 0.0 5.4 0.8 368
2397 5.168 5 a-cgpr-i1 2022-23 Ashburnham-Westminster - Oakmont Regional High School 06100505 28.8 43.6 0.0 10.4 1.8 0.0 12.3 1.8 0.0 1.2 163
2398 5.215999999999999 5 a-cgpr-i1 2022-23 Ashland - Ashland High 00140505 34.3 48.3 0.0 9.6 1.1 0.6 3.9 0.6 1.1 0.6 178
2399 5.104 5 a-cgpr-i1 2022-23 Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School 08010605 19.1 15.6 0.0 7.8 1.2 0.0 52.0 2.3 0.4 1.6 256
2400 5.114666666666667 5 a-cgpr-i1 2022-23 Athol-Royalston - Athol High 06150505 5.5 16.4 0.0 17.8 0.0 0.0 56.2 4.1 0.0 0.0 73
2401 5.061333333333334 5 a-cgpr-i1 2022-23 Atlantis Charter (District) - Atlantis Charter School 04910550 15.6 32.5 0.0 29.9 6.5 3.9 6.5 1.3 0.0 3.9 77
2402 4.421333333333334 4.42 a-cgpr-i1 2022-23 Attleboro - Attleboro Community Academy 00160515 0.0 2.4 0.0 12.2 4.9 4.9 58.5 2.4 9.8 4.9 41
2403 5.0986666666666665 5 a-cgpr-i1 2022-23 Attleboro - Attleboro High 00160505 25.6 26.9 0.0 17.8 4.7 0.0 20.6 2.9 1.0 0.5 383
2404 2.6666666666666665 2.67 a-cgpr-i1 2022-23 Attleboro - Attleboro Virtual Academy 00160705 0.0 0.0 0.0 8.3 0.0 0.0 41.7 8.3 41.7 0.0 12
2405 5.024 5 a-cgpr-i1 2022-23 Auburn - Auburn Senior High 00170505 22.9 47.9 0.0 10.9 2.6 0.0 9.9 1.0 0.5 4.2 192
2406 4.976 4.98 a-cgpr-i1 2022-23 Avon - Avon Middle High School 00180510 2.2 48.9 0.0 22.2 0.0 0.0 20.0 2.2 2.2 2.2 45
2407 4.842666666666666 4.84 a-cgpr-i1 2022-23 Ayer Shirley School District - Ayer Shirley Regional High School 06160505 27.9 44.2 0.0 10.5 1.2 1.2 5.8 5.8 1.2 2.3 86
2408 2.1279999999999997 2.13 a-cgpr-i1 2022-23 Barnstable - Barnstable High 00200505 13.1 16.2 1.2 6.7 0.9 0.0 1.8 0.9 0.6 58.5 328
2409 4.992 4.99 a-cgpr-i1 2022-23 Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School 35020405 48.9 6.4 0.0 29.8 8.5 0.0 0.0 6.4 0.0 0.0 47
2410 5.061333333333334 5 a-cgpr-i1 2022-23 Bedford - Bedford High 00230505 38.7 47.2 0.0 7.0 0.0 0.0 2.0 0.0 4.5 0.5 199
2411 5.050666666666666 5 a-cgpr-i1 2022-23 Belchertown - Belchertown High 00240505 32.4 26.5 0.0 22.9 3.5 1.2 8.2 0.6 1.2 3.5 170
2412 4.602666666666667 4.6 a-cgpr-i1 2022-23 Bellingham - Bellingham High School 00250505 26.5 41.0 0.9 3.4 3.4 0.0 11.1 3.4 0.0 10.3 117
2413 0.0 1 a-cgpr-i1 2022-23 Bellingham - Keough Memorial Academy 00250510 5
2414 5.061333333333334 5 a-cgpr-i1 2022-23 Belmont - Belmont High 00260505 57.6 33.1 0.0 1.3 1.0 0.0 1.9 0.3 4.1 0.6 314
2415 4.954666666666665 4.95 a-cgpr-i1 2022-23 Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School 04140305 28.6 50.0 3.6 7.1 3.6 0.0 0.0 0.0 0.0 7.1 28
2416 4.992 4.99 a-cgpr-i1 2022-23 Berkshire Hills - Monument Mt Regional High 06180505 33.9 29.4 0.0 9.2 3.7 0.0 17.4 1.8 4.6 0.0 109
2417 5.066666666666666 5 a-cgpr-i1 2022-23 Berlin-Boylston - Tahanto Regional High 06200505 41.7 38.3 0.0 10.0 0.0 0.0 5.0 0.0 5.0 0.0 60
2418 4.357333333333333 4.36 a-cgpr-i1 2022-23 Beverly - Beverly High 00300505 28.1 39.4 0.6 5.0 0.0 1.3 7.3 0.6 5.0 12.6 317
2419 5.157333333333335 5 a-cgpr-i1 2022-23 Billerica - Billerica Memorial High School 00310505 34.7 37.6 0.0 11.3 4.7 0.7 7.7 1.1 1.5 0.7 274
2420 5.082666666666668 5 a-cgpr-i1 2022-23 Blackstone Valley Regional Vocational Technical - Blackstone Valley 08050605 40.5 32.7 0.0 4.4 1.4 5.4 10.9 2.0 2.7 0.0 294
2421 5.002666666666667 5 a-cgpr-i1 2022-23 Blackstone-Millville - Blackstone Millville RHS 06220505 34.7 22.1 1.1 8.4 5.3 1.1 21.1 1.1 5.3 0.0 95
2422 4.949333333333334 4.95 a-cgpr-i1 2022-23 Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical 08060605 26.2 27.2 1.0 15.5 1.5 0.0 21.4 2.4 0.0 4.9 206
2423 4.688000000000001 4.69 a-cgpr-i1 2022-23 Boston - Another Course To College 00350541 15.5 29.3 1.7 29.3 5.2 0.0 6.9 1.7 3.4 6.9 58
2424 2.538666666666667 2.54 a-cgpr-i1 2022-23 Boston - Boston Adult Tech Academy 00350548 0.0 7.6 1.9 21.9 7.6 0.0 8.6 4.8 1.0 46.7 105
2425 4.730666666666667 4.73 a-cgpr-i1 2022-23 Boston - Boston Arts Academy 00350546 29.6 35.7 0.0 15.3 2.0 0.0 6.1 0.0 4.1 7.1 98
2426 1.4453333333333334 1.45 a-cgpr-i1 2022-23 Boston - Boston Collaborative High School 00350755 0.0 2.4 0.0 5.9 4.7 1.2 12.9 0.0 2.4 70.6 85
2427 4.096 4.1 a-cgpr-i1 2022-23 Boston - Boston Community Leadership Academy 00350558 20.5 19.6 0.9 25.9 3.6 0.0 6.3 1.8 3.6 17.9 112
2428 4.1226666666666665 4.12 a-cgpr-i1 2022-23 Boston - Boston International High School & Newcomers Academy 00350507 18.7 13.3 4.0 17.3 2.7 0.0 21.3 2.7 1.3 18.7 75
2429 5.034666666666667 5 a-cgpr-i1 2022-23 Boston - Boston Latin Academy 00350545 48.7 38.0 0.0 3.7 1.3 1.0 1.7 0.7 0.7 4.3 300
2430 5.136000000000001 5 a-cgpr-i1 2022-23 Boston - Boston Latin School 00350560 58.3 34.1 0.2 0.7 2.0 0.0 1.0 0.2 1.0 2.4 410
2431 4.191999999999999 4.19 a-cgpr-i1 2022-23 Boston - Brighton High School 00350505 6.5 18.7 1.9 29.0 1.9 1.9 18.7 0.9 5.6 15.0 107
2432 4.101333333333334 4.1 a-cgpr-i1 2022-23 Boston - Burke High School 00350525 6.4 37.2 0.0 12.8 3.8 2.6 14.1 6.4 3.8 12.8 78
2433 3.6533333333333333 3.65 a-cgpr-i1 2022-23 Boston - Charlestown High School 00350515 10.2 19.7 0.0 16.8 5.8 0.7 15.3 2.2 5.1 24.1 137
2434 2.970666666666667 2.97 a-cgpr-i1 2022-23 Boston - Community Academy 00350518 5.6 11.1 0.0 0.0 5.6 5.6 27.8 0.0 5.6 38.9 18
2435 3.7920000000000003 3.79 a-cgpr-i1 2022-23 Boston - Community Academy of Science and Health 00350581 4.4 20.0 2.2 31.1 6.7 0.0 6.7 0.0 2.2 26.7 45
2436 4.453333333333333 4.45 a-cgpr-i1 2022-23 Boston - Dearborn 6-12 STEM Academy 00350074 8.2 20.5 1.4 24.7 6.8 2.7 19.2 0.0 0.0 16.4 73
2437 3.9519999999999995 3.95 a-cgpr-i1 2022-23 Boston - East Boston High School 00350530 13.5 14.8 1.7 12.2 6.6 1.3 24.0 0.9 5.2 19.7 229
2438 4.698666666666666 4.7 a-cgpr-i1 2022-23 Boston - English High School 00350535 9.5 24.6 1.6 38.9 2.4 0.8 10.3 1.6 2.4 7.9 126
2439 3.7813333333333334 3.78 a-cgpr-i1 2022-23 Boston - Excel High School 00350522 9.3 18.6 2.3 15.1 5.8 3.5 16.3 4.7 4.7 19.8 86
2440 4.426666666666667 4.43 a-cgpr-i1 2022-23 Boston - Fenway High School 00350540 31.3 24.1 0.0 9.6 8.4 0.0 9.6 0.0 0.0 16.9 83
2441 1.7226666666666668 1.72 a-cgpr-i1 2022-23 Boston - Greater Egleston High School 00350543 0.0 8.8 0.0 11.8 8.8 0.0 2.9 2.9 0.0 64.7 34
2442 4.757333333333333 4.76 a-cgpr-i1 2022-23 Boston - Henderson K-12 Inclusion School Upper 00350426 16.9 27.7 4.6 24.6 9.2 0.0 6.2 1.5 0.0 9.2 65
2443 0.0 1 a-cgpr-i1 2022-23 Boston - Horace Mann School for the Deaf Hard of Hearing 00350750 2
2444 3.936 3.94 a-cgpr-i1 2022-23 Boston - Lyon High School 00350655 13.0 30.4 0.0 17.4 4.3 0.0 8.7 0.0 0.0 26.1 23
2445 4.1706666666666665 4.17 a-cgpr-i1 2022-23 Boston - Madison Park Technical Vocational High School 00350537 6.6 9.8 1.1 19.7 2.2 4.4 34.4 2.7 4.4 14.8 183
2446 4.181333333333334 4.18 a-cgpr-i1 2022-23 Boston - Margarita Muniz Academy 00350549 12.3 41.5 1.5 15.4 1.5 0.0 6.2 3.1 1.5 16.9 65
2447 2.464 2.46 a-cgpr-i1 2022-23 Boston - McKinley Schools 00350363 0.0 7.7 0.0 15.4 0.0 0.0 23.1 0.0 0.0 53.8 13
2448 5.114666666666667 5 a-cgpr-i1 2022-23 Boston - New Mission High School 00350542 37.1 25.8 0.0 15.5 10.3 0.0 7.2 0.0 1.0 3.1 97
2449 5.109333333333334 5 a-cgpr-i1 2022-23 Boston - O'Bryant School of Math & Science 00350575 43.4 33.0 0.3 9.7 6.9 0.0 2.5 1.3 0.9 1.9 318
2450 4.997333333333334 5.0 a-cgpr-i1 2022-23 Boston - Quincy Upper School 00350565 22.6 35.5 6.5 12.9 9.7 6.5 0.0 0.0 3.2 3.2 31
2451 4.117333333333334 4.12 a-cgpr-i1 2022-23 Boston - Snowden International High School 00350690 18.5 30.4 1.1 12.0 6.5 0.0 8.7 0.0 3.3 19.6 92
2452 4.634666666666667 4.63 a-cgpr-i1 2022-23 Boston - TechBoston Academy 00350657 16.4 18.8 1.6 25.0 6.3 4.7 14.1 1.6 3.1 8.6 128
2453 4.906666666666666 4.91 a-cgpr-i1 2022-23 Boston Collegiate Charter (District) - Boston Collegiate Charter School 04490305 36.8 44.7 0.0 1.3 0.0 3.9 5.3 0.0 7.9 0.0 76
2454 5.008 5 a-cgpr-i1 2022-23 Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School 04240505 4.1 8.2 0.0 36.7 10.2 16.3 18.4 0.0 6.1 0.0 49
2455 4.586666666666666 4.59 a-cgpr-i1 2022-23 Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School 04110305 33.3 24.6 1.8 10.5 15.8 0.0 0.0 0.0 1.8 12.3 57
2456 5.093333333333334 5 a-cgpr-i1 2022-23 Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School 04160305 23.2 53.6 4.3 13.0 0.0 0.0 1.4 0.0 0.0 4.3 69
2457 4.421333333333334 4.42 a-cgpr-i1 2022-23 Bourne - Bourne High School 00360505 22.7 38.6 0.0 11.4 0.0 0.0 10.2 3.4 0.0 13.6 88
2458 5.28 5 a-cgpr-i1 2022-23 Braintree - Braintree High 00400505 39.1 37.3 0.0 6.8 5.5 0.0 10.3 0.5 0.0 0.5 399
2459 4.618666666666666 4.62 a-cgpr-i1 2022-23 Bridgewater-Raynham - Bridgewater-Raynham Regional 06250505 34.6 34.9 2.2 7.3 1.0 0.6 6.0 3.8 0.0 9.5 315
2460 0.0 1 a-cgpr-i1 2022-23 Bridgewater-Raynham - Therapeutic Day School 06250415 1
2461 5.12 5 a-cgpr-i1 2022-23 Bristol County Agricultural - Bristol County Agricultural High 09100705 18.6 30.4 0.0 17.6 1.0 0.0 28.4 2.0 2.0 0.0 102
2462 4.816 4.82 a-cgpr-i1 2022-23 Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical 08100605 11.9 20.3 0.6 8.7 6.4 9.6 32.8 2.9 0.3 6.4 311
2463 4.266666666666667 4.27 a-cgpr-i1 2022-23 Brockton - Brockton Champion High School 00440515 0.0 8.0 0.0 28.0 20.0 0.0 24.0 8.0 0.0 12.0 25
2464 4.656 4.66 a-cgpr-i1 2022-23 Brockton - Brockton High 00440505 14.7 25.5 0.3 27.1 7.9 0.1 11.7 2.9 1.6 8.2 760
2465 4.367999999999999 4.37 a-cgpr-i1 2022-23 Brockton - Brockton Virtual Learning Academy 00440705 0.0 36.4 0.0 18.2 9.1 0.0 18.2 0.0 9.1 9.1 11
2466 4.250666666666667 4.25 a-cgpr-i1 2022-23 Brockton - Edison Academy 00440520 0.0 1.3 0.0 30.7 21.6 0.0 26.1 5.2 0.0 15.0 153
2467 0.0 1 a-cgpr-i1 2022-23 Brockton - Huntington Therapeutic Day School 00440400 1
2468 4.901333333333333 4.9 a-cgpr-i1 2022-23 Brooke Charter School (District) - Brooke Charter School 04280305 30.6 43.9 0.0 11.2 0.0 3.1 3.1 0.0 0.0 8.2 98
2469 5.12 5 a-cgpr-i1 2022-23 Brookline - Brookline High 00460505 51.7 33.3 0.6 6.9 0.2 0.2 3.1 0.0 3.6 0.4 478
2470 4.992000000000001 4.99 a-cgpr-i1 2022-23 Burlington - Burlington High 00480505 34.1 44.7 0.0 12.0 2.8 0.0 0.0 0.5 6.0 0.0 217
2471 5.077333333333333 5 a-cgpr-i1 2022-23 Cambridge - Cambridge Rindge and Latin 00490506 47.3 29.7 0.0 9.5 2.6 1.1 5.0 0.2 2.2 2.4 461
2472 5.258666666666667 5 a-cgpr-i1 2022-23 Canton - Canton High 00500505 41.0 48.8 1.0 0.0 0.5 0.0 7.3 1.0 0.0 0.5 205
2473 2.672 2.67 a-cgpr-i1 2022-23 Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical 08150605 7.7 10.3 0.0 7.1 1.9 0.0 23.1 1.9 4.5 43.6 156
2474 5.029333333333333 5 a-cgpr-i1 2022-23 Carver - Carver Middle/High School 00520405 25.0 28.4 1.1 11.4 9.1 0.0 19.3 3.4 0.0 2.3 88
2475 5.290666666666667 5 a-cgpr-i1 2022-23 Central Berkshire - Wahconah Regional High 06350505 27.3 37.3 0.9 15.5 6.4 0.0 11.8 0.9 0.0 0.0 110
2476 4.501333333333333 4.5 a-cgpr-i1 2022-23 Chelmsford - Chelmsford High 00560505 45.6 30.1 0.6 2.6 0.3 0.0 5.2 1.3 0.3 13.9 309
2477 5.2 5 a-cgpr-i1 2022-23 Chelsea - Chelsea High 00570505 14.0 16.6 0.0 30.3 5.2 3.0 28.4 0.7 0.7 1.1 271
2478 5.333333333333333 5 a-cgpr-i1 2022-23 Chelsea - Chelsea Opportunity Academy 00570515 0.0 3.0 3.0 45.5 9.1 3.0 36.4 0.0 0.0 0.0 33
2479 5.333333333333333 5 a-cgpr-i1 2022-23 Chelsea - Chelsea Virtual Learning Academy 00570705 0.0 13.3 0.0 13.3 0.0 6.7 66.7 0.0 0.0 0.0 15
2480 3.6693333333333333 3.67 a-cgpr-i1 2022-23 Chicopee - Chicopee Academy 00610021 0.0 0.0 0.0 25.0 0.0 0.0 43.8 0.0 0.0 31.3 16
2481 3.76 3.76 a-cgpr-i1 2022-23 Chicopee - Chicopee Comprehensive High School 00610510 11.5 19.8 0.0 24.5 2.8 1.6 10.3 2.0 4.7 22.9 253
2482 4.490666666666666 4.49 a-cgpr-i1 2022-23 Chicopee - Chicopee High 00610505 20.5 14.6 0.0 32.4 1.6 0.0 15.1 2.7 0.0 13.0 185
2483 5.3279999999999985 5 a-cgpr-i1 2022-23 City on a Hill Charter Public School (District) - City on a Hill Charter Public School 04370505 17.1 25.7 0.0 31.4 0.0 8.6 17.1 0.0 0.0 0.0 35
2484 5.290666666666666 5 a-cgpr-i1 2022-23 Clinton - Clinton Senior High 00640505 31.3 27.7 2.7 9.8 1.8 0.0 25.9 0.0 0.0 0.9 112
2485 4.933333333333334 4.93 a-cgpr-i1 2022-23 Codman Academy Charter Public (District) - Codman Academy Charter Public School 04380505 25.9 44.4 0.0 11.1 7.4 0.0 3.7 3.7 0.0 3.7 27
2486 5.008 5 a-cgpr-i1 2022-23 Cohasset - Cohasset High School 00650505 57.0 36.0 0.0 0.0 0.9 0.0 0.0 0.9 0.9 4.4 114
2487 4.5440000000000005 4.54 a-cgpr-i1 2022-23 Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell 35030205 22.2 63.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 11.1 27
2488 5.136000000000001 5 a-cgpr-i1 2022-23 Community Charter School of Cambridge (District) - Community Charter School of Cambridge 04360305 25.9 51.9 0.0 7.4 3.7 0.0 7.4 0.0 3.7 0.0 27
2489 5.205333333333334 5 a-cgpr-i1 2022-23 Concord-Carlisle - Concord Carlisle High 06400505 61.3 32.1 0.0 2.4 0.3 0.0 1.5 0.0 0.6 1.8 336
2490 5.248000000000001 5 a-cgpr-i1 2022-23 Danvers - Danvers High 00710505 40.0 34.2 0.0 7.4 0.0 7.9 8.9 0.5 1.1 0.0 190
2491 4.842666666666667 4.84 a-cgpr-i1 2022-23 Dartmouth - Dartmouth High 00720505 22.8 40.9 0.4 17.7 3.0 0.0 6.0 2.6 3.9 2.6 232
2492 4.368 4.37 a-cgpr-i1 2022-23 Dedham - Dedham High 00730505 22.7 47.1 0.0 8.7 1.7 0.0 1.7 1.2 0.0 16.9 172
2493 4.938666666666666 4.94 a-cgpr-i1 2022-23 Dennis-Yarmouth - Dennis-Yarmouth Regional High 06450505 25.7 28.4 0.0 18.9 2.0 0.7 16.9 3.4 0.7 3.4 148
2494 5.269333333333334 5 a-cgpr-i1 2022-23 Dighton-Rehoboth - Dighton-Rehoboth Regional High School 06500505 20.3 38.6 0.7 14.4 2.6 0.0 22.2 1.3 0.0 0.0 153
2495 5.077333333333333 5 a-cgpr-i1 2022-23 Douglas - Douglas High School 00770505 25.6 29.3 0.0 9.8 6.1 0.0 24.4 1.2 0.0 3.7 82
2496 5.301333333333334 5 a-cgpr-i1 2022-23 Dover-Sherborn - Dover-Sherborn Regional High 06550505 62.4 32.9 0.0 0.7 0.7 0.0 2.7 0.0 0.7 0.0 149
2497 4.912000000000001 4.91 a-cgpr-i1 2022-23 Dracut - Dracut Senior High 00790505 23.4 38.8 1.1 17.6 5.3 0.0 5.9 1.6 4.8 1.6 188
2498 4.922666666666666 4.92 a-cgpr-i1 2022-23 Dudley-Charlton Reg - Shepherd Hill Regional High 06580505 35.8 29.2 0.0 11.3 4.2 0.0 11.8 2.4 0.9 4.2 212
2499 5.328000000000001 5 a-cgpr-i1 2022-23 Duxbury - Duxbury High 00820505 56.6 36.7 0.0 0.9 1.3 0.0 4.4 0.0 0.0 0.0 226
2500 5.093333333333334 5 a-cgpr-i1 2022-23 East Bridgewater - East Bridgewater JR./SR. High School 00830505 29.7 40.5 0.0 5.7 8.2 0.0 11.4 0.6 3.2 0.6 158
2501 4.922666666666665 4.92 a-cgpr-i1 2022-23 East Longmeadow - East Longmeadow High 00870505 28.4 26.5 1.4 20.9 3.3 0.0 11.8 2.4 5.2 0.0 211
2502 4.986666666666666 4.99 a-cgpr-i1 2022-23 Easthampton - Easthampton High 00860505 4.3 50.5 0.0 12.9 0.0 0.0 25.8 1.1 4.3 1.1 93
2503 4.8 4.8 a-cgpr-i1 2022-23 Easton - Oliver Ames High 00880505 39.3 43.7 0.0 3.3 3.7 0.0 0.0 1.5 7.8 0.7 270
2504 5.072 5 a-cgpr-i1 2022-23 Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School 04520505 21.7 34.9 1.2 26.5 4.8 3.6 2.4 0.0 2.4 2.4 83
2505 4.938666666666666 4.94 a-cgpr-i1 2022-23 Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School 08170505 22.6 38.4 0.0 8.7 0.0 0.0 22.9 0.8 6.1 0.5 393
2506 0.0 1 a-cgpr-i1 2022-23 Everett - Devens School 00930030 2
2507 3.9573333333333336 3.96 a-cgpr-i1 2022-23 Everett - Everett High 00930505 14.9 27.5 0.0 9.6 0.0 7.8 14.4 0.0 0.0 25.7 436
2508 5.168 5 a-cgpr-i1 2022-23 Excel Academy Charter (District) - Excel Academy Charter School 04100205 37.9 19.9 1.2 16.8 9.9 1.9 9.3 2.5 0.0 0.6 161
2509 5.034666666666667 5 a-cgpr-i1 2022-23 Fairhaven - Fairhaven High 00940505 20.9 46.6 1.2 14.7 0.6 0.0 10.4 0.6 4.9 0.0 163
2510 4.933333333333334 4.93 a-cgpr-i1 2022-23 Fall River - B M C Durfee High 00950505 9.3 16.1 2.3 31.3 2.3 0.6 30.6 2.5 1.2 3.7 483
2511 4.32 4.32 a-cgpr-i1 2022-23 Fall River - Resiliency Preparatory Academy 00950525 0.0 0.0 0.0 35.1 5.4 5.4 35.1 0.0 2.7 16.2 37
2512 0.0 1 a-cgpr-i1 2022-23 Fall River - Stone PK-12 School 00950340 5
2513 5.141333333333334 5 a-cgpr-i1 2022-23 Falmouth - Falmouth High 00960505 31.1 42.6 0.0 7.9 3.2 0.0 11.6 2.1 1.6 0.0 190
2514 5.189333333333334 5 a-cgpr-i1 2022-23 Fitchburg - Fitchburg High 00970505 8.8 39.1 0.4 29.1 1.9 0.0 18.0 1.5 0.0 1.1 261
2515 5.247999999999999 5 a-cgpr-i1 2022-23 Fitchburg - Goodrich Academy 00970510 0.0 8.1 0.0 20.7 1.5 0.0 68.1 0.0 0.7 0.7 135
2516 5.024 5 a-cgpr-i1 2022-23 Four Rivers Charter Public (District) - Four Rivers Charter Public School 04130505 32.4 32.4 0.0 23.5 5.9 0.0 0.0 0.0 0.0 5.9 34
2517 5.061333333333334 5 a-cgpr-i1 2022-23 Foxborough - Foxborough High 00990505 41.8 43.5 0.0 4.5 1.7 0.0 3.4 0.6 1.7 2.8 177
2518 5.093333333333334 5 a-cgpr-i1 2022-23 Foxborough Regional Charter (District) - Foxborough Regional Charter School 04460550 46.5 38.4 0.0 4.7 4.7 0.0 1.2 1.2 0.0 3.5 86
2519 5.237333333333334 5 a-cgpr-i1 2022-23 Framingham - Framingham High School 01000515 20.4 37.2 0.2 11.6 4.8 0.0 24.0 1.1 0.6 0.2 545
2520 5.242666666666666 5 a-cgpr-i1 2022-23 Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School 04780505 50.0 37.1 0.0 1.6 4.8 0.0 4.8 0.0 1.6 0.0 62
2521 5.087999999999999 5 a-cgpr-i1 2022-23 Franklin - Franklin High 01010505 42.0 46.1 0.0 3.8 0.7 0.7 2.1 0.5 3.1 1.0 421
2522 4.725333333333333 4.73 a-cgpr-i1 2022-23 Franklin County Regional Vocational Technical - Franklin County Technical 08180605 4.8 4.8 1.6 12.1 0.0 0.0 65.3 5.6 5.6 0.0 124
2523 5.333333333333332 5 a-cgpr-i1 2022-23 Freetown-Lakeville - Apponequet Regional High 06650505 27.2 38.6 0.0 16.3 3.3 1.6 13.0 0.0 0.0 0.0 184
2524 4.970666666666667 4.97 a-cgpr-i1 2022-23 Frontier - Frontier Regional 06700505 31.8 28.4 1.1 18.2 2.3 0.0 11.4 3.4 1.1 2.3 88
2525 5.333333333333333 5 a-cgpr-i1 2022-23 Gardner - Gardner Academy for Learning and Technology 01030515 3.6 23.6 0.0 25.5 0.0 0.0 47.3 0.0 0.0 0.0 55
2526 4.485333333333334 4.49 a-cgpr-i1 2022-23 Gardner - Gardner High 01030505 7.9 32.5 0.0 27.0 4.0 0.0 12.7 2.4 4.8 8.7 126
2527 5.082666666666666 5 a-cgpr-i1 2022-23 Gateway - Gateway Regional High 06720505 22.0 22.0 0.0 17.1 4.9 0.0 29.3 4.9 0.0 0.0 41
2528 4.714666666666667 4.71 a-cgpr-i1 2022-23 Georgetown - Georgetown High School 01050505 28.2 42.3 0.0 6.4 0.0 0.0 11.5 0.0 2.6 9.0 78
2529 5.1626666666666665 5 a-cgpr-i1 2022-23 Gill-Montague - Turners Fall High 06740505 32.3 9.7 0.0 25.8 0.0 0.0 29.0 3.2 0.0 0.0 31
2530 5.210666666666666 5 a-cgpr-i1 2022-23 Global Learning Charter Public (District) - Global Learning Charter Public School 04960305 9.3 30.2 0.0 32.6 0.0 0.0 25.6 2.3 0.0 0.0 43
2531 4.768000000000001 4.77 a-cgpr-i1 2022-23 Gloucester - Gloucester High 01070505 29.8 21.0 0.0 7.7 11.0 0.0 19.9 1.7 1.7 7.2 181
2532 5.216 5 a-cgpr-i1 2022-23 Grafton - Grafton High School 01100505 33.8 42.1 0.0 7.0 0.9 0.0 14.0 0.4 0.4 1.3 228
2533 4.954666666666667 4.95 a-cgpr-i1 2022-23 Granby - Granby Jr Sr High School 01110505 35.7 12.5 0.0 19.6 5.4 3.6 16.1 0.0 0.0 7.1 56
2534 4.0 4.0 a-cgpr-i1 2022-23 Greater Commonwealth Virtual District - Greater Commonwealth Virtual School 39010900 13.6 18.2 0.0 16.7 4.5 0.0 22.0 1.5 6.8 16.7 132
2535 4.672 4.67 a-cgpr-i1 2022-23 Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High 08210605 6.0 23.2 0.3 15.2 1.9 14.0 27.0 4.1 0.0 8.3 315
2536 5.1786666666666665 5 a-cgpr-i1 2022-23 Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical 08230605 12.2 16.2 0.0 20.4 1.7 19.7 26.9 1.5 0.2 1.2 402
2537 4.522666666666667 4.52 a-cgpr-i1 2022-23 Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical 08280605 7.2 20.6 0.4 22.1 4.0 0.0 30.5 3.0 11.8 0.4 525
2538 5.258666666666667 5 a-cgpr-i1 2022-23 Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical 08250605 4.9 29.9 0.0 20.5 2.5 0.0 40.8 1.3 0.0 0.0 448
2539 5.178666666666667 5 a-cgpr-i1 2022-23 Greenfield - Greenfield High 01140505 19.1 8.8 1.5 41.2 0.0 0.0 26.5 1.5 1.5 0.0 68
2540 5.082666666666667 5 a-cgpr-i1 2022-23 Groton-Dunstable - Groton Dunstable Regional 06730505 38.1 45.2 0.0 5.4 3.0 0.0 3.6 1.2 1.2 2.4 168
2541 5.184 5 a-cgpr-i1 2022-23 Hadley - Hopkins Academy 01170505 43.2 32.4 0.0 13.5 5.4 0.0 2.7 0.0 2.7 0.0 37
2542 5.200000000000001 5 a-cgpr-i1 2022-23 Hamilton-Wenham - Hamilton-Wenham Regional High 06750505 55.1 31.4 0.0 5.9 1.7 0.0 3.4 0.0 0.0 2.5 118
2543 5.253333333333333 5 a-cgpr-i1 2022-23 Hampden Charter School of Science East (District) - Hampden Charter School of Science East 04990305 54.7 31.3 0.0 10.9 0.0 0.0 1.6 1.6 0.0 0.0 64
2544 5.333333333333333 5 a-cgpr-i1 2022-23 Hampden Charter School of Science West (District) - Hampden Charter School of Science West 35160305 68.0 8.0 0.0 20.0 4.0 0.0 0.0 0.0 0.0 0.0 25
2545 5.077333333333335 5 a-cgpr-i1 2022-23 Hampden-Wilbraham - Minnechaug Regional High 06800505 36.7 26.7 0.5 18.1 1.4 1.4 10.4 0.9 2.3 1.8 221
2546 4.896 4.9 a-cgpr-i1 2022-23 Hampshire - Hampshire Regional High 06830505 33.7 21.4 0.0 26.5 2.0 0.0 8.2 3.1 4.1 1.0 98
2547 5.013333333333333 5 a-cgpr-i1 2022-23 Hanover - Hanover High 01220505 44.3 39.5 0.6 3.0 1.8 0.0 4.8 2.4 3.0 0.6 167
2548 4.981333333333334 4.98 a-cgpr-i1 2022-23 Harvard - Bromfield 01250505 44.7 48.7 0.0 0.0 0.0 0.0 0.0 0.0 0.0 6.6 76
2549 4.666666666666667 4.67 a-cgpr-i1 2022-23 Hatfield - Smith Academy 01270505 29.2 20.8 0.0 33.3 0.0 0.0 4.2 0.0 0.0 12.5 24
2550 5.333333333333333 5 a-cgpr-i1 2022-23 Haverhill - Gateway Academy 01280515 0.0 0.0 0.0 30.0 20.0 0.0 50.0 0.0 0.0 0.0 10
2551 5.109333333333334 5 a-cgpr-i1 2022-23 Haverhill - Haverhill High 01280505 13.3 17.5 0.0 35.1 8.9 0.0 21.0 2.2 1.7 0.2 405
2552 5.04 5 a-cgpr-i1 2022-23 Hingham - Hingham High 01310505 51.1 39.4 0.6 0.0 0.9 0.9 1.6 0.0 0.9 4.4 317
2553 5.1946666666666665 5 a-cgpr-i1 2022-23 Holbrook - Holbrook Middle High School 01330505 14.1 42.3 1.3 5.1 12.8 0.0 21.8 1.3 1.3 0.0 78
2554 5.221333333333332 5 a-cgpr-i1 2022-23 Holliston - Holliston High 01360505 47.9 42.3 0.0 1.0 2.6 0.0 4.1 0.0 0.0 2.1 194
2555 4.928 4.93 a-cgpr-i1 2022-23 Holyoke - Holyoke High 01370505 10.1 14.8 0.9 31.1 7.2 0.6 27.7 2.5 0.0 5.0 318
2556 4.458666666666667 4.46 a-cgpr-i1 2022-23 Hoosac Valley Regional - Hoosac Valley High School 06030505 22.4 34.7 2.0 6.1 4.1 0.0 14.3 2.0 2.0 12.2 49
2557 4.218666666666667 4.22 a-cgpr-i1 2022-23 Hopedale - Hopedale Jr Sr High 01380505 45.2 27.4 0.0 6.5 0.0 0.0 0.0 4.8 16.1 0.0 62
2558 4.986666666666666 4.99 a-cgpr-i1 2022-23 Hopkinton - Hopkinton High 01390505 45.2 46.1 0.0 0.6 0.6 0.0 1.0 1.0 4.5 1.0 310
2559 5.269333333333332 5 a-cgpr-i1 2022-23 Hudson - Hudson High 01410505 35.3 28.8 0.0 11.1 0.7 0.0 22.9 0.7 0.7 0.0 153
2560 5.248 5 a-cgpr-i1 2022-23 Hull - Hull High 01420505 26.7 45.0 0.0 8.3 10.0 1.7 6.7 0.0 0.0 1.7 60
2561 5.008 5 a-cgpr-i1 2022-23 Innovation Academy Charter (District) - Innovation Academy Charter School 04350305 33.7 36.1 0.0 10.8 0.0 0.0 13.3 1.2 4.8 0.0 83
2562 5.072 5 a-cgpr-i1 2022-23 Ipswich - Ipswich High 01440505 36.7 44.2 0.0 10.8 1.7 0.0 1.7 1.7 0.0 3.3 120
2563 5.237333333333334 5 a-cgpr-i1 2022-23 KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School 04290010 34.6 44.9 0.0 4.7 14.0 0.0 0.0 0.0 0.9 0.9 107
2564 4.794666666666666 4.79 a-cgpr-i1 2022-23 King Philip - King Philip Regional High 06900505 39.6 44.9 0.0 2.3 0.8 0.0 2.3 0.8 0.8 8.7 265
2565 2.6453333333333333 2.65 a-cgpr-i1 2022-23 Lawrence - High School Learning Center 01490536 0.9 7.5 0.0 15.0 10.3 0.0 15.9 0.9 2.8 46.7 107
2566 4.469333333333334 4.47 a-cgpr-i1 2022-23 Lawrence - Lawrence High School 01490515 9.3 21.1 0.2 26.3 19.2 0.2 7.5 1.4 4.4 10.5 589
2567 0.0 1 a-cgpr-i1 2022-23 Lawrence - RISE Academy 01490615 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 100.0 11
2568 0.0 1 a-cgpr-i1 2022-23 Lawrence - School for Exceptional Studies 01490537 2
2569 5.237333333333333 5 a-cgpr-i1 2022-23 Lee - Lee Middle/High School 01500505 13.8 34.5 1.7 13.8 10.3 0.0 24.1 0.0 1.7 0.0 58
2570 5.168 5 a-cgpr-i1 2022-23 Leicester - Leicester High 01510505 32.0 23.7 0.0 15.5 1.0 0.0 24.7 3.1 0.0 0.0 97
2571 4.656000000000001 4.66 a-cgpr-i1 2022-23 Lenox - Lenox Memorial High 01520505 71.4 0.0 0.0 15.9 0.0 0.0 0.0 0.0 0.0 12.7 63
2572 4.848 4.85 a-cgpr-i1 2022-23 Leominster - Center For Technical Education Innovation 01530605 8.5 25.4 0.0 16.2 0.0 8.5 32.3 5.4 3.8 0.0 130
2573 3.2 3.2 a-cgpr-i1 2022-23 Leominster - Leominster Center for Excellence 01530515 0.0 0.0 10.0 10.0 0.0 10.0 30.0 0.0 40.0 0.0 10
2574 4.736 4.74 a-cgpr-i1 2022-23 Leominster - Leominster High School 01530505 14.2 44.3 0.0 15.2 1.0 0.3 13.8 2.4 8.7 0.0 289
2575 5.162666666666667 5 a-cgpr-i1 2022-23 Lexington - Lexington High 01550505 58.0 36.0 0.0 1.7 0.2 0.0 0.9 0.5 1.6 1.0 572
2576 5.274666666666667 5 a-cgpr-i1 2022-23 Lincoln-Sudbury - Lincoln-Sudbury Regional High 06950505 58.4 34.9 0.0 2.8 0.8 0.3 1.7 0.3 0.8 0.0 358
2577 5.338666666666668 5 a-cgpr-i1 2022-23 Littleton - Littleton High School 01580505 44.8 46.7 0.0 2.9 0.0 0.0 5.7 0.0 0.0 0.0 105
2578 4.650666666666668 4.65 a-cgpr-i1 2022-23 Longmeadow - Longmeadow High 01590505 51.2 25.1 0.0 9.0 1.4 0.0 0.5 1.4 2.8 8.5 211
2579 0.0 1 a-cgpr-i1 2022-23 Lowell - Leblanc Therapeutic Day School 01600320 4
2580 5.114666666666667 5 a-cgpr-i1 2022-23 Lowell - Lowell High 01600505 13.3 28.7 0.2 27.7 7.5 3.8 14.7 2.1 1.0 1.0 585
2581 5.114666666666667 5 a-cgpr-i1 2022-23 Lowell - The Career Academy 01600515 0.0 0.0 0.0 0.0 0.0 0.0 95.9 2.0 0.0 2.0 49
2582 2.9226666666666667 2.92 a-cgpr-i1 2022-23 Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School 04580505 0.0 0.0 0.0 16.1 0.0 0.0 38.7 0.0 3.2 41.9 31
2583 4.778666666666667 4.78 a-cgpr-i1 2022-23 Ludlow - Ludlow Senior High 01610505 30.9 25.7 0.0 20.9 4.2 0.0 7.9 5.8 4.7 0.0 191
2584 5.168 5 a-cgpr-i1 2022-23 Lunenburg - Lunenburg High 01620505 20.6 53.6 0.0 10.3 0.0 0.0 12.4 1.0 0.0 2.1 97
2585 5.1466666666666665 5 a-cgpr-i1 2022-23 Lynn - Classical High 01630505 13.0 24.6 0.2 24.9 9.2 0.2 24.4 1.0 1.4 1.0 414
2586 5.056 5 a-cgpr-i1 2022-23 Lynn - Fecteau-Leary Junior/Senior High School 01630525 5.3 5.3 0.0 36.8 0.0 0.0 47.4 0.0 0.0 5.3 19
2587 4.368 4.37 a-cgpr-i1 2022-23 Lynn - Lynn English High 01630510 16.4 20.8 0.8 21.9 1.6 0.3 20.1 0.0 6.8 11.5 384
2588 5.1466666666666665 5 a-cgpr-i1 2022-23 Lynn - Lynn Vocational Technical Institute 01630605 10.0 15.1 0.0 23.5 4.4 7.6 35.9 2.8 0.4 0.4 251
2589 5.253333333333333 5 a-cgpr-i1 2022-23 Lynnfield - Lynnfield High 01640505 48.5 44.8 0.0 1.5 1.5 0.0 2.2 0.0 0.7 0.7 134
2590 5.333333333333333 5 a-cgpr-i1 2022-23 Ma Academy for Math and Science - Ma Academy for Math and Science School 04680505 0.0 100.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 50
2591 4.794666666666667 4.79 a-cgpr-i1 2022-23 Malden - Malden High 01650505 18.5 34.4 0.5 17.0 3.5 1.0 15.0 0.5 4.7 5.0 401
2592 5.029333333333333 5 a-cgpr-i1 2022-23 Manchester Essex Regional - Manchester Essex Regional High School 06980510 46.3 40.7 0.8 0.8 0.8 0.0 4.9 0.8 0.8 4.1 123
2593 5.2266666666666675 5 a-cgpr-i1 2022-23 Mansfield - Mansfield High 01670505 36.2 44.5 0.0 5.2 4.5 1.4 6.2 0.3 0.3 1.4 290
2594 5.135999999999999 5 a-cgpr-i1 2022-23 Map Academy Charter School (District) - Map Academy Charter School 35170505 1.9 0.0 0.0 33.3 31.5 0.0 29.6 1.9 1.9 0.0 54
2595 4.8693333333333335 4.87 a-cgpr-i1 2022-23 Marblehead - Marblehead High 01680505 44.5 39.5 0.0 3.2 1.8 0.0 2.3 0.5 0.5 7.7 220
2596 4.810666666666666 4.81 a-cgpr-i1 2022-23 Marlborough - Marlborough High 01700505 16.7 29.7 2.7 16.7 0.0 0.8 23.6 1.9 0.4 7.6 263
2597 4.597333333333333 4.6 a-cgpr-i1 2022-23 Marshfield - Marshfield High 01710505 45.8 30.3 1.7 1.3 0.7 2.4 4.0 2.4 1.7 9.8 297
2598 4.981333333333334 4.98 a-cgpr-i1 2022-23 Martha's Vineyard - Martha's Vineyard Regional High 07000505 33.0 33.0 0.0 5.0 2.8 0.0 19.6 1.1 2.8 2.8 179
2599 4.741333333333333 4.74 a-cgpr-i1 2022-23 Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School 04660550 55.6 11.1 0.0 0.0 0.0 0.0 22.2 0.0 11.1 0.0 9
2600 5.157333333333334 5 a-cgpr-i1 2022-23 Masconomet - Masconomet Regional High School 07050505 54.9 33.1 0.4 5.3 1.5 0.0 1.5 0.8 0.8 1.9 266
2601 4.997333333333333 5.0 a-cgpr-i1 2022-23 Mashpee - Mashpee Middle-High School 01720505 25.7 41.3 0.0 13.8 0.0 2.8 10.1 3.7 2.8 0.0 109
2602 5.157333333333335 5 a-cgpr-i1 2022-23 Match Charter Public School (District) - Match Charter Public School 04690505 45.8 44.1 0.0 3.4 0.0 0.0 3.4 0.0 3.4 0.0 59
2603 4.373333333333333 4.37 a-cgpr-i1 2022-23 Maynard - Maynard High 01740505 26.4 37.5 0.0 5.6 0.0 0.0 12.5 0.0 8.3 9.7 72
2604 5.114666666666667 5 a-cgpr-i1 2022-23 Medfield - Medfield Senior High 01750505 50.5 43.4 0.0 1.5 0.5 0.0 0.0 0.0 3.0 1.0 198
2605 0.0 1 a-cgpr-i1 2022-23 Medford - Curtis-Tufts 01760510 2
2606 4.970666666666667 4.97 a-cgpr-i1 2022-23 Medford - Medford High 01760505 26.4 31.6 0.0 12.1 4.2 0.7 18.2 1.0 3.9 2.0 307
2607 5.135999999999999 5 a-cgpr-i1 2022-23 Medway - Medway High 01770505 44.1 38.5 0.6 2.5 2.5 0.0 8.1 0.6 0.0 3.1 161
2608 4.773333333333334 4.77 a-cgpr-i1 2022-23 Melrose - Melrose High 01780505 46.8 37.6 0.0 3.7 1.4 0.0 0.0 0.5 6.4 3.7 218
2609 4.650666666666666 4.65 a-cgpr-i1 2022-23 Mendon-Upton - Nipmuc Regional High 07100510 37.9 40.7 0.0 3.6 0.0 0.7 4.3 0.7 5.0 7.1 140
2610 4.741333333333333 4.74 a-cgpr-i1 2022-23 Methuen - Methuen High 01810505 18.2 23.8 0.6 22.5 8.4 0.0 15.4 2.2 0.0 8.9 462
2611 4.4479999999999995 4.45 a-cgpr-i1 2022-23 Middleborough - Middleborough High 01820505 28.4 34.5 1.0 8.2 7.2 0.0 4.1 0.5 15.5 0.5 194
2612 3.6373333333333333 3.64 a-cgpr-i1 2022-23 Milford - Milford High 01850505 22.6 30.7 0.0 8.7 4.5 1.4 0.3 0.7 1.4 29.6 287
2613 4.256 4.26 a-cgpr-i1 2022-23 Millbury - Millbury Junior/Senior High 01860505 26.6 36.3 0.0 14.5 2.4 0.0 0.0 1.6 17.7 0.8 124
2614 4.672 4.67 a-cgpr-i1 2022-23 Millis - Millis High School 01870505 49.3 34.2 0.0 0.0 0.0 0.0 4.1 0.0 4.1 8.2 73
2615 0.0 1 a-cgpr-i1 2022-23 Millis - TIES 01870515 1
2616 5.029333333333333 5 a-cgpr-i1 2022-23 Milton - Milton High 01890505 45.5 38.7 0.0 5.6 1.1 1.5 1.9 0.8 3.0 1.9 266
2617 3.8880000000000003 3.89 a-cgpr-i1 2022-23 Minuteman Regional Vocational Technical - Minuteman Regional High 08300605 20.9 23.6 0.0 14.2 3.4 10.8 0.0 3.4 6.1 17.6 148
2618 4.48 4.48 a-cgpr-i1 2022-23 Mohawk Trail - Mohawk Trail Regional School 07170505 20.0 16.0 0.0 44.0 0.0 4.0 0.0 0.0 12.0 4.0 25
2619 5.0133333333333345 5 a-cgpr-i1 2022-23 Monomoy Regional School District - Monomoy Regional High School 07120515 42.4 18.6 0.0 22.9 4.2 0.0 5.9 4.2 1.7 0.0 118
2620 3.9626666666666672 3.96 a-cgpr-i1 2022-23 Monson - Monson High School 01910505 14.3 22.9 0.0 37.1 0.0 0.0 0.0 5.7 17.1 2.9 35
2621 4.538666666666666 4.54 a-cgpr-i1 2022-23 Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical 08320605 12.3 25.9 0.9 15.1 0.3 0.3 30.3 2.2 3.8 8.8 317
2622 5.136000000000001 5 a-cgpr-i1 2022-23 Mount Greylock - Mt Greylock Regional High 07150505 56.1 25.6 0.0 7.3 2.4 0.0 4.9 1.2 2.4 0.0 82
2623 5.333333333333333 5 a-cgpr-i1 2022-23 Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School 04700105 45.8 54.2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 72
2624 5.04 5 a-cgpr-i1 2022-23 Nantucket - Nantucket High 01970505 26.9 33.8 2.8 6.2 3.4 0.0 21.4 2.1 3.4 0.0 145
2625 4.725333333333333 4.73 a-cgpr-i1 2022-23 Narragansett - Narragansett Regional High 07200505 16.1 30.6 0.0 16.1 11.3 0.0 14.5 1.6 1.6 8.1 62
2626 5.056 5 a-cgpr-i1 2022-23 Nashoba - Nashoba Regional 07250505 43.8 41.1 0.0 5.2 1.6 0.0 3.1 0.0 4.2 1.0 192
2627 5.103999999999999 5 a-cgpr-i1 2022-23 Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School 08520605 15.6 22.5 1.3 11.9 6.3 10.0 28.1 0.0 0.0 4.4 160
2628 5.173333333333333 5 a-cgpr-i1 2022-23 Natick - Natick High 01980505 41.4 45.6 0.0 4.2 0.5 1.3 4.0 0.8 1.9 0.3 377
2629 4.927999999999999 4.93 a-cgpr-i1 2022-23 Nauset - Nauset Regional High 06600505 38.9 34.8 1.0 7.6 0.5 0.0 9.6 1.0 5.6 1.0 198
2630 5.077333333333333 5 a-cgpr-i1 2022-23 Needham - Needham High 01990505 53.6 38.1 0.3 1.6 0.3 0.5 0.8 0.3 1.3 3.2 375
2631 4.943999999999999 4.94 a-cgpr-i1 2022-23 Neighborhood House Charter (District) - Neighborhood House Charter School 04440205 10.9 36.4 1.8 10.9 23.6 0.0 9.1 0.0 0.0 7.3 55
2632 4.826666666666667 4.83 a-cgpr-i1 2022-23 New Bedford - New Bedford High 02010505 6.8 18.6 0.0 30.4 7.5 0.2 27.0 2.3 2.6 4.6 570
2633 5.333333333333333 5 a-cgpr-i1 2022-23 New Bedford - Trinity Day Academy 02010510 0.0 0.0 0.0 66.7 0.0 0.0 33.3 0.0 0.0 0.0 9
2634 5.2 5 a-cgpr-i1 2022-23 New Bedford - Whaling City Junior/Senior High School 02010515 0.0 17.1 0.0 26.8 2.4 0.0 51.2 0.0 0.0 2.4 41
2635 5.333333333333333 5 a-cgpr-i1 2022-23 New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton 35130305 0.0 62.5 0.0 37.5 0.0 0.0 0.0 0.0 0.0 0.0 80
2636 4.949333333333334 4.95 a-cgpr-i1 2022-23 Newburyport - Newburyport High 02040505 41.1 40.6 0.0 6.3 0.5 0.0 4.3 1.4 4.8 1.0 207
2637 4.970666666666667 4.97 a-cgpr-i1 2022-23 Newton - Newton North High 02070505 54.0 34.2 0.2 2.6 0.0 0.0 2.2 0.4 3.3 3.1 491
2638 4.746666666666666 4.75 a-cgpr-i1 2022-23 Newton - Newton South High 02070510 59.6 25.7 1.1 1.5 0.0 0.0 1.1 0.8 5.3 5.1 475
2639 5.013333333333334 5 a-cgpr-i1 2022-23 Norfolk County Agricultural - Norfolk County Agricultural 09150705 22.0 41.7 0.0 9.8 0.0 2.3 18.2 3.0 0.8 2.3 132
2640 4.373333333333333 4.37 a-cgpr-i1 2022-23 North Adams - Drury High 02090505 19.7 23.0 1.6 3.3 9.8 0.0 24.6 3.3 9.8 4.9 61
2641 5.050666666666666 5 a-cgpr-i1 2022-23 North Andover - North Andover High 02110505 35.4 45.7 0.3 5.0 2.3 0.0 6.0 1.0 1.7 2.6 302
2642 4.959999999999999 4.96 a-cgpr-i1 2022-23 North Attleborough - North Attleboro High 02120505 32.3 44.4 0.0 6.6 0.8 0.0 8.9 1.2 0.0 5.8 257
2643 4.1066666666666665 4.11 a-cgpr-i1 2022-23 North Brookfield - North Brookfield High 02150505 0.0 46.2 0.0 30.8 0.0 0.0 0.0 0.0 0.0 23.1 13
2644 4.96 4.96 a-cgpr-i1 2022-23 North Middlesex - North Middlesex Regional 07350505 22.2 43.3 0.0 11.1 4.7 0.0 11.7 1.8 0.0 5.3 171
2645 5.2426666666666675 5 a-cgpr-i1 2022-23 North Reading - North Reading High 02170505 45.7 41.6 0.0 3.5 2.3 0.0 5.2 0.6 0.6 0.6 173
2646 4.896 4.9 a-cgpr-i1 2022-23 Northampton - Northampton High 02100505 39.9 29.2 0.0 12.0 1.3 0.0 9.4 0.4 5.6 2.1 233
2647 4.666666666666667 4.67 a-cgpr-i1 2022-23 Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High 04060705 8.6 11.7 0.8 8.6 3.1 0.0 54.7 5.5 0.8 6.3 128
2648 5.296 5 a-cgpr-i1 2022-23 Northboro-Southboro - Algonquin Regional High 07300505 53.2 34.3 0.3 2.2 0.6 0.0 8.7 0.3 0.3 0.0 312
2649 5.290666666666667 5 a-cgpr-i1 2022-23 Northbridge - Northbridge High 02140505 16.0 35.2 0.0 19.2 8.0 0.0 20.8 0.8 0.0 0.0 125
2650 4.938666666666666 4.94 a-cgpr-i1 2022-23 Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational 08530605 17.8 15.7 0.4 9.6 4.3 1.4 43.4 1.1 0.4 6.0 281
2651 5.034666666666667 5 a-cgpr-i1 2022-23 Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical 08510605 16.3 29.3 0.0 10.6 1.6 0.8 35.8 4.9 0.0 0.8 123
2652 4.8053333333333335 4.81 a-cgpr-i1 2022-23 Norton - Norton High 02180505 36.8 33.7 0.0 6.7 4.3 0.0 8.6 1.8 4.9 3.1 163
2653 5.088000000000001 5 a-cgpr-i1 2022-23 Norwell - Norwell High 02190505 53.7 35.6 0.7 2.7 2.0 0.0 0.7 1.3 2.0 1.3 149
2654 5.184 5 a-cgpr-i1 2022-23 Norwood - Norwood High 02200505 35.4 33.9 0.0 8.9 8.9 0.0 10.1 1.9 0.8 0.0 257
2655 5.173333333333333 5 a-cgpr-i1 2022-23 Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical 08550605 16.4 32.1 1.4 12.1 0.0 0.0 35.0 1.4 1.4 0.0 140
2656 4.757333333333333 4.76 a-cgpr-i1 2022-23 Old Rochester - Old Rochester Regional High 07400505 37.7 35.3 1.8 5.4 2.4 1.8 4.8 1.2 3.6 6.0 167
2657 4.613333333333332 4.61 a-cgpr-i1 2022-23 Oxford - Oxford High 02260505 27.5 18.8 0.0 26.3 1.3 1.3 11.3 1.3 2.5 10.0 80
2658 5.253333333333333 5 a-cgpr-i1 2022-23 Palmer - Palmer High 02270505 14.8 19.7 0.0 27.9 6.6 0.0 29.5 1.6 0.0 0.0 61
2659 4.224 4.22 a-cgpr-i1 2022-23 Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical 08600605 15.2 12.0 0.0 16.0 0.0 5.6 30.4 2.4 0.0 18.4 125
2660 4.874666666666666 4.87 a-cgpr-i1 2022-23 Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School 35010505 23.4 10.6 0.0 53.2 0.0 2.1 2.1 2.1 6.4 0.0 47
2661 5.333333333333333 5 a-cgpr-i1 2022-23 Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.) 02290705 25.0 0.0 0.0 33.3 0.0 0.0 41.7 0.0 0.0 0.0 12
2662 5.114666666666667 5 a-cgpr-i1 2022-23 Peabody - Peabody Veterans Memorial High 02290510 28.6 30.3 0.0 14.2 4.6 2.0 16.2 1.4 0.0 2.6 346
2663 4.213333333333333 4.21 a-cgpr-i1 2022-23 Pembroke - Pembroke High School 02310505 44.1 31.3 3.6 0.0 0.0 0.0 0.0 0.0 0.0 21.0 195
2664 4.810666666666667 4.81 a-cgpr-i1 2022-23 Pentucket - Pentucket Regional Sr High 07450505 41.6 34.4 0.0 8.4 1.3 0.0 4.5 3.2 3.2 3.2 154
2665 5.333333333333333 5 a-cgpr-i1 2022-23 Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea 04930505 0.0 28.6 0.0 14.3 0.0 0.0 57.1 0.0 0.0 0.0 7
2666 4.885333333333333 4.89 a-cgpr-i1 2022-23 Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence 35180505 0.0 0.0 0.0 8.3 8.3 0.0 75.0 0.0 8.3 0.0 12
2667 3.5519999999999996 3.55 a-cgpr-i1 2022-23 Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield 35080505 0.0 33.3 0.0 22.2 0.0 0.0 11.1 11.1 22.2 0.0 9
2668 5.205333333333333 5 a-cgpr-i1 2022-23 Pioneer Charter School of Science (District) - Pioneer Charter School of Science 04940205 54.5 38.6 0.0 4.5 0.0 0.0 0.0 0.0 2.3 0.0 44
2669 5.333333333333333 5 a-cgpr-i1 2022-23 Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II 35060505 47.8 41.3 0.0 10.9 0.0 0.0 0.0 0.0 0.0 0.0 46
2670 4.890666666666667 4.89 a-cgpr-i1 2022-23 Pioneer Valley - Pioneer Valley Regional 07500505 16.3 26.5 0.0 30.6 6.1 0.0 12.2 0.0 8.2 0.0 49
2671 5.338666666666668 5 a-cgpr-i1 2022-23 Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School 04970205 63.2 31.6 0.0 5.3 0.0 0.0 0.0 0.0 0.0 0.0 19
2672 5.242666666666667 5 a-cgpr-i1 2022-23 Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School 04790505 49.1 14.0 0.0 15.8 8.8 1.8 8.8 0.0 1.8 0.0 57
2673 0.0 1 a-cgpr-i1 2022-23 Pittsfield - Eagle Education Academy 02360525 2
2674 5.0666666666666655 5 a-cgpr-i1 2022-23 Pittsfield - Pittsfield High 02360505 25.9 30.2 0.0 21.6 2.2 0.0 15.1 2.2 0.0 2.9 139
2675 5.327999999999999 5 a-cgpr-i1 2022-23 Pittsfield - Pittsfield Public Virtual Academy 02360705 8.3 25.0 0.0 8.3 8.3 0.0 50.0 0.0 0.0 0.0 12
2676 5.0986666666666665 5 a-cgpr-i1 2022-23 Pittsfield - Taconic High 02360510 16.9 15.7 0.6 28.7 8.4 1.1 24.2 1.7 0.0 2.8 178
2677 5.264000000000001 5 a-cgpr-i1 2022-23 Plymouth - Plymouth North High 02390505 23.3 34.6 0.0 7.9 8.2 0.0 24.7 1.4 0.0 0.0 292
2678 5.013333333333334 5 a-cgpr-i1 2022-23 Plymouth - Plymouth South High 02390515 25.6 29.4 0.0 9.2 4.6 0.4 24.8 5.5 0.4 0.0 238
2679 4.591999999999999 4.59 a-cgpr-i1 2022-23 Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School 04870550 25.0 42.2 1.6 14.1 1.6 0.0 1.6 0.0 1.6 12.5 64
2680 4.112 4.11 a-cgpr-i1 2022-23 Quabbin - Quabbin Regional High School 07530505 26.8 22.0 0.0 17.3 0.0 0.0 11.0 2.4 18.1 2.4 127
2681 4.768 4.77 a-cgpr-i1 2022-23 Quaboag Regional - Quaboag Regional High 07780505 24.5 26.6 0.0 14.9 1.1 0.0 22.3 0.0 0.0 10.6 94
2682 5.007999999999999 5 a-cgpr-i1 2022-23 Quincy - North Quincy High 02430510 37.0 43.1 0.3 7.5 1.5 0.0 4.5 0.9 2.1 3.0 332
2683 4.266666666666667 4.27 a-cgpr-i1 2022-23 Quincy - Quincy High 02430505 22.2 29.8 0.0 9.0 0.8 5.5 12.7 5.0 0.0 15.0 379
2684 4.298666666666667 4.3 a-cgpr-i1 2022-23 Ralph C Mahar - Ralph C Mahar Regional 07550505 18.2 22.1 0.0 16.9 0.0 0.0 23.4 5.2 0.0 14.3 77
2685 4.704 4.7 a-cgpr-i1 2022-23 Randolph - Randolph High 02440505 15.6 25.8 3.9 14.8 0.0 0.0 28.1 4.7 4.7 2.3 128
2686 5.152000000000001 5 a-cgpr-i1 2022-23 Reading - Reading Memorial High 02460505 42.9 43.5 0.0 4.4 2.4 0.0 3.4 0.7 1.4 1.4 294
2687 4.944 4.94 a-cgpr-i1 2022-23 Revere - CityLab Innovation High School 02480520 0.0 0.0 0.0 7.1 21.4 7.1 57.1 0.0 7.1 0.0 14
2688 4.890666666666666 4.89 a-cgpr-i1 2022-23 Revere - Revere High 02480505 21.2 22.6 1.6 22.9 2.3 0.5 20.6 0.9 0.9 6.5 433
2689 4.997333333333333 5.0 a-cgpr-i1 2022-23 Rising Tide Charter Public (District) - Rising Tide Charter Public School 04830305 48.4 29.7 0.0 7.8 3.1 0.0 4.7 1.6 1.6 3.1 64
2690 4.810666666666667 4.81 a-cgpr-i1 2022-23 Rockland - Rockland Senior High 02510505 25.6 30.8 0.8 10.5 6.0 0.0 16.5 3.0 5.3 1.5 133
2691 4.549333333333332 4.55 a-cgpr-i1 2022-23 Rockport - Rockport High 02520510 32.8 44.3 0.0 1.6 0.0 0.0 6.6 0.0 9.8 4.9 61
2692 5.136 5 a-cgpr-i1 2022-23 Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School 04840505 38.3 39.3 7.5 11.2 0.0 0.0 0.0 0.9 2.8 0.0 107
2693 4.517333333333333 4.52 a-cgpr-i1 2022-23 Salem - New Liberty Innovation School 02580510 0.0 0.0 0.0 38.5 30.8 0.0 15.4 0.0 7.7 7.7 13
2694 3.3493333333333335 3.35 a-cgpr-i1 2022-23 Salem - Salem High 02580505 11.0 25.2 0.5 19.7 3.2 2.3 0.9 1.8 16.1 19.3 218
2695 0.8906666666666666 1 a-cgpr-i1 2022-23 Salem - Salem Prep High School 02580515 0.0 0.0 0.0 16.7 0.0 0.0 0.0 0.0 16.7 66.7 6
2696 5.242666666666667 5 a-cgpr-i1 2022-23 Salem Academy Charter (District) - Salem Academy Charter School 04850485 41.5 53.8 0.0 0.0 1.5 0.0 1.5 1.5 0.0 0.0 65
2697 4.992000000000001 4.99 a-cgpr-i1 2022-23 Sandwich - Sandwich Middle High School 02610505 36.3 40.1 0.0 3.8 6.4 0.0 7.0 1.3 0.0 5.1 157
2698 4.933333333333334 4.93 a-cgpr-i1 2022-23 Saugus - Saugus High 02620505 26.7 29.1 0.0 14.0 9.3 0.0 13.4 2.9 2.3 2.3 172
2699 4.9866666666666655 4.99 a-cgpr-i1 2022-23 Scituate - Scituate High School 02640505 46.0 40.6 0.0 0.5 2.1 0.0 4.3 1.1 1.1 4.3 187
2700 5.050666666666666 5 a-cgpr-i1 2022-23 Seekonk - Seekonk High 02650505 0.0 34.3 0.0 41.0 6.7 0.0 12.7 0.7 4.5 0.0 134
2701 4.144 4.14 a-cgpr-i1 2022-23 Sharon - Sharon High 02660505 39.4 37.0 0.0 1.0 0.0 0.0 0.3 0.3 0.0 21.8 289
2702 5.338666666666667 5 a-cgpr-i1 2022-23 Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School 08710605 16.6 21.6 0.4 12.4 4.2 1.8 43.1 0.0 0.0 0.0 283
2703 4.9866666666666655 4.99 a-cgpr-i1 2022-23 Shrewsbury - Shrewsbury High School 02710505 0.0 84.3 0.0 7.0 0.0 1.1 1.1 0.5 2.0 3.9 440
2704 4.922666666666665 4.92 a-cgpr-i1 2022-23 Silver Lake - Silver Lake Regional High 07600505 38.3 32.0 0.8 4.3 1.2 1.6 14.1 1.6 6.3 0.0 256
2705 4.917333333333333 4.92 a-cgpr-i1 2022-23 Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School 04740505 15.8 23.7 0.0 31.6 0.0 0.0 21.1 2.6 5.3 0.0 38
2706 5.077333333333334 5 a-cgpr-i1 2022-23 Somerset Berkley Regional School District - Somerset Berkley Regional High School 07630505 28.8 36.3 0.0 11.5 6.2 0.0 12.4 0.9 1.8 2.2 226
2707 4.666666666666667 4.67 a-cgpr-i1 2022-23 Somerville - Full Circle High School 02740510 0.0 0.0 0.0 50.0 0.0 0.0 37.5 0.0 0.0 12.5 8
2708 4.6240000000000006 4.62 a-cgpr-i1 2022-23 Somerville - Somerville High 02740505 25.9 23.3 0.0 18.0 8.6 0.0 10.9 0.8 7.9 4.5 266
2709 4.778666666666667 4.78 a-cgpr-i1 2022-23 South Hadley - South Hadley High 02780505 20.0 30.4 0.0 20.8 3.2 0.0 15.2 3.2 0.8 6.4 125
2710 4.970666666666667 4.97 a-cgpr-i1 2022-23 South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School 08290605 10.3 14.3 0.6 32.6 1.7 0.0 33.7 2.3 0.0 4.6 175
2711 5.269333333333334 5 a-cgpr-i1 2022-23 South Shore Charter Public (District) - South Shore Charter Public School 04880550 27.3 49.4 0.0 3.9 0.0 1.3 16.9 0.0 1.3 0.0 77
2712 5.12 5 a-cgpr-i1 2022-23 South Shore Regional Vocational Technical - South Shore Vocational Technical High 08730605 11.7 17.5 0.0 2.6 1.9 0.6 61.7 3.2 0.6 0.0 154
2713 0.0 1 a-cgpr-i1 2022-23 Southbridge - Southbridge Academy 02770525 1
2714 3.6053333333333337 3.61 a-cgpr-i1 2022-23 Southbridge - Southbridge High School 02770515 5.7 14.9 0.0 33.3 5.7 1.1 6.9 4.6 8.0 19.5 87
2715 5.168 5 a-cgpr-i1 2022-23 Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical 08720605 20.3 25.0 0.5 13.5 4.9 2.5 30.2 2.2 0.5 0.3 364
2716 5.104000000000001 5 a-cgpr-i1 2022-23 Southern Berkshire - Mt Everett Regional 07650505 34.8 32.6 0.0 8.7 2.2 0.0 17.4 2.2 2.2 0.0 46
2717 4.794666666666667 4.79 a-cgpr-i1 2022-23 Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School 08760605 16.5 18.0 0.7 13.9 4.5 0.0 36.3 3.0 0.0 7.1 267
2718 4.501333333333334 4.5 a-cgpr-i1 2022-23 Southwick-Tolland-Granville Regional School District - Southwick Regional School 07660505 25.6 30.0 0.0 12.2 2.2 0.0 14.4 3.3 0.0 12.2 90
2719 5.173333333333333 5 a-cgpr-i1 2022-23 Spencer-E Brookfield - David Prouty High 07670505 16.4 22.4 0.0 13.4 0.0 3.0 41.8 0.0 1.5 1.5 67
2720 4.6080000000000005 4.61 a-cgpr-i1 2022-23 Springfield - Conservatory of the Arts 02810475 24.3 24.3 0.0 10.8 8.1 0.0 18.9 2.7 0.0 10.8 37
2721 5.333333333333333 5 a-cgpr-i1 2022-23 Springfield - Gateway to College at Holyoke Community College 02810575 0.0 0.0 0.0 53.3 0.0 0.0 46.7 0.0 0.0 0.0 15
2722 5.333333333333333 5 a-cgpr-i1 2022-23 Springfield - Gateway to College at Springfield Technical Community College 02810580 0.0 10.5 0.0 52.6 5.3 0.0 31.6 0.0 0.0 0.0 19
2723 4.650666666666667 4.65 a-cgpr-i1 2022-23 Springfield - High School Of Commerce 02810510 12.8 15.9 1.5 31.8 6.2 0.0 19.0 1.5 6.7 4.6 195
2724 5.136 5 a-cgpr-i1 2022-23 Springfield - John J Duggan Academy 02810320 27.2 11.1 3.7 42.0 0.0 0.0 12.3 2.5 0.0 1.2 81
2725 0.0 1 a-cgpr-i1 2022-23 Springfield - Liberty Preparatory Academy 02810560 5
2726 5.056000000000001 5 a-cgpr-i1 2022-23 Springfield - Roger L. Putnam Vocational Technical Academy 02810620 20.1 10.5 1.0 33.2 1.6 0.0 28.4 1.6 1.0 2.6 313
2727 4.24 4.24 a-cgpr-i1 2022-23 Springfield - Springfield Central High 02810500 17.6 8.2 1.7 24.9 2.8 0.0 24.3 2.2 2.8 15.5 465
2728 4.698666666666667 4.7 a-cgpr-i1 2022-23 Springfield - Springfield High School 02810570 0.0 2.9 2.9 17.6 0.0 0.0 64.7 0.0 2.9 8.8 34
2729 4.341333333333334 4.34 a-cgpr-i1 2022-23 Springfield - Springfield High School of Science and Technology 02810530 8.9 5.7 0.4 25.1 5.7 0.0 35.6 2.0 0.0 16.6 247
2730 5.333333333333333 5 a-cgpr-i1 2022-23 Springfield - Springfield International Academy at Sci-Tech 02810700 0.0 0.0 0.0 0.0 0.0 0.0 100.0 0.0 0.0 0.0 13
2731 4.362666666666667 4.36 a-cgpr-i1 2022-23 Springfield - Springfield Public Day High School 02810550 0.0 0.0 0.0 0.0 54.5 0.0 27.3 0.0 0.0 18.2 11
2732 5.333333333333333 5 a-cgpr-i1 2022-23 Springfield - The Springfield Renaissance School an Expeditionary Learning School 02810205 27.8 19.4 0.0 25.0 12.5 0.0 15.3 0.0 0.0 0.0 72
2733 4.8 4.8 a-cgpr-i1 2022-23 Springfield - The Springfield Virtual School 02810705 15.0 0.0 0.0 20.0 0.0 0.0 55.0 0.0 5.0 5.0 20
2734 4.954666666666667 4.95 a-cgpr-i1 2022-23 Springfield International Charter (District) - Springfield International Charter School 04410505 36.9 25.0 1.2 28.6 0.0 0.0 1.2 2.4 0.0 4.8 84
2735 4.352 4.35 a-cgpr-i1 2022-23 Stoneham - Stoneham High 02840505 27.7 50.4 0.0 1.4 1.4 0.0 0.7 1.4 0.0 17.0 141
2736 4.8213333333333335 4.82 a-cgpr-i1 2022-23 Stoughton - Stoughton High 02850505 32.3 32.3 0.9 12.9 0.0 0.9 11.1 1.4 0.5 7.8 217
2737 5.066666666666666 5 a-cgpr-i1 2022-23 Sturgis Charter Public (District) - Sturgis Charter Public School 04890505 47.3 35.7 0.0 7.2 0.5 0.0 4.3 0.5 2.4 1.9 207
2738 5.333333333333333 5 a-cgpr-i1 2022-23 Sutton - Sutton High School 02900510 41.6 44.9 1.1 3.4 1.1 0.0 7.9 0.0 0.0 0.0 89
2739 4.976 4.98 a-cgpr-i1 2022-23 Swampscott - Swampscott High 02910505 50.0 34.0 0.0 3.3 2.0 0.0 4.0 0.7 2.7 3.3 150
2740 4.320000000000001 4.32 a-cgpr-i1 2022-23 Swansea - Joseph Case High 02920505 22.6 24.5 0.0 19.8 4.7 0.0 9.4 0.9 0.0 17.9 106
2741 3.6533333333333333 3.65 a-cgpr-i1 2022-23 TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School 39020900 0.3 36.9 0.0 12.1 7.1 1.5 10.6 0.9 14.2 16.5 339
2742 4.784 4.78 a-cgpr-i1 2022-23 Tantasqua - Tantasqua Regional Sr High 07700505 23.0 39.4 0.0 18.2 1.2 0.0 7.9 1.2 3.6 5.5 165
2743 4.917333333333334 4.92 a-cgpr-i1 2022-23 Tantasqua - Tantasqua Regional Vocational 07700605 14.9 13.9 0.0 22.8 6.9 0.0 33.7 1.0 3.0 4.0 101
2744 5.333333333333333 5 a-cgpr-i1 2022-23 Taunton - Taunton Alternative High School 02930525 0.0 5.9 0.0 26.5 0.0 0.0 67.6 0.0 0.0 0.0 34
2745 5.290666666666667 5 a-cgpr-i1 2022-23 Taunton - Taunton High 02930505 16.2 33.2 0.0 19.4 1.1 0.0 29.3 0.9 0.0 0.0 458
2746 4.9706666666666655 4.97 a-cgpr-i1 2022-23 Tewksbury - Tewksbury Memorial High 02950505 42.9 32.8 0.0 6.3 1.1 0.0 10.1 2.1 3.7 1.1 189
2747 5.263999999999999 5 a-cgpr-i1 2022-23 Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical 08780605 19.0 20.9 0.0 9.5 2.8 0.5 46.0 0.5 0.0 0.9 211
2748 4.954666666666667 4.95 a-cgpr-i1 2022-23 Triton - Triton Regional High School 07730505 28.4 33.7 0.6 8.9 5.9 0.6 14.8 1.2 5.9 0.0 169
2749 5.2266666666666675 5 a-cgpr-i1 2022-23 Tyngsborough - Tyngsborough High School 03010505 29.1 39.8 1.0 18.4 1.9 0.0 7.8 0.0 0.0 1.9 103
2750 4.842666666666667 4.84 a-cgpr-i1 2022-23 Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical 08790605 13.8 16.4 1.3 7.9 0.7 4.6 46.1 7.2 0.7 1.3 152
2751 5.327999999999999 5 a-cgpr-i1 2022-23 Uxbridge - Gateway to College 03040515 0.0 44.4 0.0 44.4 0.0 0.0 11.1 0.0 0.0 0.0 9
2752 5.189333333333334 5 a-cgpr-i1 2022-23 Uxbridge - Uxbridge High 03040505 29.4 33.0 0.9 9.2 3.7 0.0 21.1 2.8 0.0 0.0 109
2753 5.173333333333334 5 a-cgpr-i1 2022-23 Wachusett - Wachusett Regional High 07750505 38.5 40.9 0.0 9.9 1.7 0.4 5.6 1.3 1.3 0.4 467
2754 4.687999999999999 4.69 a-cgpr-i1 2022-23 Wakefield - Wakefield Memorial High 03050505 41.4 33.3 0.0 5.1 0.5 1.5 6.1 0.5 0.5 11.1 198
2755 4.922666666666667 4.92 a-cgpr-i1 2022-23 Walpole - Walpole High 03070505 42.2 40.2 0.0 4.1 2.9 2.9 0.0 1.2 3.3 3.3 244
2756 5.184 5 a-cgpr-i1 2022-23 Waltham - Waltham Sr High 03080505 29.8 25.1 0.6 12.7 2.2 0.6 26.2 1.4 0.6 1.1 363
2757 5.328 5 a-cgpr-i1 2022-23 Ware - Ware Junior/Senior High School 03090505 22.2 37.0 0.0 11.1 0.0 0.0 29.6 0.0 0.0 0.0 54
2758 2.224 2.22 a-cgpr-i1 2022-23 Wareham - Wareham Cooperative Alternative School 03100315 0.0 0.0 0.0 0.0 0.0 0.0 41.7 0.0 58.3 0.0 12
2759 5.136000000000001 5 a-cgpr-i1 2022-23 Wareham - Wareham Senior High 03100505 13.6 48.1 0.0 3.7 7.4 0.0 23.5 1.2 0.0 2.5 81
2760 4.581333333333333 4.58 a-cgpr-i1 2022-23 Watertown - Watertown High 03140505 36.2 38.9 0.0 7.4 0.0 0.0 3.4 0.7 0.7 12.8 149
2761 5.216 5 a-cgpr-i1 2022-23 Wayland - Wayland High School 03150505 47.6 48.1 0.0 0.0 1.6 0.0 0.5 0.0 0.5 1.6 187
2762 5.1306666666666665 5 a-cgpr-i1 2022-23 Webster - Bartlett High School 03160505 28.2 30.8 0.0 14.1 0.0 0.0 23.1 0.0 2.6 1.3 78
2763 5.226666666666666 5 a-cgpr-i1 2022-23 Wellesley - Wellesley Sr High 03170505 67.0 28.2 0.0 0.6 1.1 0.0 1.1 0.0 0.9 1.1 351
2764 4.976 4.98 a-cgpr-i1 2022-23 West Boylston - West Boylston Junior/Senior High 03220505 0.0 76.7 0.0 10.0 3.3 0.0 3.3 0.0 3.3 3.3 60
2765 5.167999999999998 5 a-cgpr-i1 2022-23 West Bridgewater - West Bridgewater Junior/Senior 03230505 33.3 43.4 0.0 6.1 4.0 0.0 10.1 0.0 2.0 1.0 99
2766 5.269333333333334 5 a-cgpr-i1 2022-23 West Springfield - West Springfield High 03320505 22.7 22.3 0.0 29.7 7.4 0.0 16.7 1.1 0.0 0.0 269
2767 5.093333333333334 5 a-cgpr-i1 2022-23 Westborough - Westborough High 03210505 42.1 45.2 0.0 3.5 0.0 0.8 3.9 0.8 2.3 1.5 259
2768 5.007999999999999 5 a-cgpr-i1 2022-23 Westfield - Westfield High 03250505 23.7 27.9 0.9 26.5 2.8 0.0 12.1 2.8 1.4 1.9 215
2769 4.784 4.78 a-cgpr-i1 2022-23 Westfield - Westfield Technical Academy 03250605 4.8 17.5 0.0 12.7 6.3 0.0 48.4 4.8 4.0 1.6 126
2770 4.741333333333333 4.74 a-cgpr-i1 2022-23 Westfield - Westfield Virtual School 03250705 0.0 0.0 0.0 22.2 0.0 0.0 66.7 0.0 0.0 11.1 9
2771 5.173333333333333 5 a-cgpr-i1 2022-23 Westford - Westford Academy 03260505 43.8 47.4 0.0 2.2 1.0 0.7 1.9 0.0 0.5 2.6 418
2772 5.301333333333333 5 a-cgpr-i1 2022-23 Weston - Weston High 03300505 63.0 31.2 0.0 2.6 1.3 0.0 1.3 0.0 0.6 0.0 154
2773 5.247999999999999 5 a-cgpr-i1 2022-23 Westport - Westport Middle-High School 03310515 20.0 29.2 1.5 16.9 3.1 0.0 27.7 1.5 0.0 0.0 65
2774 5.178666666666667 5 a-cgpr-i1 2022-23 Westwood - Westwood High 03350505 53.6 41.1 0.4 1.6 0.0 0.0 0.4 0.0 2.8 0.0 248
2775 4.757333333333333 4.76 a-cgpr-i1 2022-23 Weymouth - Weymouth High School 03360505 28.4 24.9 0.0 11.7 3.4 1.5 19.3 4.9 3.2 2.7 409
2776 5.200000000000001 5 a-cgpr-i1 2022-23 Whitman-Hanson - Whitman Hanson Regional 07800505 28.4 30.5 0.0 13.1 6.7 3.9 14.9 2.1 0.0 0.4 282
2777 4.88 4.88 a-cgpr-i1 2022-23 Whittier Regional Vocational Technical - Whittier Regional Vocational 08850605 13.5 18.5 0.0 23.5 2.5 0.0 33.5 2.5 6.0 0.0 319
2778 5.221333333333333 5 a-cgpr-i1 2022-23 Wilmington - Wilmington High 03420505 46.1 33.5 0.5 10.5 2.1 0.0 5.2 1.0 0.5 0.5 191
2779 4.8 4.8 a-cgpr-i1 2022-23 Winchendon - Murdock Academy for Success 03430405 0.0 0.0 0.0 0.0 0.0 0.0 90.0 0.0 10.0 0.0 10
2780 4.970666666666667 4.97 a-cgpr-i1 2022-23 Winchendon - Murdock High School 03430515 13.3 33.3 0.0 24.4 0.0 0.0 22.2 0.0 6.7 0.0 45
2781 5.210666666666666 5 a-cgpr-i1 2022-23 Winchester - Winchester High School 03440505 44.8 47.8 0.6 2.4 0.6 0.0 1.5 0.0 1.5 0.9 337
2782 4.5440000000000005 4.54 a-cgpr-i1 2022-23 Winthrop - Winthrop High School 03460505 38.3 26.6 0.8 7.0 2.3 0.0 10.2 2.3 0.8 11.7 128
2783 4.970666666666667 4.97 a-cgpr-i1 2022-23 Woburn - Woburn High 03470505 31.1 33.7 0.0 9.5 7.2 0.0 11.7 2.3 0.0 4.5 264
2784 4.746666666666667 4.75 a-cgpr-i1 2022-23 Worcester - Burncoat Senior High 03480503 12.1 20.4 0.0 31.7 7.9 1.1 15.8 0.8 1.1 9.1 265
2785 5.1146666666666665 5 a-cgpr-i1 2022-23 Worcester - Claremont Academy 03480350 5.5 24.7 0.0 27.4 12.3 0.0 26.0 0.0 1.4 2.7 73
2786 4.933333333333333 4.93 a-cgpr-i1 2022-23 Worcester - Doherty Memorial High 03480512 22.8 20.7 0.3 26.9 8.5 0.0 13.3 2.0 1.7 3.7 294
2787 4.938666666666667 4.94 a-cgpr-i1 2022-23 Worcester - North High 03480515 12.1 18.0 0.0 33.1 8.8 0.4 20.2 2.9 1.1 3.3 272
2788 4.8 4.8 a-cgpr-i1 2022-23 Worcester - South High Community 03480520 12.3 25.5 0.3 18.9 13.5 0.0 19.5 2.8 0.6 6.6 318
2789 5.2 5 a-cgpr-i1 2022-23 Worcester - University Pk Campus School 03480285 23.1 51.3 0.0 7.7 2.6 0.0 12.8 0.0 0.0 2.6 39
2790 5.029333333333333 5 a-cgpr-i1 2022-23 Worcester - Worcester Technical High 03480605 19.9 37.8 0.6 13.8 0.3 1.4 20.5 1.7 0.6 3.5 347

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -340,11 +340,11 @@ NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Putterham,0046
NA,NA,"",2023-24,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 521, 551, 513, 18," 2,173"
NA,NA,"",2023-24,Brookline - Edith C Baker,00460005, 0, 66, 72, 84, 82, 77, 74, 61, 72, 66, 0, 0, 0, 0, 0, 654
NA,NA,"",2023-24,Brookline - Florida Ruffin Ridley School,00460015, 32, 84, 102, 103, 94, 93, 85, 86, 80, 93, 0, 0, 0, 0, 0, 852
NA,NA,"",2023-24,Brookline - Heath,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434
NA,NA,"",2023-24,Brookline - John D Runkle,00460045, 16, 46, 45, 52, 40, 61, 55, 56, 51, 61, 0, 0, 0, 0, 0, 483
NA,NA,"",2023-24,Brookline - Lawrence,00460030, 0, 68, 82, 70, 77, 69, 60, 75, 51, 63, 0, 0, 0, 0, 0, 615
NA,NA,"",2023-24,Brookline - Michael Driscoll,00460020, 32, 46, 57, 41, 66, 53, 59, 50, 54, 52, 0, 0, 0, 0, 0, 510
NA,NA,"",2023-24,Brookline - Pierce,00460040, 0, 68, 62, 78, 78, 74, 78, 83, 63, 84, 0, 0, 0, 0, 0, 668
NA,NA,"",2023-24,Brookline - Roland Hayes,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434
NA,NA,"",2023-24,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55
NA,NA,"",2023-24,Brookline - William H Lincoln,00460035, 0, 52, 60, 50, 57, 55, 41, 51, 62, 46, 0, 0, 0, 0, 0, 474
NA,NA,"",2023-24,Burlington - Burlington High,00480505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 227, 231, 218, 0," 1,005"
@ -800,9 +800,9 @@ NA,NA,"",2023-24,Leominster - Center For Technical Education Innovation,01530605
NA,NA,"",2023-24,Leominster - Fall Brook,01530007, 0, 72, 105, 126, 107, 109, 113, 0, 0, 0, 0, 0, 0, 0, 0, 632
NA,NA,"",2023-24,Leominster - Frances Drake School,01530010, 0, 99, 63, 75, 68, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 485
NA,NA,"",2023-24,Leominster - Johnny Appleseed,01530025, 0, 75, 114, 127, 107, 111, 121, 0, 0, 0, 0, 0, 0, 0, 0, 655
NA,NA,"",2023-24,Leominster - Leominster Academy,01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16
NA,NA,"",2023-24,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 11, 30, 0, 65
NA,NA,"",2023-24,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 295, 306, 303, 9," 1,073"
NA,NA,"",2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16
NA,NA,"",2023-24,Leominster - Lincoln School,01530005, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40
NA,NA,"",2023-24,Leominster - Northwest,01530030, 0, 0, 112, 154, 136, 130, 137, 0, 0, 0, 0, 0, 0, 0, 0, 669
NA,NA,"",2023-24,Leominster - Priest Street,01530040, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139

Can't render this file because it is too large.

@ -2,7 +2,8 @@ require "#{Rails.root}/app/lib/seeder"
seeder = Seeder.new
seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23", "2023-24"
seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23",
"2023-24 Fall", "2023-24 Spring"
seeder.seed_districts_and_schools Rails.root.join("data", "master_list_of_schools_and_districts.csv")
seeder.seed_sqm_framework Rails.root.join("data", "sqm_framework.csv")
seeder.seed_demographics Rails.root.join("data", "demographics.csv")

@ -126,4 +126,13 @@ namespace :one_off do
seeder.seed_staffing Rails.root.join("data", "staffing", "nj_staffing.csv")
seeder.seed_staffing Rails.root.join("data", "staffing", "wi_staffing.csv")
end
desc "delete 2023-24 AcademicYear and all responses, admin data, enrollment numbers and staffing numbers"
task delete_2023_24: :environment do
academic_year = AcademicYear.find_by_range "2023-24"
AdminDataValue.where(academic_year:).delete_all
Respondent.where(academic_year:).delete_all
SurveyItemResponse.where(academic_year:).delete_all
academic_year.delete
end
end

@ -5,8 +5,7 @@ namespace :report do
end
namespace :measure do
task :district, [:district, :ay] => :environment do |_, args|
task :district, %i[district ay] => :environment do |_, args|
# measure_ids = %w[
# 1A-i
# 1A-ii
@ -46,11 +45,11 @@ namespace :report do
district = District.find_by_name args[:district]
academic_years = AcademicYear.where(range: args[:ay])
if district == nil
if district.nil?
puts "Invalid district name"
bad = true
end
if academic_years == nil
if academic_years.nil?
puts "Invalid academic year"
bad = true
end
@ -60,7 +59,7 @@ namespace :report do
schools: School.where(district:),
academic_years:,
# measures:,
filename: "measure_report_"+district.slug+".csv"
filename: "measure_report_" + district.slug + ".csv"
)
end
@ -101,7 +100,7 @@ namespace :report do
5D-ii
]
measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) }
measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) }.reject(&:nil?)
Report::Measure.create_report(filename: "measure_report.csv", measures:)
end
@ -131,42 +130,48 @@ namespace :report do
end
end
namespace :survey_item do
task :create, [:school, :academic_year] => :environment do |_, args|
namespace :survey_item do
task :create, %i[school academic_year] => :environment do |_, args|
school = School.find_by_name(args[:school])
academic_year = AcademicYear.find_by_range(args[:academic_year])
if school == nil
if school.nil?
puts "Invalid school name"
bad = 1
end
if academic_year == nil
if academic_year.nil?
puts "Invalid academic year"
bad = 1
end
next if bad == 1
Report::SurveyItem.create_item_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_item.csv")
Report::SurveyItem.create_grade_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_grade.csv")
Report::SurveyItem.create_item_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_item.csv")
Report::SurveyItem.create_grade_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_grade.csv")
end
end
namespace :survey_item do
task :district, [:district, :academic_year] => :environment do |_, args|
district = District.find_by_name(args[:district])
if district == nil
puts "Invalid district name"
bad = 1
end
academic_year = AcademicYear.find_by_range(args[:academic_year])
if academic_year == nil
puts "Invalid academic year"
bad = 1
end
next if bad == 1
schools = district.schools
schools.each do |school|
Report::SurveyItem.create_item_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_item.csv")
Report::SurveyItem.create_grade_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_grade.csv")
end
end
end
namespace :survey_item do
task :district, %i[district academic_year] => :environment do |_, args|
district = District.find_by_name(args[:district])
if district.nil?
puts "Invalid district name"
bad = 1
end
academic_year = AcademicYear.find_by_range(args[:academic_year])
if academic_year.nil?
puts "Invalid academic year"
bad = 1
end
next if bad == 1
schools = district.schools
schools.each do |school|
Report::SurveyItem.create_item_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_item.csv")
Report::SurveyItem.create_grade_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_grade.csv")
end
end
end
end

File diff suppressed because it is too large Load Diff

@ -1977,3 +1977,400 @@ Worcester - North High,3480515,7.7,17.5,1,58.2,1.7,,8.1,3.7,0.7,1.3,297,5.024,5,
Worcester - South High Community,3480520,18,17.3,2.9,52.6,0,,5.9,1.1,0,2.2,272,5.15733333333333,5,a-cgpr-i1,2016-17
Worcester - University Pk Campus School,3480285,25.6,55.8,0,16.3,0,,2.3,0,0,0,43,5.33333333333333,5,a-cgpr-i1,2016-17
Worcester - Worcester Technical High,3480605,21,34.8,0.3,30.7,0,,9.5,3.2,0.6,0,348,5.136,5,a-cgpr-i1,2016-17
Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,24.4,54.9,0,12.2,0,0,3.7,0,4.9,0,82,5.07733333333333,4.44,a-cgpr-i1,2023-24
Abington - Abington High,10505,27.5,28.9,0,18.1,0,2,0,2.7,14.8,6,149,4.08,4.44,a-cgpr-i1,2023-24
Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,21.4,51.8,3.6,10.7,10.7,0,0,0,0,1.8,56,5.23733333333333,4.44,a-cgpr-i1,2023-24
Acton-Boxborough - Acton-Boxborough Regional High,6000505,44.5,49.2,1.4,2.1,0.2,0,0.7,0,1.2,0.7,425,5.232,4.44,a-cgpr-i1,2023-24
Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,51.8,41,0,3.6,0.7,0,2.9,0,0,0,139,5.33333333333333,4.44,a-cgpr-i1,2023-24
Agawam - Agawam High,50505,25,21.1,0.4,21.9,0,0,15.6,1.6,3.1,11.3,256,4.48,4.44,a-cgpr-i1,2023-24
Amesbury - Amesbury High,70505,24.4,35.6,0,16.3,3.7,0,14.8,3,1.5,0.7,135,5.056,4.44,a-cgpr-i1,2023-24
Amesbury - Amesbury Innovation High School,70515,0,7.1,7.1,28.6,7.1,0,42.9,0,7.1,0,14,4.94933333333333,4.44,a-cgpr-i1,2023-24
Amherst-Pelham - Amherst Regional High,6050505,41.8,20.5,0,14.5,0.5,0,2.7,0.5,1.8,17.7,220,4.26666666666667,4.44,a-cgpr-i1,2023-24
Andover - Andover High,90505,47.5,42.1,0,3.4,0.2,0,3.2,0.7,1.8,1.1,442,5.14133333333333,4.44,a-cgpr-i1,2023-24
Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,25.7,25.7,0,40,0,0,0,8.6,0,0,35,4.87466666666667,4.44,a-cgpr-i1,2023-24
Arlington - Arlington High,100505,58.7,28.4,0,5.8,0.9,0.9,1.2,0.3,1.2,2.4,327,5.11466666666667,4.44,a-cgpr-i1,2023-24
Ashburnham-Westminster - Oakmont Regional High School,6100505,32.9,31.7,0.6,16.2,1.2,0,12,2.4,1.8,1.2,167,5.04533333333333,4.44,a-cgpr-i1,2023-24
Ashland - Ashland High,140505,27.6,49.5,0,9.5,1,0,9.5,0.5,0.5,1.9,210,5.17866666666667,4.44,a-cgpr-i1,2023-24
Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,11,25.9,0.4,13.3,0,0.8,45.6,3,0,0,263,5.17333333333333,4.44,a-cgpr-i1,2023-24
Athol-Royalston - Athol High,6150505,13,14.5,0,21.7,11.6,0,37.7,0,0,1.4,69,5.25333333333333,4.44,a-cgpr-i1,2023-24
Atlantis Charter (District) - Atlantis Charter School,4910550,19,38.1,0,22.6,0,4.8,8.3,2.4,0,4.8,84,4.94933333333333,4.44,a-cgpr-i1,2023-24
Attleboro - Attleboro Community Academy,160515,0,1.9,0,20.4,14.8,1.9,55.6,5.6,0,0,54,5.04533333333333,4.44,a-cgpr-i1,2023-24
Attleboro - Attleboro High,160505,27,28.3,0,18,1.3,0,20.3,3.6,0.3,1.3,389,6.06133333333333,4.44,a-cgpr-i1,2023-24
Auburn - Auburn Senior High,170505,24.4,48.1,0,10,3.1,0,11.9,1.9,0,0.6,160,5.2,4.44,a-cgpr-i1,2023-24
Avon - Avon Middle High School,180510,26.3,42.1,0,18.4,0,0,7.9,2.6,0,2.6,38,5.05066666666667,4.44,a-cgpr-i1,2023-24
Ayer Shirley School District - Ayer Shirley Regional High School,6160505,26.6,38,0,10.1,1.3,0,6.3,8.9,0,8.9,79,4.38933333333333,4.44,a-cgpr-i1,2023-24
Barnstable - Barnstable High,200505,8.7,10.4,0,0.6,0,0,0.3,0.3,0.6,79.2,346,1.06666666666667,4.44,a-cgpr-i1,2023-24
Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,50,12.5,0,33.3,2.1,0,0,0,2.1,0,48,5.22133333333333,4.44,a-cgpr-i1,2023-24
Bedford - Bedford High,230505,30.4,40.8,0,11.4,2.2,0,5.4,3.3,3.3,3.3,184,4.81066666666667,4.44,a-cgpr-i1,2023-24
Belchertown - Belchertown High,240505,35.7,17.5,0,20.5,2.9,2.3,2.3,1.8,1.2,15.8,171,4.33066666666667,4.44,a-cgpr-i1,2023-24
Bellingham - Bellingham High School,250505,26.2,32.6,0,13.5,4.3,0,14.2,3.5,4.3,1.4,141,4.84266666666667,4.44,a-cgpr-i1,2023-24
Bellingham - Keough Memorial Academy,250510,0,14.3,0,42.9,0,0,42.9,0,0,0,7,5.33866666666667,4.44,a-cgpr-i1,2023-24
Belmont - Belmont High,260505,65.3,28.4,0,1.6,0.3,0,2.2,0.3,1.9,0,317,5.216,4.44,a-cgpr-i1,2023-24
Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,36.7,30,0,26.7,0,0,6.7,0,0,0,30,5.33866666666667,4.44,a-cgpr-i1,2023-24
Berkshire Hills - Monument Mt Regional High,6180505,35.1,20.2,3.5,15.8,0,2.6,12.3,0.9,9.6,0,114,4.77333333333333,4.44,a-cgpr-i1,2023-24
Berlin-Boylston - Tahanto Regional High,6200505,40.2,39,0,7.3,0,0,3.7,1.2,3.7,4.9,82,4.81066666666667,4.44,a-cgpr-i1,2023-24
Beverly - Beverly High,300505,26.4,37,0,15.8,2.1,0,7.5,2.4,3.8,5.1,292,4.736,4.44,a-cgpr-i1,2023-24
Billerica - Billerica Memorial High School,310505,31.3,33.3,0,17.5,3.7,2,9.3,1.2,0.4,1.2,246,5.17866666666667,4.44,a-cgpr-i1,2023-24
Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,41.3,30.3,1.3,5.3,3,4.3,10.7,1.7,2,0,300,5.13066666666667,4.44,a-cgpr-i1,2023-24
Blackstone-Millville - Blackstone Millville RHS,6220505,19.4,36.6,2.2,11.8,0,0,23.7,2.2,2.2,2.2,93,4.99733333333333,4.44,a-cgpr-i1,2023-24
Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,20.2,22.3,0,14.5,3.1,1,31.1,4.1,0,3.6,193,4.91733333333333,4.44,a-cgpr-i1,2023-24
Boston - Another Course To College,350541,12.1,24.1,0,31,3.4,0,5.2,0,0,24.1,58,4.04266666666667,4.44,a-cgpr-i1,2023-24
Boston - Boston Adult Academy,350548,0,9.7,1.4,19.4,8.3,4.2,19.4,1.4,1.4,34.7,72,3.328,4.44,a-cgpr-i1,2023-24
Boston - Boston Arts Academy,350546,38.2,30.3,1.1,10.1,0,0,9,1.1,4.5,5.6,89,4.73066666666667,4.44,a-cgpr-i1,2023-24
Boston - Boston Collaborative High School,350755,0,3.1,0,9.4,6.3,0,15.6,0,0,65.6,32,1.83466666666667,4.44,a-cgpr-i1,2023-24
Boston - Boston Community Leadership Academy,350558,18.3,22.6,2.2,14,6.5,0,12.9,0,2.2,21.5,93,4.08,4.44,a-cgpr-i1,2023-24
Boston - Boston International High School,350507,9.2,24.1,3.4,28.7,2.3,0,17.2,1.1,0,13.8,87,4.528,4.44,a-cgpr-i1,2023-24
Boston - Boston Latin,350560,56.9,33.3,0,2,1.7,0,2.2,0.5,0.5,2.9,408,5.12533333333333,4.44,a-cgpr-i1,2023-24
Boston - Boston Latin Academy,350545,36.5,37.7,0.6,1.8,2.1,1.2,2.1,0,0.6,17.3,329,4.37333333333333,4.44,a-cgpr-i1,2023-24
Boston - Brighton High,350505,11.2,20.7,0.9,16.4,5.2,0.9,21.6,3.4,3.4,16.4,116,4.10133333333333,4.44,a-cgpr-i1,2023-24
Boston - Charlestown High,350515,9.2,17.7,0,12.3,5.4,0,10.8,0,3.8,40.8,130,2.95466666666667,4.44,a-cgpr-i1,2023-24
Boston - Community Academy,350518,0,4.2,0,4.2,0,0,12.5,4.2,0,75,24,1.11466666666667,4.44,a-cgpr-i1,2023-24
Boston - Community Academy of Science and Health,350581,11.3,26.8,0,21.1,8.5,0,12.7,2.8,5.6,11.3,71,4.288,4.44,a-cgpr-i1,2023-24
Boston - Dearborn,350074,5.7,32.1,0,22.6,0,0,9.4,3.8,0,26.4,53,3.72266666666667,4.44,a-cgpr-i1,2023-24
Boston - Dr. William Henderson Upper,350426,12.3,24.6,0,29.8,3.5,3.5,10.5,1.8,0,14,57,4.49066666666667,4.44,a-cgpr-i1,2023-24
Boston - East Boston High,350530,9.5,16.3,0.3,13.7,2.3,1.6,33.7,1.3,2.3,19,306,4.128,4.44,a-cgpr-i1,2023-24
Boston - Excel High School,350522,12.5,22.5,0.8,16.7,8.3,0.8,12.5,2.5,1.7,21.7,120,3.952,4.44,a-cgpr-i1,2023-24
Boston - Fenway High School,350540,16.5,14.1,1.2,18.8,8.2,1.2,11.8,1.2,2.4,24.7,85,3.82933333333333,4.44,a-cgpr-i1,2023-24
Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,2.7,97.3,37,0,4.44,a-cgpr-i1,2023-24
Boston - Horace Mann School for the Deaf,350750,,,,,,,,,,,2,0,4.44,a-cgpr-i1,2023-24
Boston - Jeremiah E Burke High,350525,13.2,21.9,0,16.7,5.3,1.8,18.4,4.4,2.6,15.8,114,4.12266666666667,4.44,a-cgpr-i1,2023-24
Boston - Lyon Upper 9-12,350655,25,9.4,3.1,12.5,6.3,3.1,9.4,3.1,12.5,15.6,32,3.66933333333333,4.44,a-cgpr-i1,2023-24
Boston - Madison Park High,350537,4.8,8.4,0.6,25.7,1.2,5.4,26.3,2.4,2.4,22.8,167,3.86133333333333,4.44,a-cgpr-i1,2023-24
Boston - Margarita Muniz Academy,350549,18.3,20,0,6.7,5,1.7,1.7,1.7,0,45,60,2.848,4.44,a-cgpr-i1,2023-24
Boston - New Mission High School,350542,18.1,41.7,1.4,11.1,6.9,1.4,8.3,2.8,1.4,6.9,72,4.74133333333333,4.44,a-cgpr-i1,2023-24
Boston - O'Bryant School Math/Science,350575,27.1,37.3,0.6,15.4,3.6,0,5.7,2.4,1.2,6.6,332,4.784,4.44,a-cgpr-i1,2023-24
Boston - Quincy Upper School,350565,31.3,20.3,0,4.7,6.3,0,6.3,0,4.7,26.6,64,3.67466666666667,4.44,a-cgpr-i1,2023-24
Boston - Snowden International School at Copley,350690,10.9,13.9,0,8.9,0,0,7.9,0,1,57.4,101,2.21866666666667,4.44,a-cgpr-i1,2023-24
Boston - TechBoston Academy,350657,19.7,19.7,0.8,24.6,6.6,0,16.4,1.6,1.6,9,122,4.68266666666667,4.44,a-cgpr-i1,2023-24
Boston - The English High,350535,9,15.6,1.6,22.1,7.4,2.5,13.9,1.6,4.1,22.1,122,3.84533333333333,4.44,a-cgpr-i1,2023-24
Boston - William McKinley,350363,2.5,0,0,10,2.5,0,7.5,2.5,0,75,40,1.2,4.44,a-cgpr-i1,2023-24
Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,49.3,26.1,0,11.6,2.9,0,4.3,2.9,2.9,0,69,5.024,4.44,a-cgpr-i1,2023-24
Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,11.1,18.5,0,11.1,25.9,11.1,22.2,0,0,0,27,5.328,4.44,a-cgpr-i1,2023-24
Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,22.5,19.7,1.4,19.7,5.6,0,16.9,0,2.8,11.3,71,4.576,4.44,a-cgpr-i1,2023-24
Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,34.8,42.4,9.1,6.1,0,0,7.6,0,0,0,66,5.33333333333333,4.44,a-cgpr-i1,2023-24
Bourne - Bourne High School,360505,24.3,33.9,0,12.2,1.7,0,6.1,1.7,0,20,115,4.17066666666667,4.44,a-cgpr-i1,2023-24
Braintree - Braintree High,400505,35.2,40.4,0,13.2,1.9,0,6.7,2.4,0,0.2,418,5.19466666666667,4.44,a-cgpr-i1,2023-24
Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,30,42.8,0.3,7.1,1.1,0,5.7,1.9,2.7,8.4,367,4.64,4.44,a-cgpr-i1,2023-24
Bridgewater-Raynham - Therapeutic Day School,6250415,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24
Bristol County Agricultural - Bristol County Agricultural High,9100705,12.8,24.5,0,25.5,0,0,23.4,7.4,0,6.4,94,4.59733333333333,4.44,a-cgpr-i1,2023-24
Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,10.9,25.4,0,9.2,2.1,14.8,29.6,4.2,0.4,3.5,284,4.90666666666667,4.44,a-cgpr-i1,2023-24
Brockton - Brockton Champion High School,440515,0,0,0,44.4,16.7,0,11.1,0,0,27.8,18,3.85066666666667,4.44,a-cgpr-i1,2023-24
Brockton - Brockton High,440505,15.6,25,0.1,22.5,4.6,0.3,12.8,3.3,3.7,12.2,737,4.31466666666667,4.44,a-cgpr-i1,2023-24
Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0.5,99.5,197,0,4.44,a-cgpr-i1,2023-24
Brockton - Frederick Douglass Academy,440080,,,,,,,,,,,3,0,4.44,a-cgpr-i1,2023-24
Brockton - Huntington Therapeutic Day School,440400,0,20,0,30,20,0,30,0,0,0,10,5.33333333333333,4.44,a-cgpr-i1,2023-24
Brooke Charter School (District) - Brooke Charter School,4280305,38.2,35.3,0,11.8,0,0,11.8,0,2.9,0,34,5.17866666666667,4.44,a-cgpr-i1,2023-24
Brookline - Brookline High,460505,56.4,29.6,0,4.5,0,0,2.7,1,4.1,1.6,486,4.97066666666667,4.44,a-cgpr-i1,2023-24
Burlington - Burlington High,480505,32.9,44.6,0,7.9,2.5,0.4,10.4,0.8,0.4,0,240,5.264,4.44,a-cgpr-i1,2023-24
Cambridge - Cambridge Rindge and Latin,490506,46.9,28.2,0.2,11.6,3.9,0.9,3.3,1.1,3.3,0.7,458,5.06666666666667,4.44,a-cgpr-i1,2023-24
Canton - Canton High,500505,44.3,41.9,0.4,7.9,1.2,0,1.6,2.4,0.4,0,253,5.18933333333333,4.44,a-cgpr-i1,2023-24
Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,3.9,10.9,0,14.1,0.8,0,28.9,1.6,6.3,33.6,128,3.12533333333333,4.44,a-cgpr-i1,2023-24
Carver - Carver Middle/High School,520405,30.5,33.3,0,19,3.8,1.9,6.7,1,1,2.9,105,5.07733333333333,4.44,a-cgpr-i1,2023-24
Central Berkshire - Wahconah Regional High,6350505,23.1,32.3,0,18.5,6.2,0,16.2,3.1,0.8,0,130,5.136,4.44,a-cgpr-i1,2023-24
Chelmsford - Chelmsford High,560505,31.6,41.1,0,2.5,0,0,0,0,0,24.9,358,4.01066666666667,4.44,a-cgpr-i1,2023-24
Chelsea - Chelsea High,570505,9.7,10.1,0.8,27.9,5.7,1.2,32.8,2,9.3,0.4,247,4.704,4.44,a-cgpr-i1,2023-24
Chelsea - Chelsea Opportunity Academy,570515,0,0,5,55,10,0,25,5,0,0,20,5.06666666666667,4.44,a-cgpr-i1,2023-24
Chicopee - Chicopee Academy,610021,0,0,0,33.3,0,0,44.4,0,0,22.2,9,4.144,4.44,a-cgpr-i1,2023-24
Chicopee - Chicopee Comprehensive High School,610510,14.1,13.4,0,13.8,0.4,1.1,8,0,0.4,48.9,276,2.70933333333333,4.44,a-cgpr-i1,2023-24
Chicopee - Chicopee High,610505,19.7,9.6,0,15.8,0.9,0,11.8,3.1,0,39,228,3.08266666666667,4.44,a-cgpr-i1,2023-24
City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,28.8,18.2,7.6,15.2,0,0,27.3,1.5,0,1.5,66,5.17866666666667,4.44,a-cgpr-i1,2023-24
Clinton - Clinton Senior High,640505,20.3,27.6,0,23.6,5.7,0,21.1,0,0,1.6,123,5.24266666666667,4.44,a-cgpr-i1,2023-24
Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,31.8,36.4,0,13.6,4.5,0,0,0,0,13.6,22,4.60266666666667,4.44,a-cgpr-i1,2023-24
Cohasset - Cohasset High School,650505,66.1,26,0,0,0,0,0,0,0,7.9,127,4.912,4.44,a-cgpr-i1,2023-24
Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,51.6,29,0,12.9,3.2,0,3.2,0,0,0,31,5.328,4.44,a-cgpr-i1,2023-24
Concord-Carlisle - Concord Carlisle High,6400505,57,28.7,0,2,4.2,0,1.6,0.3,4.2,2,307,4.98666666666667,4.44,a-cgpr-i1,2023-24
Danvers - Danvers High,710505,0,99.1,0,0,0,0,0,0,0.4,0.4,231,5.28533333333333,4.44,a-cgpr-i1,2023-24
Dartmouth - Dartmouth High,720505,24.9,38.5,0,17.9,2.7,0,7,1.2,1.6,6.2,257,4.85333333333333,4.44,a-cgpr-i1,2023-24
Dedham - Dedham High,730505,29.9,35,0.6,9.6,5.1,1.1,15.8,1.1,0.6,1.1,177,5.17866666666667,4.44,a-cgpr-i1,2023-24
Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,22,24.4,1.2,24.4,1.8,1.2,20.7,3,1.2,0,164,5.104,4.44,a-cgpr-i1,2023-24
Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,32.4,35.7,0.5,8,1.9,0,19.2,2.3,0,0,213,5.21066666666667,4.44,a-cgpr-i1,2023-24
Douglas - Douglas High School,770505,24.7,25.9,0,16.5,3.5,0,12.9,3.5,1.2,11.8,85,4.45333333333333,4.44,a-cgpr-i1,2023-24
Dover-Sherborn - Dover-Sherborn Regional High,6550505,65.3,26.5,0,1.2,2.4,0,1.8,0,1.8,1.2,170,5.184,4.44,a-cgpr-i1,2023-24
Dracut - Dracut Senior High,790505,17.8,36,0.4,23.6,4.9,1.8,12.4,0.4,0.4,2.2,225,5.168,4.44,a-cgpr-i1,2023-24
Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,33.2,33.2,0,10.2,2.6,0,7.9,1.9,4.5,6.4,265,4.64533333333333,4.44,a-cgpr-i1,2023-24
Duxbury - Duxbury High,820505,52.4,35.8,0.4,3.3,2,0,3.3,0.8,2,0,246,5.184,4.44,a-cgpr-i1,2023-24
East Bridgewater - East Bridgewater JR./SR. High School,830505,26.2,40,0,8.3,4.1,0,16.6,0.7,4.1,0,145,5.07733333333333,4.44,a-cgpr-i1,2023-24
East Longmeadow - East Longmeadow High,870505,33.3,28.7,0,21.1,2.9,1.2,8.8,2.3,1.2,0.6,171,5.12,4.44,a-cgpr-i1,2023-24
Easthampton - Easthampton High,860505,24.5,23.6,0,14.2,0.9,0,22.6,0,0,14.2,106,4.576,4.44,a-cgpr-i1,2023-24
Easton - Oliver Ames High,880505,41.2,38.3,0,8.8,4,0,4.7,1.1,0.4,1.5,274,5.17333333333333,4.44,a-cgpr-i1,2023-24
Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,18,41.6,0,37.1,0,0,1.1,0,0,2.2,89,5.216,4.44,a-cgpr-i1,2023-24
Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,22.7,37.9,0,6.4,0.3,0,21.6,2.3,8.5,0.3,343,4.74133333333333,4.44,a-cgpr-i1,2023-24
Everett - Devens School,930030,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24
Everett - Everett High,930505,0,43.2,0,7.4,0,4.7,11.2,1.2,24.1,8.2,403,3.54666666666667,4.44,a-cgpr-i1,2023-24
Excel Academy Charter (District) - Excel Academy Charter School,4100205,29.9,29.3,2.5,13.4,5.1,3.2,10.8,1.3,0.6,3.8,157,5.024,4.44,a-cgpr-i1,2023-24
Fairhaven - Fairhaven High,940505,20.1,45.5,0,16.4,1.6,0,13.8,0,2.6,0,189,5.19466666666667,4.44,a-cgpr-i1,2023-24
Fall River - B M C Durfee High,950505,10.2,16.1,0.2,27.5,2.6,0.4,38.6,3.5,0.7,0.2,461,5.09866666666667,4.44,a-cgpr-i1,2023-24
Fall River - Resiliency Preparatory Academy,950525,1.3,6.3,0,28.8,6.3,0,22.5,1.3,16.3,17.5,80,3.47733333333333,4.44,a-cgpr-i1,2023-24
Fall River - Stone PK-12 School,950340,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24
Falmouth - Falmouth High,960505,29.7,37.4,0,15.9,1.6,0,5.5,1.6,2.2,6,182,4.80533333333333,4.44,a-cgpr-i1,2023-24
Fitchburg - Fitchburg High,970505,11.5,29.2,0.4,33.7,0.8,0,18.1,3.7,2.5,0,243,4.99733333333333,4.44,a-cgpr-i1,2023-24
Fitchburg - Goodrich Academy,970510,0,2,0,10.1,3,0,75.8,1,1,7.1,99,4.848,4.44,a-cgpr-i1,2023-24
Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,39.3,32.1,0,21.4,0,0,3.6,0,0,3.6,28,5.14133333333333,4.44,a-cgpr-i1,2023-24
Foxborough - Foxborough High,990505,33.3,45.9,0,5.5,1.1,2.7,8.2,1.1,1.6,0.5,183,5.15733333333333,4.44,a-cgpr-i1,2023-24
Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,31.7,46,1.6,15.9,1.6,0,3.2,0,0,0,63,5.33333333333333,4.44,a-cgpr-i1,2023-24
Framingham - Framingham High School,1000515,21.3,34.1,0.2,16.7,4.8,0,19.4,2,1.3,0.2,540,5.14666666666667,4.44,a-cgpr-i1,2023-24
Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,41.4,34.5,0,5.2,3.4,0,12.1,0,1.7,1.7,58,5.152,4.44,a-cgpr-i1,2023-24
Franklin - Franklin High,1010505,40,44.9,0.5,4.7,1.1,0,6.5,1.1,0.2,0.9,443,5.21066666666667,4.44,a-cgpr-i1,2023-24
Franklin County Regional Vocational Technical - Franklin County Technical,8180605,2,2.9,0,16.7,0,0,67.6,4.9,4.9,1,102,4.75733333333333,4.44,a-cgpr-i1,2023-24
Freetown-Lakeville - Apponequet Regional High,6650505,27,30.4,0,19.1,6.9,0,15.2,1.5,0,0,204,5.25866666666667,4.44,a-cgpr-i1,2023-24
Frontier - Frontier Regional,6700505,38.8,32.7,0,18.4,2,0,6.1,2,0,0,98,5.22666666666667,4.44,a-cgpr-i1,2023-24
Gardner - Gardner Academy for Learning and Technology,1030515,7.5,20,5,32.5,5,0,25,2.5,0,2.5,40,5.06666666666667,4.44,a-cgpr-i1,2023-24
Gardner - Gardner High,1030505,12.1,25.8,0,33.3,4.5,0,17.4,3,2.3,1.5,132,4.96533333333333,4.44,a-cgpr-i1,2023-24
Gateway - Gateway Regional High,6720505,14.3,32.1,0,19.6,0,0,28.6,1.8,0,3.6,56,5.04533333333333,4.44,a-cgpr-i1,2023-24
Georgetown - Georgetown High School,1050505,40.9,42,0,9.1,3.4,0,3.4,0,1.1,0,88,5.26933333333333,4.44,a-cgpr-i1,2023-24
Gill-Montague - Turners Fall High,6740505,13.7,13.7,0,33.3,2,0,27.5,2,0,7.8,51,4.81066666666667,4.44,a-cgpr-i1,2023-24
Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,50,0,29.2,0,0,16.7,4.2,0,0,24,5.11466666666667,4.44,a-cgpr-i1,2023-24
Gloucester - Gloucester High,1070505,17.3,20.5,0,14.7,8.3,0,21.8,2.6,2.6,12.2,156,4.40533333333333,4.44,a-cgpr-i1,2023-24
Grafton - Grafton High School,1100505,30.9,46.1,0.6,10.7,1.1,1.1,6.2,1.1,1.7,0.6,178,5.15733333333333,4.44,a-cgpr-i1,2023-24
Granby - Granby Jr Sr High School,1110505,17.3,19.2,0,34.6,0,0,28.8,0,0,0,52,5.328,4.44,a-cgpr-i1,2023-24
Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,7.5,18.5,0,21.7,4.3,0.6,35.5,4.3,2.3,5.2,346,4.69866666666667,4.44,a-cgpr-i1,2023-24
Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,7.2,10.4,0.3,38,1.1,21.8,19.9,0.8,0,0.5,376,5.264,4.44,a-cgpr-i1,2023-24
Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,11.6,16,0.4,23.2,2.9,0,35.6,6.3,0,4,525,4.784,4.44,a-cgpr-i1,2023-24
Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,3.1,27.4,0,25.9,3.7,0,36.6,3.3,0,0,486,5.15733333333333,4.44,a-cgpr-i1,2023-24
Greenfield - Greenfield High,1140505,19.5,20.8,0,22.1,0,0,33.8,2.6,0,1.3,77,5.13066666666667,4.44,a-cgpr-i1,2023-24
Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,7.7,15.4,0,24.4,2.6,0,24.4,1.3,1.3,23.1,78,3.97333333333333,4.44,a-cgpr-i1,2023-24
Groton-Dunstable - Groton Dunstable Regional,6730505,33,48.2,0.5,8.4,2.1,0,4.2,0.5,0,3.1,191,5.14133333333333,4.44,a-cgpr-i1,2023-24
Hadley - Hopkins Academy,1170505,0,73.8,0,9.5,2.4,0,4.8,0,2.4,7.1,42,4.82666666666667,4.44,a-cgpr-i1,2023-24
Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,45.9,39.3,0,7.4,1.5,0,3,0,1.5,1.5,135,5.17866666666667,4.44,a-cgpr-i1,2023-24
Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,38.9,27.8,0,24.1,0,3.7,0,3.7,1.9,0,54,5.04,4.44,a-cgpr-i1,2023-24
Hampden-Wilbraham - Minnechaug Regional High,6800505,31.4,35.6,0,19.7,0.4,0,9.2,1.3,0.4,2.1,239,5.136,4.44,a-cgpr-i1,2023-24
Hampshire - Hampshire Regional High,6830505,20,26,0,44,0,0,3,1,4,2,100,4.96,4.44,a-cgpr-i1,2023-24
Hanover - Hanover High,1220505,50.2,31.1,1,1,0,0,1,1,0.5,14.4,209,4.496,4.44,a-cgpr-i1,2023-24
Harvard - Bromfield,1250505,68,24.7,0,3.1,0,0,0,0,0,4.1,97,5.10933333333333,4.44,a-cgpr-i1,2023-24
Hatfield - Smith Academy,1270505,16.7,37.5,0,33.3,0,0,4.2,4.2,4.2,0,24,4.89066666666667,4.44,a-cgpr-i1,2023-24
Haverhill - Crowell,1280515,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24
Haverhill - Greenleaf Academy,1280033,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24
Haverhill - Haverhill High,1280505,15.5,22.3,0.2,27,5.2,0,25.9,1.1,1.8,0.9,444,5.12533333333333,4.44,a-cgpr-i1,2023-24
Hingham - Hingham High,1310505,52,39.8,0,1.3,1.6,0.3,2.3,0,0.7,2,304,5.18933333333333,4.44,a-cgpr-i1,2023-24
Holbrook - Holbrook Middle High School,1330505,21.7,33.3,0,6.7,0,0,36.7,1.7,0,0,60,5.248,4.44,a-cgpr-i1,2023-24
Holliston - Holliston High,1360505,42.3,40.7,0,3.7,3.2,0,5.8,1.1,3.2,0,189,5.104,4.44,a-cgpr-i1,2023-24
Holyoke - Holyoke High,1370505,3.9,14.4,0.3,22.2,3.3,0,28.9,4.2,0.3,22.5,360,3.89333333333333,4.44,a-cgpr-i1,2023-24
Hoosac Valley Regional - Hoosac Valley High School,6030505,22.7,31.8,0,6.8,2.3,0,22.7,0,9.1,4.5,44,4.60266666666667,4.44,a-cgpr-i1,2023-24
Hopedale - Hopedale Jr Sr High,1380505,46.5,38,0,5.6,2.8,1.4,0,1.4,4.2,0,71,5.02933333333333,4.44,a-cgpr-i1,2023-24
Hopkinton - Hopkinton High,1390505,51.5,35.6,0,1.2,0,0,0.3,0,0,11.3,326,4.72533333333333,4.44,a-cgpr-i1,2023-24
Hudson - Hudson High,1410505,32.2,34.3,0,8.4,0.7,0,20.3,2.1,2.1,0,143,5.11466666666667,4.44,a-cgpr-i1,2023-24
Hull - Hull High,1420505,30.4,30.4,0,8.7,2.9,1.4,15.9,4.3,1.4,4.3,69,4.784,4.44,a-cgpr-i1,2023-24
Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,38.2,41.6,0,6.7,1.1,1.1,7.9,1.1,0,2.2,89,5.152,4.44,a-cgpr-i1,2023-24
Ipswich - Ipswich High,1440505,24.8,42.9,0,13.5,0,0.8,2.3,0,3.8,12,133,4.496,4.44,a-cgpr-i1,2023-24
KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,32.2,43.2,0,11,0,0,10.2,0.8,0.8,1.7,118,5.152,4.44,a-cgpr-i1,2023-24
King Philip - King Philip Regional High,6900505,48.6,37.1,0,1,2,0,1.7,0.7,1.4,7.5,294,4.82133333333333,4.44,a-cgpr-i1,2023-24
Lawrence - High School Learning Center,1490536,4.8,11.5,0,13.3,1.8,0,16.4,0.6,0,51.5,165,2.54933333333333,4.44,a-cgpr-i1,2023-24
Lawrence - Lawrence High School,1490515,8.5,19.1,0,24.7,9.8,0,19,1.7,0,17.3,591,4.32533333333333,4.44,a-cgpr-i1,2023-24
Lawrence - RISE Academy,1490615,0,5.6,0,27.8,0,0,5.6,0,0,61.1,18,2.08,4.44,a-cgpr-i1,2023-24
Lawrence - School for Exceptional Studies,1490537,0,16.7,0,33.3,0,0,33.3,0,0,16.7,6,4.44266666666667,4.44,a-cgpr-i1,2023-24
Lee - Lee Middle/High School,1500505,26.2,29.5,0,19.7,0,1.6,18,1.6,3.3,0,61,5.06666666666667,4.44,a-cgpr-i1,2023-24
Leicester - Leicester High,1510505,13.8,40.4,2.1,22.3,1.1,0,17,3.2,0,0,94,5.15733333333333,4.44,a-cgpr-i1,2023-24
Lenox - Lenox Memorial High,1520505,44.1,22,0,18.6,1.7,0,1.7,0,5.1,6.8,59,4.69866666666667,4.44,a-cgpr-i1,2023-24
Leominster - Center For Technical Education Innovation,1530605,5.1,29.4,0.7,15.4,5.9,4.4,31.6,2.2,0,5.1,136,4.93333333333333,4.44,a-cgpr-i1,2023-24
Leominster - Leominster Center for Excellence,1530515,0,0,0,0,36.4,0,45.5,9.1,0,9.1,11,4.368,4.44,a-cgpr-i1,2023-24
Leominster - Leominster High School,1530505,18.6,39.4,1,14.7,2.9,1,16.9,2.6,0,2.9,307,5.04,4.44,a-cgpr-i1,2023-24
Lexington - Lexington High,1550505,58.8,33.6,0,1.1,0,0,1.7,0.4,1.3,3,527,5.07733333333333,4.44,a-cgpr-i1,2023-24
Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,55.8,33.6,0.8,2.6,1.3,0.3,3.2,0.5,1.9,0,378,5.20533333333333,4.44,a-cgpr-i1,2023-24
Littleton - Littleton High School,1580505,40.4,47.7,0,11,0,0,0.9,0,0,0,109,5.33333333333333,4.44,a-cgpr-i1,2023-24
Longmeadow - Longmeadow High,1590505,43.6,50.5,0,6,0,0,0,0,0,0,218,5.33866666666667,4.44,a-cgpr-i1,2023-24
Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,12.5,0,0,87.5,8,0.666666666666667,4.44,a-cgpr-i1,2023-24
Lowell - Lowell High,1600505,14.8,28.5,0,23.6,2.5,0.9,7.1,2.1,10.8,9.7,677,4.128,4.44,a-cgpr-i1,2023-24
Lowell - The Career Academy,1600515,0,0,0,0,0,0,26.3,2.6,0,71.1,38,1.40266666666667,4.44,a-cgpr-i1,2023-24
Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,38.5,7.7,0,30.8,7.7,7.7,7.7,13,4.10666666666667,4.44,a-cgpr-i1,2023-24
Ludlow - Ludlow Senior High,1610505,37.4,17.2,0.5,21.2,6.1,1,4,2,5.1,5.6,198,4.66133333333333,4.44,a-cgpr-i1,2023-24
Lunenburg - Lunenburg High,1620505,23.4,45.8,0,13.1,0.9,0,10.3,0.9,0,5.6,107,4.98666666666667,4.44,a-cgpr-i1,2023-24
Lynn - Classical High,1630505,9.9,18.4,0.3,27.2,1.9,0,29.1,1.4,2.7,9.1,364,4.62933333333333,4.44,a-cgpr-i1,2023-24
Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,18.2,0,0,77.3,0,0,4.5,22,5.09333333333333,4.44,a-cgpr-i1,2023-24
Lynn - Lynn English High,1630510,11.6,18.6,1.4,14.7,0.9,0,20.7,2.6,1.4,28.1,430,3.62133333333333,4.44,a-cgpr-i1,2023-24
Lynn - Lynn Vocational Technical Institute,1630605,6.7,20.8,0.4,24.2,2.9,0,42.5,2.1,0.4,0,240,5.2,4.44,a-cgpr-i1,2023-24
Lynnfield - Lynnfield High,1640505,48.8,43.4,0.6,0.6,4.2,0,0.6,0,0.6,1.2,166,5.23733333333333,4.44,a-cgpr-i1,2023-24
MATCH Charter Public School (District) - MATCH Charter Public School,4690505,36.1,43.1,0,12.5,0,5.6,2.8,0,0,0,72,5.33866666666667,4.44,a-cgpr-i1,2023-24
Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,77.1,22.9,0,0,0,0,0,0,0,0,48,5.33333333333333,4.44,a-cgpr-i1,2023-24
Malden - Malden High,1650505,20.6,28.6,0.5,21.6,3.5,1.2,18.7,1.2,2.5,1.5,402,5.05066666666667,4.44,a-cgpr-i1,2023-24
Manchester Essex Regional - Manchester Essex Regional High School,6980510,53.7,39.8,0,0.8,0,0,0.8,0.8,2.4,1.6,123,5.072,4.44,a-cgpr-i1,2023-24
Mansfield - Mansfield High,1670505,38.6,41.7,0.3,4.4,3.7,0,4.4,0.3,2.5,4,321,4.96533333333333,4.44,a-cgpr-i1,2023-24
Map Academy Charter School (District) - Map Academy Charter School,35170505,0,10,0,45,7.5,0,30,2.5,5,0,40,4.93333333333333,4.44,a-cgpr-i1,2023-24
Marblehead - Marblehead High,1680505,43.7,49,0,0.8,0.8,0,0.8,0.8,3.3,0.8,245,5.072,4.44,a-cgpr-i1,2023-24
Marlborough - Marlborough High,1700505,0,52.8,0,17.1,2,1.2,23.4,0.4,1.6,1.6,252,5.14666666666667,4.44,a-cgpr-i1,2023-24
Marshfield - Marshfield High,1710505,32.1,46,0,5.3,1.7,0.3,0,0.7,11.9,2,302,4.55466666666667,4.44,a-cgpr-i1,2023-24
Martha's Vineyard - Martha's Vineyard Regional High,7000505,36,26.1,0,3.1,2.5,0,23,0.6,0.6,8.1,161,4.83733333333333,4.44,a-cgpr-i1,2023-24
Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24
Masconomet - Masconomet Regional High School,7050505,43.1,34.7,0,12,0,2.6,3.6,0,1.8,2.2,274,5.12,4.44,a-cgpr-i1,2023-24
Mashpee - Mashpee High,1720505,25,39.7,0,22.4,0,0.9,11.2,0.9,0,0,116,5.29066666666667,4.44,a-cgpr-i1,2023-24
Maynard - Maynard High,1740505,29.3,40,1.3,14.7,0,0,2.7,0,2.7,9.3,75,4.69333333333333,4.44,a-cgpr-i1,2023-24
Medfield - Medfield Senior High,1750505,51.8,35.9,0,0.5,0,0,0,0,0.5,11.3,195,4.704,4.44,a-cgpr-i1,2023-24
Medford - Curtis-Tufts,1760510,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24
Medford - Medford High,1760505,23.2,30.1,0,17,2.8,2.4,14.5,1,1.4,7.6,289,4.8,4.44,a-cgpr-i1,2023-24
Medway - Medway High,1770505,43,27.8,0,4,0,0,2,1.3,1.3,20.5,151,4.096,4.44,a-cgpr-i1,2023-24
Melrose - Melrose High,1780505,39,36.4,0,0.4,0.4,0,0,0.9,2.2,20.8,231,4.064,4.44,a-cgpr-i1,2023-24
Mendon-Upton - Nipmuc Regional High,7100510,33.5,41.9,0.6,6.5,0,1.3,5.8,1.3,0.6,8.4,155,4.77866666666667,4.44,a-cgpr-i1,2023-24
Methuen - Methuen High,1810505,18.8,22.7,0.2,21.4,3.1,0,12.4,2.4,0,19,453,4.192,4.44,a-cgpr-i1,2023-24
Middleborough - Middleborough High,1820505,20.8,33.9,0,14.2,1.6,1.1,16.4,1.6,1.6,8.7,183,4.69333333333333,4.44,a-cgpr-i1,2023-24
Milford - Milford High,1850505,24.5,30.3,0,7.3,0.4,0,7.3,1.5,1.1,27.6,261,3.72266666666667,4.44,a-cgpr-i1,2023-24
Millbury - Millbury Junior/Senior High,1860505,29.2,34.5,0,15,2.7,0,0,2.7,13.3,2.7,113,4.34133333333333,4.44,a-cgpr-i1,2023-24
Millis - Millis High School,1870505,38.6,38.6,0,8,0,0,4.5,2.3,1.1,6.8,88,4.784,4.44,a-cgpr-i1,2023-24
Milton - Milton High,1890505,46.8,36.4,0,5.6,4.1,0.4,2.6,0.7,1.5,1.9,269,5.11466666666667,4.44,a-cgpr-i1,2023-24
Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,19.6,24.6,1.4,8.7,0.7,8.7,17.4,2.2,16.7,0,138,4.32533333333333,4.44,a-cgpr-i1,2023-24
Mohawk Trail - Mohawk Trail Regional School,7170505,19.6,29.4,0,19.6,0,0,31.4,0,0,0,51,5.33333333333333,4.44,a-cgpr-i1,2023-24
Monomoy Regional School District - Monomoy Regional High School,7120515,38.1,22.1,0.9,25.7,0.9,0.9,8.8,1.8,0.9,0,113,5.19466666666667,4.44,a-cgpr-i1,2023-24
Monson - Monson High School,1910505,32.1,35.7,1.8,17.9,1.8,0,8.9,1.8,0,0,56,5.23733333333333,4.44,a-cgpr-i1,2023-24
Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,11.3,23.6,0.3,18.8,1.2,0,33.4,1.5,9.9,0,335,4.72533333333333,4.44,a-cgpr-i1,2023-24
Mount Greylock - Mt Greylock Regional High,7150505,46.4,25,1.2,15.5,3.6,0,4.8,1.2,2.4,0,84,5.14666666666667,4.44,a-cgpr-i1,2023-24
Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,36.5,54.1,0,3.5,1.2,0,3.5,0,1.2,0,85,5.26933333333333,4.44,a-cgpr-i1,2023-24
Nantucket - Nantucket High,1970505,29.7,31.4,1.7,5.1,0,0,31.4,0.8,0,0,118,5.296,4.44,a-cgpr-i1,2023-24
Narragansett - Narragansett Regional High,7200505,15.4,23.1,0,21.2,0,0,7.7,3.8,11.5,17.3,52,3.59466666666667,4.44,a-cgpr-i1,2023-24
Nashoba - Nashoba Regional,7250505,44.4,38.8,0.4,8.2,0,0.4,4.3,0,0.9,2.6,232,5.14666666666667,4.44,a-cgpr-i1,2023-24
Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,10.5,19.2,0,15.7,2.9,0,37.2,2.3,0,12.2,172,4.56,4.44,a-cgpr-i1,2023-24
Natick - Natick High,1980505,43.5,41,0,5.8,0.3,1,3.3,1.5,3.5,0,395,5.06133333333333,4.44,a-cgpr-i1,2023-24
Nauset - Nauset Regional High,6600505,42.4,29.5,0,13.8,0,0,9.4,0,4.9,0,224,5.072,4.44,a-cgpr-i1,2023-24
Needham - Needham High,1990505,55,36.3,0,0.7,0.7,0,0.5,0.2,0.2,6.3,413,4.97066666666667,4.44,a-cgpr-i1,2023-24
Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,24.5,34.7,2,12.2,0,0,12.2,6.1,4.1,4.1,49,4.56533333333333,4.44,a-cgpr-i1,2023-24
New Bedford - New Bedford High,2010505,7.4,16.8,0,24.7,2.3,0.2,45.5,1.3,1.3,0.4,470,5.168,4.44,a-cgpr-i1,2023-24
New Bedford - Trinity Day Academy,2010510,0,0,0,16.7,16.7,0,50,0,16.7,0,6,4.448,4.44,a-cgpr-i1,2023-24
New Bedford - Whaling City Junior/Senior High School,2010515,0,14.3,14.3,28.6,0,0,42.9,0,0,0,7,5.33866666666667,4.44,a-cgpr-i1,2023-24
New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,100,0,0,0,0,0,0,0,0,86,5.33333333333333,4.44,a-cgpr-i1,2023-24
Newburyport - Newburyport High,2040505,34.5,49.5,0,6,1,0,4,0.5,3,1.5,200,5.06666666666667,4.44,a-cgpr-i1,2023-24
Newton - Newton North High,2070505,49.4,35.8,0,2.9,0.6,0,2.9,0.8,7,0.6,486,4.88533333333333,4.44,a-cgpr-i1,2023-24
Newton - Newton South High,2070510,58.4,29.7,0.6,2.3,0.4,0,1,1,0.2,6.3,478,4.928,4.44,a-cgpr-i1,2023-24
Norfolk County Agricultural - Norfolk County Agricultural,9150705,14.7,41.9,1.6,12.4,1.6,0,21.7,1.6,4.7,0,129,5.008,4.44,a-cgpr-i1,2023-24
North Adams - Drury High,2090505,21.1,25,0,5.3,7.9,0,25,1.3,7.9,6.6,76,4.496,4.44,a-cgpr-i1,2023-24
North Andover - North Andover High,2110505,44.1,31.8,0,9.9,2.9,0,8,1.6,0.5,1.1,374,5.15733333333333,4.44,a-cgpr-i1,2023-24
North Attleborough - North Attleboro High,2120505,33.1,38.5,0,9.3,0,0,5.1,0.4,0,13.6,257,4.58666666666667,4.44,a-cgpr-i1,2023-24
North Brookfield - North Brookfield High,2150505,8.3,20.8,0,4.2,4.2,0,12.5,0,0,50,24,2.66666666666667,4.44,a-cgpr-i1,2023-24
North Middlesex - North Middlesex Regional,7350505,29.9,38.8,0,12.9,2.5,0,9,1,5,1,201,4.96533333333333,4.44,a-cgpr-i1,2023-24
North Reading - North Reading High,2170505,49.2,38.4,0,3.2,1.6,0.5,3.2,0.5,1.1,2.2,185,5.12533333333333,4.44,a-cgpr-i1,2023-24
Northampton - Northampton High,2100505,45.4,22,0,13.8,0,2.8,4.6,0.5,7.3,3.7,218,4.72533333333333,4.44,a-cgpr-i1,2023-24
Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,5.8,7.5,0,12.5,6.7,0,51.7,6.7,0.8,8.3,120,4.49066666666667,4.44,a-cgpr-i1,2023-24
Northboro-Southboro - Algonquin Regional High,7300505,52.6,35.3,0.3,4.2,1.1,0,4.7,0,1.8,0,380,5.23733333333333,4.44,a-cgpr-i1,2023-24
Northbridge - Northbridge High,2140505,22.5,34.2,0,7.2,3.6,0,23.4,5.4,0.9,2.7,111,4.848,4.44,a-cgpr-i1,2023-24
Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,17.6,10,1.3,8.6,1.7,0.7,41.5,1.3,0,17.3,301,4.34133333333333,4.44,a-cgpr-i1,2023-24
Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,11.9,20.2,0.9,11,5.5,0,44,6.4,0,0,109,4.98666666666667,4.44,a-cgpr-i1,2023-24
Norton - Norton High,2180505,32,38.3,0,6.9,5.7,0,5.1,2.3,4,5.7,175,4.69333333333333,4.44,a-cgpr-i1,2023-24
Norwell - Norwell High,2190505,55.2,35.8,0,4.2,0.6,0.6,2.4,0,0,1.2,165,5.26933333333333,4.44,a-cgpr-i1,2023-24
Norwood - Norwood High,2200505,35.7,25.3,0.4,14.1,7.9,0,0.8,2.5,13.3,0,241,4.49066666666667,4.44,a-cgpr-i1,2023-24
Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,7.7,20.8,0,17.7,0,0,45.4,3.8,2.3,2.3,130,4.88533333333333,4.44,a-cgpr-i1,2023-24
Old Rochester - Old Rochester Regional High,7400505,34.4,43.5,0,8.6,1.6,0,5.4,1.1,1.1,4.3,186,4.98666666666667,4.44,a-cgpr-i1,2023-24
Oxford - Oxford High,2260505,22.5,34.8,0,7.9,3.4,0,7.9,4.5,7.9,11.2,89,4.08,4.44,a-cgpr-i1,2023-24
Palmer - Palmer High,2270505,28.2,24.4,0,17.9,3.8,0,23.1,1.3,0,1.3,78,5.19466666666667,4.44,a-cgpr-i1,2023-24
Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,8.8,9.6,2.2,16.2,0,1.5,30.1,3.7,15.4,12.5,136,3.648,4.44,a-cgpr-i1,2023-24
Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,10.3,17.2,0,48.3,1.7,0,17.2,1.7,1.7,1.7,58,5.05066666666667,4.44,a-cgpr-i1,2023-24
Peabody - Peabody Veterans Memorial High,2290510,19.4,44.9,0.9,14.8,1.8,1.2,11.7,1.5,0,3.7,325,5.05066666666667,4.44,a-cgpr-i1,2023-24
Pembroke - Pembroke High School,2310505,18,42.5,0,3.5,0,0,0,0,0,36,200,3.41333333333333,4.44,a-cgpr-i1,2023-24
Pentucket - Pentucket Regional Sr High,7450505,40.5,27.4,0,9.5,1.1,0,0,0,4.7,16.8,190,4.18666666666667,4.44,a-cgpr-i1,2023-24
Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,0,0,0,25,0,0,75,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24
Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,18.2,18.2,0,18.2,9.1,0,27.3,9.1,0,0,11,4.85333333333333,4.44,a-cgpr-i1,2023-24
Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,75,0,12.5,0,0,12.5,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24
Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,48.1,34.6,0,15.4,0,0,0,1.9,0,0,52,5.232,4.44,a-cgpr-i1,2023-24
Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,34,40,0,20,2,0,0,4,0,0,50,5.12,4.44,a-cgpr-i1,2023-24
Pioneer Valley - Pioneer Valley Regional,7500505,15.7,31.4,0,25.5,5.9,0,13.7,3.9,3.9,0,51,4.91733333333333,4.44,a-cgpr-i1,2023-24
Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,57.1,32.1,0,7.1,0,0,0,0,0,3.6,28,5.136,4.44,a-cgpr-i1,2023-24
Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,35.1,24.6,0,26.3,0,0,8.8,1.8,0,3.5,57,5.056,4.44,a-cgpr-i1,2023-24
Pittsfield - Eagle Education Academy,2360525,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24
Pittsfield - Pittsfield High,2360505,20,22.2,0.5,24.9,2.2,0,16.8,1.6,4.3,7.6,185,4.61866666666667,4.44,a-cgpr-i1,2023-24
Pittsfield - Taconic High,2360510,22.1,7,0,34.7,5.5,0,14.1,2.5,5.5,8.5,199,4.448,4.44,a-cgpr-i1,2023-24
Plymouth - Plymouth North High,2390505,25.9,29.3,0,7.6,1.7,0.3,33.8,1,0,0.3,290,5.25866666666667,4.44,a-cgpr-i1,2023-24
Plymouth - Plymouth South High,2390515,23.8,28.2,0.7,9.5,1.5,1.1,31.1,3.3,0.7,0,273,5.11466666666667,4.44,a-cgpr-i1,2023-24
Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,39.1,37.7,0,13,0,1.4,2.9,0,2.9,2.9,69,5.01866666666667,4.44,a-cgpr-i1,2023-24
Quabbin - Quabbin Regional High School,7530505,27.6,35.9,0,11.7,0.7,0.7,20,2.8,0,0.7,145,5.152,4.44,a-cgpr-i1,2023-24
Quaboag Regional - Quaboag Regional High,7780505,27.6,34.5,0,12.6,2.3,0,17.2,1.1,1.1,3.4,87,5.024,4.44,a-cgpr-i1,2023-24
Quincy - North Quincy High,2430510,31.1,40.5,1.6,9.7,1.3,1,3.6,4.9,4.2,2.3,309,4.736,4.44,a-cgpr-i1,2023-24
Quincy - Quincy High,2430505,22.6,37.3,0.8,9.9,0.3,3.8,4.6,0.5,0.5,19.8,394,4.22933333333333,4.44,a-cgpr-i1,2023-24
Ralph C Mahar - Ralph C Mahar Regional,7550505,7.4,25.5,0,35.1,1.1,0,22.3,2.1,1.1,5.3,94,4.87466666666667,4.44,a-cgpr-i1,2023-24
Randolph - Randolph High,2440505,19.9,27.6,1.3,18.6,5.1,0,12.2,2.6,0,12.8,156,4.51733333333333,4.44,a-cgpr-i1,2023-24
Reading - Reading Memorial High,2460505,47.7,33.2,0,5.8,2.8,0,3.7,1.8,3.1,1.8,325,4.97066666666667,4.44,a-cgpr-i1,2023-24
Revere - Revere High,2480505,22.9,24.2,0,22.1,2.2,2.4,20.1,0.6,3,2.4,462,5.008,4.44,a-cgpr-i1,2023-24
Revere - Seacoast School,2480520,4,0,0,24,0,0,44,0,8,20,25,3.84,4.44,a-cgpr-i1,2023-24
Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,34.3,37.3,0,6,3,0,9,0,6,4.5,67,4.77866666666667,4.44,a-cgpr-i1,2023-24
Rockland - Rockland Senior High,2510505,0,97.7,0,0,0,0,2.3,0,0,0,130,5.33333333333333,4.44,a-cgpr-i1,2023-24
Rockport - Rockport High,2520510,4.6,70.8,0,7.7,1.5,0,7.7,3.1,4.6,0,65,4.92266666666667,4.44,a-cgpr-i1,2023-24
Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,6.1,74.7,0,13.1,1,0,1,1,2,1,99,5.11466666666667,4.44,a-cgpr-i1,2023-24
Sabis International Charter (District) - Sabis International Charter School,4410505,30.3,21.2,0,30.3,12.1,0,1,2,0,3,99,5.06133333333333,4.44,a-cgpr-i1,2023-24
Salem - New Liberty Innovation School,2580510,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24
Salem - Salem High,2580505,18.9,17.6,0.4,16.7,5.2,1.7,1.7,2.1,17.6,18,233,3.31733333333333,4.44,a-cgpr-i1,2023-24
Salem - Salem Prep High School,2580515,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24
Salem Academy Charter (District) - Salem Academy Charter School,4850485,19.7,65.6,0,4.9,1.6,0,8.2,0,0,0,61,5.33333333333333,4.44,a-cgpr-i1,2023-24
Sandwich - Sandwich High,2610505,31.8,38.4,0,11.9,0.7,0,11.3,2.6,2,1.3,151,5.01866666666667,4.44,a-cgpr-i1,2023-24
Saugus - Saugus High,2620505,27.3,37.9,0,14.3,6.2,0,8.7,0.6,2.5,2.5,161,5.03466666666667,4.44,a-cgpr-i1,2023-24
Scituate - Scituate High School,2640505,44.4,42.3,0,0.4,0,0,4.6,0,3.3,5,241,4.89066666666667,4.44,a-cgpr-i1,2023-24
Seekonk - Seekonk High,2650505,25.9,38.1,0,16.3,4.8,0,5.4,2.7,4.1,2.7,147,4.82666666666667,4.44,a-cgpr-i1,2023-24
Sharon - Sharon High,2660505,47.6,35.8,0,2.4,0,0,0.4,0,2.8,11,254,4.59733333333333,4.44,a-cgpr-i1,2023-24
Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,16.3,17.6,0,14.1,6.1,0,34.8,3.8,0,7.3,313,4.74133333333333,4.44,a-cgpr-i1,2023-24
Shrewsbury - Shrewsbury Sr High,2710505,35,45.5,0,6.6,0.9,0.4,3.7,0.9,0.9,6.1,457,4.912,4.44,a-cgpr-i1,2023-24
Silver Lake - Silver Lake Regional High,7600505,38.5,30.4,0,8.8,2.3,0,16.9,1.9,0.8,0.4,260,5.168,4.44,a-cgpr-i1,2023-24
Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,8.2,69.4,4.1,8.2,0,0,8.2,0,2,0,49,5.232,4.44,a-cgpr-i1,2023-24
Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,27.1,36.7,0.4,20.5,4.4,0.4,5.2,2.2,2.6,0.4,229,5.05066666666667,4.44,a-cgpr-i1,2023-24
Somerville - Full Circle High School,2740510,0,0,0,50,0,0,40,0,0,10,10,4.8,4.44,a-cgpr-i1,2023-24
Somerville - Somerville High,2740505,26.2,28.8,0.8,17.7,4.2,0,13.5,1.9,4.2,2.7,260,4.864,4.44,a-cgpr-i1,2023-24
South Hadley - South Hadley High,2780505,29.7,19.6,0,23.6,0.7,0,9.5,1.4,0,15.5,148,4.432,4.44,a-cgpr-i1,2023-24
South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,11.7,15.2,0,12.9,2.3,4.7,49.1,1.2,1.8,1.2,171,5.11466666666667,4.44,a-cgpr-i1,2023-24
South Shore Charter Public (District) - South Shore Charter Public School,4880550,39.2,39.2,0,13.5,0,0,4.1,0,2.7,1.4,74,5.12,4.44,a-cgpr-i1,2023-24
South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,6.6,22.4,0,8.6,0,0,55.3,4.6,0.7,2,152,4.95466666666667,4.44,a-cgpr-i1,2023-24
Southbridge - Southbridge Academy,2770525,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24
Southbridge - Southbridge High School,2770515,10.3,11.8,1.5,11.8,1.5,0,32.4,2.9,0,27.9,68,3.696,4.44,a-cgpr-i1,2023-24
Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,19.1,24.7,0.3,11.6,3.9,2.5,31.9,2.8,0,3.3,361,5.01333333333333,4.44,a-cgpr-i1,2023-24
Southern Berkshire - Mt Everett Regional,7650505,27.7,29.8,0,17,0,0,10.6,8.5,6.4,0,47,4.53866666666667,4.44,a-cgpr-i1,2023-24
Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,12.6,23.3,0,9.3,4.4,1.9,34.4,3.3,0,10.7,270,4.58133333333333,4.44,a-cgpr-i1,2023-24
Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,25,28.1,0,17.7,2.1,0,16.7,2.1,0,8.3,96,4.77866666666667,4.44,a-cgpr-i1,2023-24
Spencer-E Brookfield - David Prouty High,7670505,12.3,26.3,1.8,21.1,7,1.8,19.3,0,1.8,8.8,57,4.77866666666667,4.44,a-cgpr-i1,2023-24
Springfield - Conservatory of the Arts,2810475,20,13.3,0,20,6.7,0,23.3,3.3,0,13.3,30,4.44266666666667,4.44,a-cgpr-i1,2023-24
Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,50,0,0,50,0,0,0,14,5.33333333333333,4.44,a-cgpr-i1,2023-24
Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,28.6,4.8,0,52.4,9.5,4.8,0,21,4.576,4.44,a-cgpr-i1,2023-24
Springfield - High School Of Commerce,2810510,13.7,13.3,2.2,34.1,6.2,0,14.2,2.2,8.4,5.8,226,4.464,4.44,a-cgpr-i1,2023-24
Springfield - John J Duggan Middle,2810320,13.8,17.2,1.7,20.7,0,0,12.1,1.7,1.7,31,58,3.49333333333333,4.44,a-cgpr-i1,2023-24
Springfield - Liberty Preparatory Academy,2810560,,,,,,,,,,,2,0,4.44,a-cgpr-i1,2023-24
Springfield - Roger L. Putnam Vocational Technical Academy,2810620,14.9,8.8,0,28.9,2.3,0,26.3,5.2,7.8,5.8,308,4.33066666666667,4.44,a-cgpr-i1,2023-24
Springfield - Springfield Central High,2810500,12.6,9.5,0.4,30.5,1.3,0,28.4,4,2.5,10.9,476,4.41066666666667,4.44,a-cgpr-i1,2023-24
Springfield - Springfield High School,2810570,0,6.3,0,31.3,6.3,0,50,6.3,0,0,16,5.008,4.44,a-cgpr-i1,2023-24
Springfield - Springfield High School of Science and Technology,2810530,0,16.5,0.4,26.2,2.6,0,35.2,4.1,1.1,13.9,267,4.31466666666667,4.44,a-cgpr-i1,2023-24
Springfield - Springfield Public Day High School,2810550,0,0,0,15.4,0,0,69.2,0,0,15.4,13,4.512,4.44,a-cgpr-i1,2023-24
Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,29.6,19.8,0,30.9,4.9,0,11.1,1.2,0,2.5,81,5.136,4.44,a-cgpr-i1,2023-24
Stoneham - Stoneham High,2840505,41.4,38.5,0.6,6.3,2.3,0,6.9,0,1.7,2.3,174,5.12,4.44,a-cgpr-i1,2023-24
Stoughton - Stoughton High,2850505,27.3,34.7,0.8,18.8,1.2,2,9,0.4,1.2,4.5,245,5.00266666666667,4.44,a-cgpr-i1,2023-24
Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,47.7,29.7,0,11.8,0,0,2.1,1.5,2.1,5.1,195,4.86933333333333,4.44,a-cgpr-i1,2023-24
Sutton - Sutton High School,2900510,42.4,35.3,0,3.5,5.9,0,8.2,1.2,1.2,2.4,85,5.08266666666667,4.44,a-cgpr-i1,2023-24
Swampscott - Swampscott High,2910505,37.9,42.9,0,5.1,2.8,0,6.2,0.6,2.8,1.7,177,5.06133333333333,4.44,a-cgpr-i1,2023-24
Swansea - Joseph Case High,2920505,15.9,31.8,0.8,23.5,2.3,0,15.2,2.3,0,8.3,132,4.77333333333333,4.44,a-cgpr-i1,2023-24
TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,33.6,0,16.4,5.5,0,10.3,1.4,16.8,16.1,292,3.50933333333333,4.44,a-cgpr-i1,2023-24
Tantasqua - Tantasqua Regional Sr High,7700505,32.6,37.8,1.7,13.4,1.2,0,8.1,1.7,2.3,1.2,172,5.056,4.44,a-cgpr-i1,2023-24
Tantasqua - Tantasqua Regional Vocational,7700605,9.1,12.7,0,25.5,3.6,1.8,40.9,4.5,0.9,0.9,110,4.992,4.44,a-cgpr-i1,2023-24
Taunton - Taunton Alternative High School,2930525,1,1.9,0,5.7,0,0,89.5,1,0,1,105,5.232,4.44,a-cgpr-i1,2023-24
Taunton - Taunton High,2930505,24,33.6,0.7,17.6,1.2,0.2,13.5,2.2,0,6.9,408,4.84266666666667,4.44,a-cgpr-i1,2023-24
Tewksbury - Tewksbury Memorial High,2950505,35.7,43.3,0,5.7,1.9,0,6.7,1.9,2.9,1.9,210,4.976,4.44,a-cgpr-i1,2023-24
Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,24.9,19,0.5,9,1.4,0,42.1,1.8,0.9,0.5,221,5.168,4.44,a-cgpr-i1,2023-24
Triton - Triton Regional High School,7730505,37.2,31,0,9.7,4.8,0,9,0,7.6,0.7,145,4.89066666666667,4.44,a-cgpr-i1,2023-24
Tyngsborough - Tyngsborough High School,3010505,27.9,47.7,0.9,12.6,0,0.9,9.9,0,0,0,111,5.328,4.44,a-cgpr-i1,2023-24
Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,11,20.3,0.6,8.7,2.9,11.6,33.7,5.8,0,5.2,172,4.736,4.44,a-cgpr-i1,2023-24
Uxbridge - Gateway to College,3040515,3.6,0,0,50,3.6,0,42.9,0,0,0,28,5.33866666666667,4.44,a-cgpr-i1,2023-24
Uxbridge - Uxbridge High,3040505,34.6,34.6,0,11.5,1.9,0,13.5,1,0,2.9,104,5.12533333333333,4.44,a-cgpr-i1,2023-24
Wachusett - Wachusett Regional High,7750505,34.1,41.5,0,10.7,1.6,0,4.7,0.6,2.3,4.5,487,4.93866666666667,4.44,a-cgpr-i1,2023-24
Wakefield - Wakefield Memorial High,3050505,40,44.5,0,6.1,0,0,5.3,1.6,2,0.4,245,5.11466666666667,4.44,a-cgpr-i1,2023-24
Walpole - Walpole High,3070505,41,37.2,0,6.5,1.5,0.8,8,0.4,0.8,3.8,261,5.06666666666667,4.44,a-cgpr-i1,2023-24
Waltham - Waltham Sr High,3080505,23.6,26.3,0.5,14.1,3.5,1.1,23.6,1.9,0.5,4.9,369,4.944,4.44,a-cgpr-i1,2023-24
Ware - Ware Junior/Senior High School,3090505,16.7,38.9,0,7.4,3.7,0,29.6,0,1.9,1.9,54,5.136,4.44,a-cgpr-i1,2023-24
Wareham - Wareham Cooperative Alternative School,3100315,0,25,0,0,0,0,75,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24
Wareham - Wareham Senior High,3100505,22.2,28.6,0,9.5,3.2,0,30.2,0,6.3,0,63,4.99733333333333,4.44,a-cgpr-i1,2023-24
Watertown - Watertown High,3140505,36,33.7,0,12.9,0.6,1.1,4.5,0.6,3.4,7.3,178,4.736,4.44,a-cgpr-i1,2023-24
Wayland - Wayland High School,3150505,57.5,32.9,0,1.3,1.8,0,2.2,0,1.3,3.1,228,5.104,4.44,a-cgpr-i1,2023-24
Webster - Bartlett High School,3160505,26.6,11.4,0,13.9,0,0,32.9,2.5,6.3,6.3,79,4.52266666666667,4.44,a-cgpr-i1,2023-24
Wellesley - Wellesley Sr High,3170505,61.9,31.3,0,0.5,1,0,0.3,0,0,5,383,5.06666666666667,4.44,a-cgpr-i1,2023-24
West Boylston - West Boylston Junior/Senior High,3220505,28.8,39.4,0,19.7,4.5,0,0,1.5,6.1,0,66,4.928,4.44,a-cgpr-i1,2023-24
West Bridgewater - West Bridgewater Junior/Senior,3230505,29.1,45.6,0,8.7,1.9,0,13.6,1,0,0,103,5.27466666666667,4.44,a-cgpr-i1,2023-24
West Springfield - West Springfield High,3320505,24.3,16.1,0,33.6,2.5,0.4,16.1,1.8,5,0.4,280,4.96,4.44,a-cgpr-i1,2023-24
Westborough - Westborough High,3210505,45.4,38.1,0,4.8,0.3,0.3,1.3,0.3,2.2,7.3,315,4.81066666666667,4.44,a-cgpr-i1,2023-24
Westfield - Westfield High,3250505,26.2,28,0.4,25.1,0.7,0,15.8,2.5,0.7,0.7,279,5.13066666666667,4.44,a-cgpr-i1,2023-24
Westfield - Westfield Technical Academy,3250605,1.5,11.9,1.5,28.1,0,0,51.9,4.4,0,0.7,135,5.06133333333333,4.44,a-cgpr-i1,2023-24
Westford - Westford Academy,3260505,47.4,39.2,0,8.2,1.6,0.2,1.4,0.7,0.9,0.5,441,5.22666666666667,4.44,a-cgpr-i1,2023-24
Weston - Weston High,3300505,72,24.4,0,0.6,1.8,0,0.6,0,0,0.6,164,5.30133333333333,4.44,a-cgpr-i1,2023-24
Westport - Westport Junior/Senior High School,3310515,16,30.9,0,21,1.2,0,24.7,1.2,1.2,3.7,81,5.00266666666667,4.44,a-cgpr-i1,2023-24
Westwood - Westwood High,3350505,65.6,33.2,0,0.4,0.4,0,0,0,0.4,0,241,5.312,4.44,a-cgpr-i1,2023-24
Weymouth - Weymouth High School,3360505,20.9,32.5,0,13.3,5.7,1.7,12.1,2.1,1.2,10.7,422,4.59733333333333,4.44,a-cgpr-i1,2023-24
Whitman-Hanson - Whitman Hanson Regional,7800505,34.6,32,0,13.8,2.2,0.4,9.7,3.3,0.7,3.3,269,4.944,4.44,a-cgpr-i1,2023-24
Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,13.1,16.9,0,25.1,5.6,0,37.1,2.2,0,0,267,5.216,4.44,a-cgpr-i1,2023-24
Wilmington - Wilmington High,3420505,45.2,29.6,0,8.1,1.1,0,6.5,0.5,5.9,3.2,186,4.82666666666667,4.44,a-cgpr-i1,2023-24
Winchendon - Murdock Academy for Success,3430405,0,9.1,0,18.2,9.1,0,63.6,0,0,0,11,5.33333333333333,4.44,a-cgpr-i1,2023-24
Winchendon - Murdock High School,3430515,16.1,23.2,0,12.5,1.8,0,41.1,0,5.4,0,56,5.05066666666667,4.44,a-cgpr-i1,2023-24
Winchester - Winchester High School,3440505,60.5,32.3,0,1.7,0.6,0,0.3,0.8,2.2,1.7,362,5.088,4.44,a-cgpr-i1,2023-24
Winthrop - Winthrop High School,3460505,35.9,28.2,0.7,12.7,4.9,0,13.4,2.1,0,2.1,142,5.10933333333333,4.44,a-cgpr-i1,2023-24
Woburn - Woburn High,3470505,0,58.7,0,9.6,5.3,0,13.2,3.3,8.3,1.7,303,4.62933333333333,4.44,a-cgpr-i1,2023-24
Worcester - Burncoat Senior High,3480503,13.9,22,0.4,33.1,4.1,0,18.4,3.3,1.2,3.7,245,4.90133333333333,4.44,a-cgpr-i1,2023-24
Worcester - Claremont Academy,3480350,9.5,16.7,2.4,27.4,3.6,0,34.5,2.4,0,3.6,84,5.01866666666667,4.44,a-cgpr-i1,2023-24
Worcester - Doherty Memorial High,3480512,24.7,27.1,0,22.7,3.1,0,19.3,1.6,0,1.6,384,5.168,4.44,a-cgpr-i1,2023-24
Worcester - North High,3480515,5.4,20.8,0.6,38.3,6.1,0,20.8,2.9,0.3,4.8,313,4.90666666666667,4.44,a-cgpr-i1,2023-24
Worcester - South High Community,3480520,17.3,21.2,1,20.6,2.6,0,32,2,0,3.3,306,5.05066666666667,4.44,a-cgpr-i1,2023-24
Worcester - University Pk Campus School,3480285,26.3,42.1,0,13.2,2.6,0,2.6,10.5,2.6,0,38,4.62933333333333,4.44,a-cgpr-i1,2023-24
Worcester - Worcester Technical High,3480605,14.7,40.9,0.3,12.1,0.6,0,17,2.6,0,11.8,347,4.56533333333333,4.44,a-cgpr-i1,2023-24

1 School Name DESE ID 4 Year Private College 4 Year Public College 2 Year Private College 2 Year Public College Other Post Secondary Apprenticeship Work Military Other Unknown Total Raw likert calculation Likert Score Admin Data Item Academic Year
1977 Worcester - South High Community 3480520 18 17.3 2.9 52.6 0 5.9 1.1 0 2.2 272 5.15733333333333 5 a-cgpr-i1 2016-17
1978 Worcester - University Pk Campus School 3480285 25.6 55.8 0 16.3 0 2.3 0 0 0 43 5.33333333333333 5 a-cgpr-i1 2016-17
1979 Worcester - Worcester Technical High 3480605 21 34.8 0.3 30.7 0 9.5 3.2 0.6 0 348 5.136 5 a-cgpr-i1 2016-17
1980 Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School 4450105 24.4 54.9 0 12.2 0 0 3.7 0 4.9 0 82 5.07733333333333 4.44 a-cgpr-i1 2023-24
1981 Abington - Abington High 10505 27.5 28.9 0 18.1 0 2 0 2.7 14.8 6 149 4.08 4.44 a-cgpr-i1 2023-24
1982 Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School 4120530 21.4 51.8 3.6 10.7 10.7 0 0 0 0 1.8 56 5.23733333333333 4.44 a-cgpr-i1 2023-24
1983 Acton-Boxborough - Acton-Boxborough Regional High 6000505 44.5 49.2 1.4 2.1 0.2 0 0.7 0 1.2 0.7 425 5.232 4.44 a-cgpr-i1 2023-24
1984 Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School 4300305 51.8 41 0 3.6 0.7 0 2.9 0 0 0 139 5.33333333333333 4.44 a-cgpr-i1 2023-24
1985 Agawam - Agawam High 50505 25 21.1 0.4 21.9 0 0 15.6 1.6 3.1 11.3 256 4.48 4.44 a-cgpr-i1 2023-24
1986 Amesbury - Amesbury High 70505 24.4 35.6 0 16.3 3.7 0 14.8 3 1.5 0.7 135 5.056 4.44 a-cgpr-i1 2023-24
1987 Amesbury - Amesbury Innovation High School 70515 0 7.1 7.1 28.6 7.1 0 42.9 0 7.1 0 14 4.94933333333333 4.44 a-cgpr-i1 2023-24
1988 Amherst-Pelham - Amherst Regional High 6050505 41.8 20.5 0 14.5 0.5 0 2.7 0.5 1.8 17.7 220 4.26666666666667 4.44 a-cgpr-i1 2023-24
1989 Andover - Andover High 90505 47.5 42.1 0 3.4 0.2 0 3.2 0.7 1.8 1.1 442 5.14133333333333 4.44 a-cgpr-i1 2023-24
1990 Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School 35090305 25.7 25.7 0 40 0 0 0 8.6 0 0 35 4.87466666666667 4.44 a-cgpr-i1 2023-24
1991 Arlington - Arlington High 100505 58.7 28.4 0 5.8 0.9 0.9 1.2 0.3 1.2 2.4 327 5.11466666666667 4.44 a-cgpr-i1 2023-24
1992 Ashburnham-Westminster - Oakmont Regional High School 6100505 32.9 31.7 0.6 16.2 1.2 0 12 2.4 1.8 1.2 167 5.04533333333333 4.44 a-cgpr-i1 2023-24
1993 Ashland - Ashland High 140505 27.6 49.5 0 9.5 1 0 9.5 0.5 0.5 1.9 210 5.17866666666667 4.44 a-cgpr-i1 2023-24
1994 Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School 8010605 11 25.9 0.4 13.3 0 0.8 45.6 3 0 0 263 5.17333333333333 4.44 a-cgpr-i1 2023-24
1995 Athol-Royalston - Athol High 6150505 13 14.5 0 21.7 11.6 0 37.7 0 0 1.4 69 5.25333333333333 4.44 a-cgpr-i1 2023-24
1996 Atlantis Charter (District) - Atlantis Charter School 4910550 19 38.1 0 22.6 0 4.8 8.3 2.4 0 4.8 84 4.94933333333333 4.44 a-cgpr-i1 2023-24
1997 Attleboro - Attleboro Community Academy 160515 0 1.9 0 20.4 14.8 1.9 55.6 5.6 0 0 54 5.04533333333333 4.44 a-cgpr-i1 2023-24
1998 Attleboro - Attleboro High 160505 27 28.3 0 18 1.3 0 20.3 3.6 0.3 1.3 389 6.06133333333333 4.44 a-cgpr-i1 2023-24
1999 Auburn - Auburn Senior High 170505 24.4 48.1 0 10 3.1 0 11.9 1.9 0 0.6 160 5.2 4.44 a-cgpr-i1 2023-24
2000 Avon - Avon Middle High School 180510 26.3 42.1 0 18.4 0 0 7.9 2.6 0 2.6 38 5.05066666666667 4.44 a-cgpr-i1 2023-24
2001 Ayer Shirley School District - Ayer Shirley Regional High School 6160505 26.6 38 0 10.1 1.3 0 6.3 8.9 0 8.9 79 4.38933333333333 4.44 a-cgpr-i1 2023-24
2002 Barnstable - Barnstable High 200505 8.7 10.4 0 0.6 0 0 0.3 0.3 0.6 79.2 346 1.06666666666667 4.44 a-cgpr-i1 2023-24
2003 Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School 35020405 50 12.5 0 33.3 2.1 0 0 0 2.1 0 48 5.22133333333333 4.44 a-cgpr-i1 2023-24
2004 Bedford - Bedford High 230505 30.4 40.8 0 11.4 2.2 0 5.4 3.3 3.3 3.3 184 4.81066666666667 4.44 a-cgpr-i1 2023-24
2005 Belchertown - Belchertown High 240505 35.7 17.5 0 20.5 2.9 2.3 2.3 1.8 1.2 15.8 171 4.33066666666667 4.44 a-cgpr-i1 2023-24
2006 Bellingham - Bellingham High School 250505 26.2 32.6 0 13.5 4.3 0 14.2 3.5 4.3 1.4 141 4.84266666666667 4.44 a-cgpr-i1 2023-24
2007 Bellingham - Keough Memorial Academy 250510 0 14.3 0 42.9 0 0 42.9 0 0 0 7 5.33866666666667 4.44 a-cgpr-i1 2023-24
2008 Belmont - Belmont High 260505 65.3 28.4 0 1.6 0.3 0 2.2 0.3 1.9 0 317 5.216 4.44 a-cgpr-i1 2023-24
2009 Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School 4140305 36.7 30 0 26.7 0 0 6.7 0 0 0 30 5.33866666666667 4.44 a-cgpr-i1 2023-24
2010 Berkshire Hills - Monument Mt Regional High 6180505 35.1 20.2 3.5 15.8 0 2.6 12.3 0.9 9.6 0 114 4.77333333333333 4.44 a-cgpr-i1 2023-24
2011 Berlin-Boylston - Tahanto Regional High 6200505 40.2 39 0 7.3 0 0 3.7 1.2 3.7 4.9 82 4.81066666666667 4.44 a-cgpr-i1 2023-24
2012 Beverly - Beverly High 300505 26.4 37 0 15.8 2.1 0 7.5 2.4 3.8 5.1 292 4.736 4.44 a-cgpr-i1 2023-24
2013 Billerica - Billerica Memorial High School 310505 31.3 33.3 0 17.5 3.7 2 9.3 1.2 0.4 1.2 246 5.17866666666667 4.44 a-cgpr-i1 2023-24
2014 Blackstone Valley Regional Vocational Technical - Blackstone Valley 8050605 41.3 30.3 1.3 5.3 3 4.3 10.7 1.7 2 0 300 5.13066666666667 4.44 a-cgpr-i1 2023-24
2015 Blackstone-Millville - Blackstone Millville RHS 6220505 19.4 36.6 2.2 11.8 0 0 23.7 2.2 2.2 2.2 93 4.99733333333333 4.44 a-cgpr-i1 2023-24
2016 Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical 8060605 20.2 22.3 0 14.5 3.1 1 31.1 4.1 0 3.6 193 4.91733333333333 4.44 a-cgpr-i1 2023-24
2017 Boston - Another Course To College 350541 12.1 24.1 0 31 3.4 0 5.2 0 0 24.1 58 4.04266666666667 4.44 a-cgpr-i1 2023-24
2018 Boston - Boston Adult Academy 350548 0 9.7 1.4 19.4 8.3 4.2 19.4 1.4 1.4 34.7 72 3.328 4.44 a-cgpr-i1 2023-24
2019 Boston - Boston Arts Academy 350546 38.2 30.3 1.1 10.1 0 0 9 1.1 4.5 5.6 89 4.73066666666667 4.44 a-cgpr-i1 2023-24
2020 Boston - Boston Collaborative High School 350755 0 3.1 0 9.4 6.3 0 15.6 0 0 65.6 32 1.83466666666667 4.44 a-cgpr-i1 2023-24
2021 Boston - Boston Community Leadership Academy 350558 18.3 22.6 2.2 14 6.5 0 12.9 0 2.2 21.5 93 4.08 4.44 a-cgpr-i1 2023-24
2022 Boston - Boston International High School 350507 9.2 24.1 3.4 28.7 2.3 0 17.2 1.1 0 13.8 87 4.528 4.44 a-cgpr-i1 2023-24
2023 Boston - Boston Latin 350560 56.9 33.3 0 2 1.7 0 2.2 0.5 0.5 2.9 408 5.12533333333333 4.44 a-cgpr-i1 2023-24
2024 Boston - Boston Latin Academy 350545 36.5 37.7 0.6 1.8 2.1 1.2 2.1 0 0.6 17.3 329 4.37333333333333 4.44 a-cgpr-i1 2023-24
2025 Boston - Brighton High 350505 11.2 20.7 0.9 16.4 5.2 0.9 21.6 3.4 3.4 16.4 116 4.10133333333333 4.44 a-cgpr-i1 2023-24
2026 Boston - Charlestown High 350515 9.2 17.7 0 12.3 5.4 0 10.8 0 3.8 40.8 130 2.95466666666667 4.44 a-cgpr-i1 2023-24
2027 Boston - Community Academy 350518 0 4.2 0 4.2 0 0 12.5 4.2 0 75 24 1.11466666666667 4.44 a-cgpr-i1 2023-24
2028 Boston - Community Academy of Science and Health 350581 11.3 26.8 0 21.1 8.5 0 12.7 2.8 5.6 11.3 71 4.288 4.44 a-cgpr-i1 2023-24
2029 Boston - Dearborn 350074 5.7 32.1 0 22.6 0 0 9.4 3.8 0 26.4 53 3.72266666666667 4.44 a-cgpr-i1 2023-24
2030 Boston - Dr. William Henderson Upper 350426 12.3 24.6 0 29.8 3.5 3.5 10.5 1.8 0 14 57 4.49066666666667 4.44 a-cgpr-i1 2023-24
2031 Boston - East Boston High 350530 9.5 16.3 0.3 13.7 2.3 1.6 33.7 1.3 2.3 19 306 4.128 4.44 a-cgpr-i1 2023-24
2032 Boston - Excel High School 350522 12.5 22.5 0.8 16.7 8.3 0.8 12.5 2.5 1.7 21.7 120 3.952 4.44 a-cgpr-i1 2023-24
2033 Boston - Fenway High School 350540 16.5 14.1 1.2 18.8 8.2 1.2 11.8 1.2 2.4 24.7 85 3.82933333333333 4.44 a-cgpr-i1 2023-24
2034 Boston - Greater Egleston Community High School 350543 0 0 0 0 0 0 0 0 2.7 97.3 37 0 4.44 a-cgpr-i1 2023-24
2035 Boston - Horace Mann School for the Deaf 350750 2 0 4.44 a-cgpr-i1 2023-24
2036 Boston - Jeremiah E Burke High 350525 13.2 21.9 0 16.7 5.3 1.8 18.4 4.4 2.6 15.8 114 4.12266666666667 4.44 a-cgpr-i1 2023-24
2037 Boston - Lyon Upper 9-12 350655 25 9.4 3.1 12.5 6.3 3.1 9.4 3.1 12.5 15.6 32 3.66933333333333 4.44 a-cgpr-i1 2023-24
2038 Boston - Madison Park High 350537 4.8 8.4 0.6 25.7 1.2 5.4 26.3 2.4 2.4 22.8 167 3.86133333333333 4.44 a-cgpr-i1 2023-24
2039 Boston - Margarita Muniz Academy 350549 18.3 20 0 6.7 5 1.7 1.7 1.7 0 45 60 2.848 4.44 a-cgpr-i1 2023-24
2040 Boston - New Mission High School 350542 18.1 41.7 1.4 11.1 6.9 1.4 8.3 2.8 1.4 6.9 72 4.74133333333333 4.44 a-cgpr-i1 2023-24
2041 Boston - O'Bryant School Math/Science 350575 27.1 37.3 0.6 15.4 3.6 0 5.7 2.4 1.2 6.6 332 4.784 4.44 a-cgpr-i1 2023-24
2042 Boston - Quincy Upper School 350565 31.3 20.3 0 4.7 6.3 0 6.3 0 4.7 26.6 64 3.67466666666667 4.44 a-cgpr-i1 2023-24
2043 Boston - Snowden International School at Copley 350690 10.9 13.9 0 8.9 0 0 7.9 0 1 57.4 101 2.21866666666667 4.44 a-cgpr-i1 2023-24
2044 Boston - TechBoston Academy 350657 19.7 19.7 0.8 24.6 6.6 0 16.4 1.6 1.6 9 122 4.68266666666667 4.44 a-cgpr-i1 2023-24
2045 Boston - The English High 350535 9 15.6 1.6 22.1 7.4 2.5 13.9 1.6 4.1 22.1 122 3.84533333333333 4.44 a-cgpr-i1 2023-24
2046 Boston - William McKinley 350363 2.5 0 0 10 2.5 0 7.5 2.5 0 75 40 1.2 4.44 a-cgpr-i1 2023-24
2047 Boston Collegiate Charter (District) - Boston Collegiate Charter School 4490305 49.3 26.1 0 11.6 2.9 0 4.3 2.9 2.9 0 69 5.024 4.44 a-cgpr-i1 2023-24
2048 Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School 4240505 11.1 18.5 0 11.1 25.9 11.1 22.2 0 0 0 27 5.328 4.44 a-cgpr-i1 2023-24
2049 Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School 4110305 22.5 19.7 1.4 19.7 5.6 0 16.9 0 2.8 11.3 71 4.576 4.44 a-cgpr-i1 2023-24
2050 Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School 4160305 34.8 42.4 9.1 6.1 0 0 7.6 0 0 0 66 5.33333333333333 4.44 a-cgpr-i1 2023-24
2051 Bourne - Bourne High School 360505 24.3 33.9 0 12.2 1.7 0 6.1 1.7 0 20 115 4.17066666666667 4.44 a-cgpr-i1 2023-24
2052 Braintree - Braintree High 400505 35.2 40.4 0 13.2 1.9 0 6.7 2.4 0 0.2 418 5.19466666666667 4.44 a-cgpr-i1 2023-24
2053 Bridgewater-Raynham - Bridgewater-Raynham Regional 6250505 30 42.8 0.3 7.1 1.1 0 5.7 1.9 2.7 8.4 367 4.64 4.44 a-cgpr-i1 2023-24
2054 Bridgewater-Raynham - Therapeutic Day School 6250415 1 0 4.44 a-cgpr-i1 2023-24
2055 Bristol County Agricultural - Bristol County Agricultural High 9100705 12.8 24.5 0 25.5 0 0 23.4 7.4 0 6.4 94 4.59733333333333 4.44 a-cgpr-i1 2023-24
2056 Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical 8100605 10.9 25.4 0 9.2 2.1 14.8 29.6 4.2 0.4 3.5 284 4.90666666666667 4.44 a-cgpr-i1 2023-24
2057 Brockton - Brockton Champion High School 440515 0 0 0 44.4 16.7 0 11.1 0 0 27.8 18 3.85066666666667 4.44 a-cgpr-i1 2023-24
2058 Brockton - Brockton High 440505 15.6 25 0.1 22.5 4.6 0.3 12.8 3.3 3.7 12.2 737 4.31466666666667 4.44 a-cgpr-i1 2023-24
2059 Brockton - Edison Academy 440520 0 0 0 0 0 0 0 0 0.5 99.5 197 0 4.44 a-cgpr-i1 2023-24
2060 Brockton - Frederick Douglass Academy 440080 3 0 4.44 a-cgpr-i1 2023-24
2061 Brockton - Huntington Therapeutic Day School 440400 0 20 0 30 20 0 30 0 0 0 10 5.33333333333333 4.44 a-cgpr-i1 2023-24
2062 Brooke Charter School (District) - Brooke Charter School 4280305 38.2 35.3 0 11.8 0 0 11.8 0 2.9 0 34 5.17866666666667 4.44 a-cgpr-i1 2023-24
2063 Brookline - Brookline High 460505 56.4 29.6 0 4.5 0 0 2.7 1 4.1 1.6 486 4.97066666666667 4.44 a-cgpr-i1 2023-24
2064 Burlington - Burlington High 480505 32.9 44.6 0 7.9 2.5 0.4 10.4 0.8 0.4 0 240 5.264 4.44 a-cgpr-i1 2023-24
2065 Cambridge - Cambridge Rindge and Latin 490506 46.9 28.2 0.2 11.6 3.9 0.9 3.3 1.1 3.3 0.7 458 5.06666666666667 4.44 a-cgpr-i1 2023-24
2066 Canton - Canton High 500505 44.3 41.9 0.4 7.9 1.2 0 1.6 2.4 0.4 0 253 5.18933333333333 4.44 a-cgpr-i1 2023-24
2067 Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical 8150605 3.9 10.9 0 14.1 0.8 0 28.9 1.6 6.3 33.6 128 3.12533333333333 4.44 a-cgpr-i1 2023-24
2068 Carver - Carver Middle/High School 520405 30.5 33.3 0 19 3.8 1.9 6.7 1 1 2.9 105 5.07733333333333 4.44 a-cgpr-i1 2023-24
2069 Central Berkshire - Wahconah Regional High 6350505 23.1 32.3 0 18.5 6.2 0 16.2 3.1 0.8 0 130 5.136 4.44 a-cgpr-i1 2023-24
2070 Chelmsford - Chelmsford High 560505 31.6 41.1 0 2.5 0 0 0 0 0 24.9 358 4.01066666666667 4.44 a-cgpr-i1 2023-24
2071 Chelsea - Chelsea High 570505 9.7 10.1 0.8 27.9 5.7 1.2 32.8 2 9.3 0.4 247 4.704 4.44 a-cgpr-i1 2023-24
2072 Chelsea - Chelsea Opportunity Academy 570515 0 0 5 55 10 0 25 5 0 0 20 5.06666666666667 4.44 a-cgpr-i1 2023-24
2073 Chicopee - Chicopee Academy 610021 0 0 0 33.3 0 0 44.4 0 0 22.2 9 4.144 4.44 a-cgpr-i1 2023-24
2074 Chicopee - Chicopee Comprehensive High School 610510 14.1 13.4 0 13.8 0.4 1.1 8 0 0.4 48.9 276 2.70933333333333 4.44 a-cgpr-i1 2023-24
2075 Chicopee - Chicopee High 610505 19.7 9.6 0 15.8 0.9 0 11.8 3.1 0 39 228 3.08266666666667 4.44 a-cgpr-i1 2023-24
2076 City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street 4370505 28.8 18.2 7.6 15.2 0 0 27.3 1.5 0 1.5 66 5.17866666666667 4.44 a-cgpr-i1 2023-24
2077 Clinton - Clinton Senior High 640505 20.3 27.6 0 23.6 5.7 0 21.1 0 0 1.6 123 5.24266666666667 4.44 a-cgpr-i1 2023-24
2078 Codman Academy Charter Public (District) - Codman Academy Charter Public School 4380505 31.8 36.4 0 13.6 4.5 0 0 0 0 13.6 22 4.60266666666667 4.44 a-cgpr-i1 2023-24
2079 Cohasset - Cohasset High School 650505 66.1 26 0 0 0 0 0 0 0 7.9 127 4.912 4.44 a-cgpr-i1 2023-24
2080 Community Charter School of Cambridge (District) - Community Charter School of Cambridge 4360305 51.6 29 0 12.9 3.2 0 3.2 0 0 0 31 5.328 4.44 a-cgpr-i1 2023-24
2081 Concord-Carlisle - Concord Carlisle High 6400505 57 28.7 0 2 4.2 0 1.6 0.3 4.2 2 307 4.98666666666667 4.44 a-cgpr-i1 2023-24
2082 Danvers - Danvers High 710505 0 99.1 0 0 0 0 0 0 0.4 0.4 231 5.28533333333333 4.44 a-cgpr-i1 2023-24
2083 Dartmouth - Dartmouth High 720505 24.9 38.5 0 17.9 2.7 0 7 1.2 1.6 6.2 257 4.85333333333333 4.44 a-cgpr-i1 2023-24
2084 Dedham - Dedham High 730505 29.9 35 0.6 9.6 5.1 1.1 15.8 1.1 0.6 1.1 177 5.17866666666667 4.44 a-cgpr-i1 2023-24
2085 Dennis-Yarmouth - Dennis-Yarmouth Regional High 6450505 22 24.4 1.2 24.4 1.8 1.2 20.7 3 1.2 0 164 5.104 4.44 a-cgpr-i1 2023-24
2086 Dighton-Rehoboth - Dighton-Rehoboth Regional High School 6500505 32.4 35.7 0.5 8 1.9 0 19.2 2.3 0 0 213 5.21066666666667 4.44 a-cgpr-i1 2023-24
2087 Douglas - Douglas High School 770505 24.7 25.9 0 16.5 3.5 0 12.9 3.5 1.2 11.8 85 4.45333333333333 4.44 a-cgpr-i1 2023-24
2088 Dover-Sherborn - Dover-Sherborn Regional High 6550505 65.3 26.5 0 1.2 2.4 0 1.8 0 1.8 1.2 170 5.184 4.44 a-cgpr-i1 2023-24
2089 Dracut - Dracut Senior High 790505 17.8 36 0.4 23.6 4.9 1.8 12.4 0.4 0.4 2.2 225 5.168 4.44 a-cgpr-i1 2023-24
2090 Dudley-Charlton Reg - Shepherd Hill Regional High 6580505 33.2 33.2 0 10.2 2.6 0 7.9 1.9 4.5 6.4 265 4.64533333333333 4.44 a-cgpr-i1 2023-24
2091 Duxbury - Duxbury High 820505 52.4 35.8 0.4 3.3 2 0 3.3 0.8 2 0 246 5.184 4.44 a-cgpr-i1 2023-24
2092 East Bridgewater - East Bridgewater JR./SR. High School 830505 26.2 40 0 8.3 4.1 0 16.6 0.7 4.1 0 145 5.07733333333333 4.44 a-cgpr-i1 2023-24
2093 East Longmeadow - East Longmeadow High 870505 33.3 28.7 0 21.1 2.9 1.2 8.8 2.3 1.2 0.6 171 5.12 4.44 a-cgpr-i1 2023-24
2094 Easthampton - Easthampton High 860505 24.5 23.6 0 14.2 0.9 0 22.6 0 0 14.2 106 4.576 4.44 a-cgpr-i1 2023-24
2095 Easton - Oliver Ames High 880505 41.2 38.3 0 8.8 4 0 4.7 1.1 0.4 1.5 274 5.17333333333333 4.44 a-cgpr-i1 2023-24
2096 Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School) 4520505 18 41.6 0 37.1 0 0 1.1 0 0 2.2 89 5.216 4.44 a-cgpr-i1 2023-24
2097 Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School 8170505 22.7 37.9 0 6.4 0.3 0 21.6 2.3 8.5 0.3 343 4.74133333333333 4.44 a-cgpr-i1 2023-24
2098 Everett - Devens School 930030 1 0 4.44 a-cgpr-i1 2023-24
2099 Everett - Everett High 930505 0 43.2 0 7.4 0 4.7 11.2 1.2 24.1 8.2 403 3.54666666666667 4.44 a-cgpr-i1 2023-24
2100 Excel Academy Charter (District) - Excel Academy Charter School 4100205 29.9 29.3 2.5 13.4 5.1 3.2 10.8 1.3 0.6 3.8 157 5.024 4.44 a-cgpr-i1 2023-24
2101 Fairhaven - Fairhaven High 940505 20.1 45.5 0 16.4 1.6 0 13.8 0 2.6 0 189 5.19466666666667 4.44 a-cgpr-i1 2023-24
2102 Fall River - B M C Durfee High 950505 10.2 16.1 0.2 27.5 2.6 0.4 38.6 3.5 0.7 0.2 461 5.09866666666667 4.44 a-cgpr-i1 2023-24
2103 Fall River - Resiliency Preparatory Academy 950525 1.3 6.3 0 28.8 6.3 0 22.5 1.3 16.3 17.5 80 3.47733333333333 4.44 a-cgpr-i1 2023-24
2104 Fall River - Stone PK-12 School 950340 4 0 4.44 a-cgpr-i1 2023-24
2105 Falmouth - Falmouth High 960505 29.7 37.4 0 15.9 1.6 0 5.5 1.6 2.2 6 182 4.80533333333333 4.44 a-cgpr-i1 2023-24
2106 Fitchburg - Fitchburg High 970505 11.5 29.2 0.4 33.7 0.8 0 18.1 3.7 2.5 0 243 4.99733333333333 4.44 a-cgpr-i1 2023-24
2107 Fitchburg - Goodrich Academy 970510 0 2 0 10.1 3 0 75.8 1 1 7.1 99 4.848 4.44 a-cgpr-i1 2023-24
2108 Four Rivers Charter Public (District) - Four Rivers Charter Public School 4130505 39.3 32.1 0 21.4 0 0 3.6 0 0 3.6 28 5.14133333333333 4.44 a-cgpr-i1 2023-24
2109 Foxborough - Foxborough High 990505 33.3 45.9 0 5.5 1.1 2.7 8.2 1.1 1.6 0.5 183 5.15733333333333 4.44 a-cgpr-i1 2023-24
2110 Foxborough Regional Charter (District) - Foxborough Regional Charter School 4460550 31.7 46 1.6 15.9 1.6 0 3.2 0 0 0 63 5.33333333333333 4.44 a-cgpr-i1 2023-24
2111 Framingham - Framingham High School 1000515 21.3 34.1 0.2 16.7 4.8 0 19.4 2 1.3 0.2 540 5.14666666666667 4.44 a-cgpr-i1 2023-24
2112 Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School 4780505 41.4 34.5 0 5.2 3.4 0 12.1 0 1.7 1.7 58 5.152 4.44 a-cgpr-i1 2023-24
2113 Franklin - Franklin High 1010505 40 44.9 0.5 4.7 1.1 0 6.5 1.1 0.2 0.9 443 5.21066666666667 4.44 a-cgpr-i1 2023-24
2114 Franklin County Regional Vocational Technical - Franklin County Technical 8180605 2 2.9 0 16.7 0 0 67.6 4.9 4.9 1 102 4.75733333333333 4.44 a-cgpr-i1 2023-24
2115 Freetown-Lakeville - Apponequet Regional High 6650505 27 30.4 0 19.1 6.9 0 15.2 1.5 0 0 204 5.25866666666667 4.44 a-cgpr-i1 2023-24
2116 Frontier - Frontier Regional 6700505 38.8 32.7 0 18.4 2 0 6.1 2 0 0 98 5.22666666666667 4.44 a-cgpr-i1 2023-24
2117 Gardner - Gardner Academy for Learning and Technology 1030515 7.5 20 5 32.5 5 0 25 2.5 0 2.5 40 5.06666666666667 4.44 a-cgpr-i1 2023-24
2118 Gardner - Gardner High 1030505 12.1 25.8 0 33.3 4.5 0 17.4 3 2.3 1.5 132 4.96533333333333 4.44 a-cgpr-i1 2023-24
2119 Gateway - Gateway Regional High 6720505 14.3 32.1 0 19.6 0 0 28.6 1.8 0 3.6 56 5.04533333333333 4.44 a-cgpr-i1 2023-24
2120 Georgetown - Georgetown High School 1050505 40.9 42 0 9.1 3.4 0 3.4 0 1.1 0 88 5.26933333333333 4.44 a-cgpr-i1 2023-24
2121 Gill-Montague - Turners Fall High 6740505 13.7 13.7 0 33.3 2 0 27.5 2 0 7.8 51 4.81066666666667 4.44 a-cgpr-i1 2023-24
2122 Global Learning Charter Public (District) - Global Learning Charter Public School 4960305 0 50 0 29.2 0 0 16.7 4.2 0 0 24 5.11466666666667 4.44 a-cgpr-i1 2023-24
2123 Gloucester - Gloucester High 1070505 17.3 20.5 0 14.7 8.3 0 21.8 2.6 2.6 12.2 156 4.40533333333333 4.44 a-cgpr-i1 2023-24
2124 Grafton - Grafton High School 1100505 30.9 46.1 0.6 10.7 1.1 1.1 6.2 1.1 1.7 0.6 178 5.15733333333333 4.44 a-cgpr-i1 2023-24
2125 Granby - Granby Jr Sr High School 1110505 17.3 19.2 0 34.6 0 0 28.8 0 0 0 52 5.328 4.44 a-cgpr-i1 2023-24
2126 Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High 8210605 7.5 18.5 0 21.7 4.3 0.6 35.5 4.3 2.3 5.2 346 4.69866666666667 4.44 a-cgpr-i1 2023-24
2127 Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical 8230605 7.2 10.4 0.3 38 1.1 21.8 19.9 0.8 0 0.5 376 5.264 4.44 a-cgpr-i1 2023-24
2128 Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical 8280605 11.6 16 0.4 23.2 2.9 0 35.6 6.3 0 4 525 4.784 4.44 a-cgpr-i1 2023-24
2129 Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical 8250605 3.1 27.4 0 25.9 3.7 0 36.6 3.3 0 0 486 5.15733333333333 4.44 a-cgpr-i1 2023-24
2130 Greenfield - Greenfield High 1140505 19.5 20.8 0 22.1 0 0 33.8 2.6 0 1.3 77 5.13066666666667 4.44 a-cgpr-i1 2023-24
2131 Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School 39010900 7.7 15.4 0 24.4 2.6 0 24.4 1.3 1.3 23.1 78 3.97333333333333 4.44 a-cgpr-i1 2023-24
2132 Groton-Dunstable - Groton Dunstable Regional 6730505 33 48.2 0.5 8.4 2.1 0 4.2 0.5 0 3.1 191 5.14133333333333 4.44 a-cgpr-i1 2023-24
2133 Hadley - Hopkins Academy 1170505 0 73.8 0 9.5 2.4 0 4.8 0 2.4 7.1 42 4.82666666666667 4.44 a-cgpr-i1 2023-24
2134 Hamilton-Wenham - Hamilton-Wenham Regional High 6750505 45.9 39.3 0 7.4 1.5 0 3 0 1.5 1.5 135 5.17866666666667 4.44 a-cgpr-i1 2023-24
2135 Hampden Charter School of Science East (District) - Hampden Charter School of Science East 4990305 38.9 27.8 0 24.1 0 3.7 0 3.7 1.9 0 54 5.04 4.44 a-cgpr-i1 2023-24
2136 Hampden-Wilbraham - Minnechaug Regional High 6800505 31.4 35.6 0 19.7 0.4 0 9.2 1.3 0.4 2.1 239 5.136 4.44 a-cgpr-i1 2023-24
2137 Hampshire - Hampshire Regional High 6830505 20 26 0 44 0 0 3 1 4 2 100 4.96 4.44 a-cgpr-i1 2023-24
2138 Hanover - Hanover High 1220505 50.2 31.1 1 1 0 0 1 1 0.5 14.4 209 4.496 4.44 a-cgpr-i1 2023-24
2139 Harvard - Bromfield 1250505 68 24.7 0 3.1 0 0 0 0 0 4.1 97 5.10933333333333 4.44 a-cgpr-i1 2023-24
2140 Hatfield - Smith Academy 1270505 16.7 37.5 0 33.3 0 0 4.2 4.2 4.2 0 24 4.89066666666667 4.44 a-cgpr-i1 2023-24
2141 Haverhill - Crowell 1280515 5 0 4.44 a-cgpr-i1 2023-24
2142 Haverhill - Greenleaf Academy 1280033 4 0 4.44 a-cgpr-i1 2023-24
2143 Haverhill - Haverhill High 1280505 15.5 22.3 0.2 27 5.2 0 25.9 1.1 1.8 0.9 444 5.12533333333333 4.44 a-cgpr-i1 2023-24
2144 Hingham - Hingham High 1310505 52 39.8 0 1.3 1.6 0.3 2.3 0 0.7 2 304 5.18933333333333 4.44 a-cgpr-i1 2023-24
2145 Holbrook - Holbrook Middle High School 1330505 21.7 33.3 0 6.7 0 0 36.7 1.7 0 0 60 5.248 4.44 a-cgpr-i1 2023-24
2146 Holliston - Holliston High 1360505 42.3 40.7 0 3.7 3.2 0 5.8 1.1 3.2 0 189 5.104 4.44 a-cgpr-i1 2023-24
2147 Holyoke - Holyoke High 1370505 3.9 14.4 0.3 22.2 3.3 0 28.9 4.2 0.3 22.5 360 3.89333333333333 4.44 a-cgpr-i1 2023-24
2148 Hoosac Valley Regional - Hoosac Valley High School 6030505 22.7 31.8 0 6.8 2.3 0 22.7 0 9.1 4.5 44 4.60266666666667 4.44 a-cgpr-i1 2023-24
2149 Hopedale - Hopedale Jr Sr High 1380505 46.5 38 0 5.6 2.8 1.4 0 1.4 4.2 0 71 5.02933333333333 4.44 a-cgpr-i1 2023-24
2150 Hopkinton - Hopkinton High 1390505 51.5 35.6 0 1.2 0 0 0.3 0 0 11.3 326 4.72533333333333 4.44 a-cgpr-i1 2023-24
2151 Hudson - Hudson High 1410505 32.2 34.3 0 8.4 0.7 0 20.3 2.1 2.1 0 143 5.11466666666667 4.44 a-cgpr-i1 2023-24
2152 Hull - Hull High 1420505 30.4 30.4 0 8.7 2.9 1.4 15.9 4.3 1.4 4.3 69 4.784 4.44 a-cgpr-i1 2023-24
2153 Innovation Academy Charter (District) - Innovation Academy Charter School 4350305 38.2 41.6 0 6.7 1.1 1.1 7.9 1.1 0 2.2 89 5.152 4.44 a-cgpr-i1 2023-24
2154 Ipswich - Ipswich High 1440505 24.8 42.9 0 13.5 0 0.8 2.3 0 3.8 12 133 4.496 4.44 a-cgpr-i1 2023-24
2155 KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School 4290010 32.2 43.2 0 11 0 0 10.2 0.8 0.8 1.7 118 5.152 4.44 a-cgpr-i1 2023-24
2156 King Philip - King Philip Regional High 6900505 48.6 37.1 0 1 2 0 1.7 0.7 1.4 7.5 294 4.82133333333333 4.44 a-cgpr-i1 2023-24
2157 Lawrence - High School Learning Center 1490536 4.8 11.5 0 13.3 1.8 0 16.4 0.6 0 51.5 165 2.54933333333333 4.44 a-cgpr-i1 2023-24
2158 Lawrence - Lawrence High School 1490515 8.5 19.1 0 24.7 9.8 0 19 1.7 0 17.3 591 4.32533333333333 4.44 a-cgpr-i1 2023-24
2159 Lawrence - RISE Academy 1490615 0 5.6 0 27.8 0 0 5.6 0 0 61.1 18 2.08 4.44 a-cgpr-i1 2023-24
2160 Lawrence - School for Exceptional Studies 1490537 0 16.7 0 33.3 0 0 33.3 0 0 16.7 6 4.44266666666667 4.44 a-cgpr-i1 2023-24
2161 Lee - Lee Middle/High School 1500505 26.2 29.5 0 19.7 0 1.6 18 1.6 3.3 0 61 5.06666666666667 4.44 a-cgpr-i1 2023-24
2162 Leicester - Leicester High 1510505 13.8 40.4 2.1 22.3 1.1 0 17 3.2 0 0 94 5.15733333333333 4.44 a-cgpr-i1 2023-24
2163 Lenox - Lenox Memorial High 1520505 44.1 22 0 18.6 1.7 0 1.7 0 5.1 6.8 59 4.69866666666667 4.44 a-cgpr-i1 2023-24
2164 Leominster - Center For Technical Education Innovation 1530605 5.1 29.4 0.7 15.4 5.9 4.4 31.6 2.2 0 5.1 136 4.93333333333333 4.44 a-cgpr-i1 2023-24
2165 Leominster - Leominster Center for Excellence 1530515 0 0 0 0 36.4 0 45.5 9.1 0 9.1 11 4.368 4.44 a-cgpr-i1 2023-24
2166 Leominster - Leominster High School 1530505 18.6 39.4 1 14.7 2.9 1 16.9 2.6 0 2.9 307 5.04 4.44 a-cgpr-i1 2023-24
2167 Lexington - Lexington High 1550505 58.8 33.6 0 1.1 0 0 1.7 0.4 1.3 3 527 5.07733333333333 4.44 a-cgpr-i1 2023-24
2168 Lincoln-Sudbury - Lincoln-Sudbury Regional High 6950505 55.8 33.6 0.8 2.6 1.3 0.3 3.2 0.5 1.9 0 378 5.20533333333333 4.44 a-cgpr-i1 2023-24
2169 Littleton - Littleton High School 1580505 40.4 47.7 0 11 0 0 0.9 0 0 0 109 5.33333333333333 4.44 a-cgpr-i1 2023-24
2170 Longmeadow - Longmeadow High 1590505 43.6 50.5 0 6 0 0 0 0 0 0 218 5.33866666666667 4.44 a-cgpr-i1 2023-24
2171 Lowell - Leblanc Therapeutic Day School 1600320 0 0 0 0 0 0 12.5 0 0 87.5 8 0.666666666666667 4.44 a-cgpr-i1 2023-24
2172 Lowell - Lowell High 1600505 14.8 28.5 0 23.6 2.5 0.9 7.1 2.1 10.8 9.7 677 4.128 4.44 a-cgpr-i1 2023-24
2173 Lowell - The Career Academy 1600515 0 0 0 0 0 0 26.3 2.6 0 71.1 38 1.40266666666667 4.44 a-cgpr-i1 2023-24
2174 Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School 4580505 0 0 0 38.5 7.7 0 30.8 7.7 7.7 7.7 13 4.10666666666667 4.44 a-cgpr-i1 2023-24
2175 Ludlow - Ludlow Senior High 1610505 37.4 17.2 0.5 21.2 6.1 1 4 2 5.1 5.6 198 4.66133333333333 4.44 a-cgpr-i1 2023-24
2176 Lunenburg - Lunenburg High 1620505 23.4 45.8 0 13.1 0.9 0 10.3 0.9 0 5.6 107 4.98666666666667 4.44 a-cgpr-i1 2023-24
2177 Lynn - Classical High 1630505 9.9 18.4 0.3 27.2 1.9 0 29.1 1.4 2.7 9.1 364 4.62933333333333 4.44 a-cgpr-i1 2023-24
2178 Lynn - Fecteau-Leary Junior/Senior High School 1630525 0 0 0 18.2 0 0 77.3 0 0 4.5 22 5.09333333333333 4.44 a-cgpr-i1 2023-24
2179 Lynn - Lynn English High 1630510 11.6 18.6 1.4 14.7 0.9 0 20.7 2.6 1.4 28.1 430 3.62133333333333 4.44 a-cgpr-i1 2023-24
2180 Lynn - Lynn Vocational Technical Institute 1630605 6.7 20.8 0.4 24.2 2.9 0 42.5 2.1 0.4 0 240 5.2 4.44 a-cgpr-i1 2023-24
2181 Lynnfield - Lynnfield High 1640505 48.8 43.4 0.6 0.6 4.2 0 0.6 0 0.6 1.2 166 5.23733333333333 4.44 a-cgpr-i1 2023-24
2182 MATCH Charter Public School (District) - MATCH Charter Public School 4690505 36.1 43.1 0 12.5 0 5.6 2.8 0 0 0 72 5.33866666666667 4.44 a-cgpr-i1 2023-24
2183 Ma Academy for Math and Science - Ma Academy for Math and Science School 4680505 77.1 22.9 0 0 0 0 0 0 0 0 48 5.33333333333333 4.44 a-cgpr-i1 2023-24
2184 Malden - Malden High 1650505 20.6 28.6 0.5 21.6 3.5 1.2 18.7 1.2 2.5 1.5 402 5.05066666666667 4.44 a-cgpr-i1 2023-24
2185 Manchester Essex Regional - Manchester Essex Regional High School 6980510 53.7 39.8 0 0.8 0 0 0.8 0.8 2.4 1.6 123 5.072 4.44 a-cgpr-i1 2023-24
2186 Mansfield - Mansfield High 1670505 38.6 41.7 0.3 4.4 3.7 0 4.4 0.3 2.5 4 321 4.96533333333333 4.44 a-cgpr-i1 2023-24
2187 Map Academy Charter School (District) - Map Academy Charter School 35170505 0 10 0 45 7.5 0 30 2.5 5 0 40 4.93333333333333 4.44 a-cgpr-i1 2023-24
2188 Marblehead - Marblehead High 1680505 43.7 49 0 0.8 0.8 0 0.8 0.8 3.3 0.8 245 5.072 4.44 a-cgpr-i1 2023-24
2189 Marlborough - Marlborough High 1700505 0 52.8 0 17.1 2 1.2 23.4 0.4 1.6 1.6 252 5.14666666666667 4.44 a-cgpr-i1 2023-24
2190 Marshfield - Marshfield High 1710505 32.1 46 0 5.3 1.7 0.3 0 0.7 11.9 2 302 4.55466666666667 4.44 a-cgpr-i1 2023-24
2191 Martha's Vineyard - Martha's Vineyard Regional High 7000505 36 26.1 0 3.1 2.5 0 23 0.6 0.6 8.1 161 4.83733333333333 4.44 a-cgpr-i1 2023-24
2192 Martha's Vineyard Charter (District) - Martha's Vineyard Charter School 4660550 5 0 4.44 a-cgpr-i1 2023-24
2193 Masconomet - Masconomet Regional High School 7050505 43.1 34.7 0 12 0 2.6 3.6 0 1.8 2.2 274 5.12 4.44 a-cgpr-i1 2023-24
2194 Mashpee - Mashpee High 1720505 25 39.7 0 22.4 0 0.9 11.2 0.9 0 0 116 5.29066666666667 4.44 a-cgpr-i1 2023-24
2195 Maynard - Maynard High 1740505 29.3 40 1.3 14.7 0 0 2.7 0 2.7 9.3 75 4.69333333333333 4.44 a-cgpr-i1 2023-24
2196 Medfield - Medfield Senior High 1750505 51.8 35.9 0 0.5 0 0 0 0 0.5 11.3 195 4.704 4.44 a-cgpr-i1 2023-24
2197 Medford - Curtis-Tufts 1760510 4 0 4.44 a-cgpr-i1 2023-24
2198 Medford - Medford High 1760505 23.2 30.1 0 17 2.8 2.4 14.5 1 1.4 7.6 289 4.8 4.44 a-cgpr-i1 2023-24
2199 Medway - Medway High 1770505 43 27.8 0 4 0 0 2 1.3 1.3 20.5 151 4.096 4.44 a-cgpr-i1 2023-24
2200 Melrose - Melrose High 1780505 39 36.4 0 0.4 0.4 0 0 0.9 2.2 20.8 231 4.064 4.44 a-cgpr-i1 2023-24
2201 Mendon-Upton - Nipmuc Regional High 7100510 33.5 41.9 0.6 6.5 0 1.3 5.8 1.3 0.6 8.4 155 4.77866666666667 4.44 a-cgpr-i1 2023-24
2202 Methuen - Methuen High 1810505 18.8 22.7 0.2 21.4 3.1 0 12.4 2.4 0 19 453 4.192 4.44 a-cgpr-i1 2023-24
2203 Middleborough - Middleborough High 1820505 20.8 33.9 0 14.2 1.6 1.1 16.4 1.6 1.6 8.7 183 4.69333333333333 4.44 a-cgpr-i1 2023-24
2204 Milford - Milford High 1850505 24.5 30.3 0 7.3 0.4 0 7.3 1.5 1.1 27.6 261 3.72266666666667 4.44 a-cgpr-i1 2023-24
2205 Millbury - Millbury Junior/Senior High 1860505 29.2 34.5 0 15 2.7 0 0 2.7 13.3 2.7 113 4.34133333333333 4.44 a-cgpr-i1 2023-24
2206 Millis - Millis High School 1870505 38.6 38.6 0 8 0 0 4.5 2.3 1.1 6.8 88 4.784 4.44 a-cgpr-i1 2023-24
2207 Milton - Milton High 1890505 46.8 36.4 0 5.6 4.1 0.4 2.6 0.7 1.5 1.9 269 5.11466666666667 4.44 a-cgpr-i1 2023-24
2208 Minuteman Regional Vocational Technical - Minuteman Regional High 8300605 19.6 24.6 1.4 8.7 0.7 8.7 17.4 2.2 16.7 0 138 4.32533333333333 4.44 a-cgpr-i1 2023-24
2209 Mohawk Trail - Mohawk Trail Regional School 7170505 19.6 29.4 0 19.6 0 0 31.4 0 0 0 51 5.33333333333333 4.44 a-cgpr-i1 2023-24
2210 Monomoy Regional School District - Monomoy Regional High School 7120515 38.1 22.1 0.9 25.7 0.9 0.9 8.8 1.8 0.9 0 113 5.19466666666667 4.44 a-cgpr-i1 2023-24
2211 Monson - Monson High School 1910505 32.1 35.7 1.8 17.9 1.8 0 8.9 1.8 0 0 56 5.23733333333333 4.44 a-cgpr-i1 2023-24
2212 Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical 8320605 11.3 23.6 0.3 18.8 1.2 0 33.4 1.5 9.9 0 335 4.72533333333333 4.44 a-cgpr-i1 2023-24
2213 Mount Greylock - Mt Greylock Regional High 7150505 46.4 25 1.2 15.5 3.6 0 4.8 1.2 2.4 0 84 5.14666666666667 4.44 a-cgpr-i1 2023-24
2214 Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School 4700105 36.5 54.1 0 3.5 1.2 0 3.5 0 1.2 0 85 5.26933333333333 4.44 a-cgpr-i1 2023-24
2215 Nantucket - Nantucket High 1970505 29.7 31.4 1.7 5.1 0 0 31.4 0.8 0 0 118 5.296 4.44 a-cgpr-i1 2023-24
2216 Narragansett - Narragansett Regional High 7200505 15.4 23.1 0 21.2 0 0 7.7 3.8 11.5 17.3 52 3.59466666666667 4.44 a-cgpr-i1 2023-24
2217 Nashoba - Nashoba Regional 7250505 44.4 38.8 0.4 8.2 0 0.4 4.3 0 0.9 2.6 232 5.14666666666667 4.44 a-cgpr-i1 2023-24
2218 Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School 8520605 10.5 19.2 0 15.7 2.9 0 37.2 2.3 0 12.2 172 4.56 4.44 a-cgpr-i1 2023-24
2219 Natick - Natick High 1980505 43.5 41 0 5.8 0.3 1 3.3 1.5 3.5 0 395 5.06133333333333 4.44 a-cgpr-i1 2023-24
2220 Nauset - Nauset Regional High 6600505 42.4 29.5 0 13.8 0 0 9.4 0 4.9 0 224 5.072 4.44 a-cgpr-i1 2023-24
2221 Needham - Needham High 1990505 55 36.3 0 0.7 0.7 0 0.5 0.2 0.2 6.3 413 4.97066666666667 4.44 a-cgpr-i1 2023-24
2222 Neighborhood House Charter (District) - Neighborhood House Charter School 4440205 24.5 34.7 2 12.2 0 0 12.2 6.1 4.1 4.1 49 4.56533333333333 4.44 a-cgpr-i1 2023-24
2223 New Bedford - New Bedford High 2010505 7.4 16.8 0 24.7 2.3 0.2 45.5 1.3 1.3 0.4 470 5.168 4.44 a-cgpr-i1 2023-24
2224 New Bedford - Trinity Day Academy 2010510 0 0 0 16.7 16.7 0 50 0 16.7 0 6 4.448 4.44 a-cgpr-i1 2023-24
2225 New Bedford - Whaling City Junior/Senior High School 2010515 0 14.3 14.3 28.6 0 0 42.9 0 0 0 7 5.33866666666667 4.44 a-cgpr-i1 2023-24
2226 New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton 35130305 0 100 0 0 0 0 0 0 0 0 86 5.33333333333333 4.44 a-cgpr-i1 2023-24
2227 Newburyport - Newburyport High 2040505 34.5 49.5 0 6 1 0 4 0.5 3 1.5 200 5.06666666666667 4.44 a-cgpr-i1 2023-24
2228 Newton - Newton North High 2070505 49.4 35.8 0 2.9 0.6 0 2.9 0.8 7 0.6 486 4.88533333333333 4.44 a-cgpr-i1 2023-24
2229 Newton - Newton South High 2070510 58.4 29.7 0.6 2.3 0.4 0 1 1 0.2 6.3 478 4.928 4.44 a-cgpr-i1 2023-24
2230 Norfolk County Agricultural - Norfolk County Agricultural 9150705 14.7 41.9 1.6 12.4 1.6 0 21.7 1.6 4.7 0 129 5.008 4.44 a-cgpr-i1 2023-24
2231 North Adams - Drury High 2090505 21.1 25 0 5.3 7.9 0 25 1.3 7.9 6.6 76 4.496 4.44 a-cgpr-i1 2023-24
2232 North Andover - North Andover High 2110505 44.1 31.8 0 9.9 2.9 0 8 1.6 0.5 1.1 374 5.15733333333333 4.44 a-cgpr-i1 2023-24
2233 North Attleborough - North Attleboro High 2120505 33.1 38.5 0 9.3 0 0 5.1 0.4 0 13.6 257 4.58666666666667 4.44 a-cgpr-i1 2023-24
2234 North Brookfield - North Brookfield High 2150505 8.3 20.8 0 4.2 4.2 0 12.5 0 0 50 24 2.66666666666667 4.44 a-cgpr-i1 2023-24
2235 North Middlesex - North Middlesex Regional 7350505 29.9 38.8 0 12.9 2.5 0 9 1 5 1 201 4.96533333333333 4.44 a-cgpr-i1 2023-24
2236 North Reading - North Reading High 2170505 49.2 38.4 0 3.2 1.6 0.5 3.2 0.5 1.1 2.2 185 5.12533333333333 4.44 a-cgpr-i1 2023-24
2237 Northampton - Northampton High 2100505 45.4 22 0 13.8 0 2.8 4.6 0.5 7.3 3.7 218 4.72533333333333 4.44 a-cgpr-i1 2023-24
2238 Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High 4060705 5.8 7.5 0 12.5 6.7 0 51.7 6.7 0.8 8.3 120 4.49066666666667 4.44 a-cgpr-i1 2023-24
2239 Northboro-Southboro - Algonquin Regional High 7300505 52.6 35.3 0.3 4.2 1.1 0 4.7 0 1.8 0 380 5.23733333333333 4.44 a-cgpr-i1 2023-24
2240 Northbridge - Northbridge High 2140505 22.5 34.2 0 7.2 3.6 0 23.4 5.4 0.9 2.7 111 4.848 4.44 a-cgpr-i1 2023-24
2241 Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational 8530605 17.6 10 1.3 8.6 1.7 0.7 41.5 1.3 0 17.3 301 4.34133333333333 4.44 a-cgpr-i1 2023-24
2242 Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical 8510605 11.9 20.2 0.9 11 5.5 0 44 6.4 0 0 109 4.98666666666667 4.44 a-cgpr-i1 2023-24
2243 Norton - Norton High 2180505 32 38.3 0 6.9 5.7 0 5.1 2.3 4 5.7 175 4.69333333333333 4.44 a-cgpr-i1 2023-24
2244 Norwell - Norwell High 2190505 55.2 35.8 0 4.2 0.6 0.6 2.4 0 0 1.2 165 5.26933333333333 4.44 a-cgpr-i1 2023-24
2245 Norwood - Norwood High 2200505 35.7 25.3 0.4 14.1 7.9 0 0.8 2.5 13.3 0 241 4.49066666666667 4.44 a-cgpr-i1 2023-24
2246 Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical 8550605 7.7 20.8 0 17.7 0 0 45.4 3.8 2.3 2.3 130 4.88533333333333 4.44 a-cgpr-i1 2023-24
2247 Old Rochester - Old Rochester Regional High 7400505 34.4 43.5 0 8.6 1.6 0 5.4 1.1 1.1 4.3 186 4.98666666666667 4.44 a-cgpr-i1 2023-24
2248 Oxford - Oxford High 2260505 22.5 34.8 0 7.9 3.4 0 7.9 4.5 7.9 11.2 89 4.08 4.44 a-cgpr-i1 2023-24
2249 Palmer - Palmer High 2270505 28.2 24.4 0 17.9 3.8 0 23.1 1.3 0 1.3 78 5.19466666666667 4.44 a-cgpr-i1 2023-24
2250 Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical 8600605 8.8 9.6 2.2 16.2 0 1.5 30.1 3.7 15.4 12.5 136 3.648 4.44 a-cgpr-i1 2023-24
2251 Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School 35010505 10.3 17.2 0 48.3 1.7 0 17.2 1.7 1.7 1.7 58 5.05066666666667 4.44 a-cgpr-i1 2023-24
2252 Peabody - Peabody Veterans Memorial High 2290510 19.4 44.9 0.9 14.8 1.8 1.2 11.7 1.5 0 3.7 325 5.05066666666667 4.44 a-cgpr-i1 2023-24
2253 Pembroke - Pembroke High School 2310505 18 42.5 0 3.5 0 0 0 0 0 36 200 3.41333333333333 4.44 a-cgpr-i1 2023-24
2254 Pentucket - Pentucket Regional Sr High 7450505 40.5 27.4 0 9.5 1.1 0 0 0 4.7 16.8 190 4.18666666666667 4.44 a-cgpr-i1 2023-24
2255 Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence 35180505 0 0 0 25 0 0 75 0 0 0 8 5.33333333333333 4.44 a-cgpr-i1 2023-24
2256 Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield 35080505 18.2 18.2 0 18.2 9.1 0 27.3 9.1 0 0 11 4.85333333333333 4.44 a-cgpr-i1 2023-24
2257 Phoenix Charter Academy (District) - Phoenix Charter Academy 4930505 0 75 0 12.5 0 0 12.5 0 0 0 8 5.33333333333333 4.44 a-cgpr-i1 2023-24
2258 Pioneer Charter School of Science (District) - Pioneer Charter School of Science 4940205 48.1 34.6 0 15.4 0 0 0 1.9 0 0 52 5.232 4.44 a-cgpr-i1 2023-24
2259 Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II) 35060505 34 40 0 20 2 0 0 4 0 0 50 5.12 4.44 a-cgpr-i1 2023-24
2260 Pioneer Valley - Pioneer Valley Regional 7500505 15.7 31.4 0 25.5 5.9 0 13.7 3.9 3.9 0 51 4.91733333333333 4.44 a-cgpr-i1 2023-24
2261 Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School 4970205 57.1 32.1 0 7.1 0 0 0 0 0 3.6 28 5.136 4.44 a-cgpr-i1 2023-24
2262 Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School 4790505 35.1 24.6 0 26.3 0 0 8.8 1.8 0 3.5 57 5.056 4.44 a-cgpr-i1 2023-24
2263 Pittsfield - Eagle Education Academy 2360525 4 0 4.44 a-cgpr-i1 2023-24
2264 Pittsfield - Pittsfield High 2360505 20 22.2 0.5 24.9 2.2 0 16.8 1.6 4.3 7.6 185 4.61866666666667 4.44 a-cgpr-i1 2023-24
2265 Pittsfield - Taconic High 2360510 22.1 7 0 34.7 5.5 0 14.1 2.5 5.5 8.5 199 4.448 4.44 a-cgpr-i1 2023-24
2266 Plymouth - Plymouth North High 2390505 25.9 29.3 0 7.6 1.7 0.3 33.8 1 0 0.3 290 5.25866666666667 4.44 a-cgpr-i1 2023-24
2267 Plymouth - Plymouth South High 2390515 23.8 28.2 0.7 9.5 1.5 1.1 31.1 3.3 0.7 0 273 5.11466666666667 4.44 a-cgpr-i1 2023-24
2268 Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School 4870550 39.1 37.7 0 13 0 1.4 2.9 0 2.9 2.9 69 5.01866666666667 4.44 a-cgpr-i1 2023-24
2269 Quabbin - Quabbin Regional High School 7530505 27.6 35.9 0 11.7 0.7 0.7 20 2.8 0 0.7 145 5.152 4.44 a-cgpr-i1 2023-24
2270 Quaboag Regional - Quaboag Regional High 7780505 27.6 34.5 0 12.6 2.3 0 17.2 1.1 1.1 3.4 87 5.024 4.44 a-cgpr-i1 2023-24
2271 Quincy - North Quincy High 2430510 31.1 40.5 1.6 9.7 1.3 1 3.6 4.9 4.2 2.3 309 4.736 4.44 a-cgpr-i1 2023-24
2272 Quincy - Quincy High 2430505 22.6 37.3 0.8 9.9 0.3 3.8 4.6 0.5 0.5 19.8 394 4.22933333333333 4.44 a-cgpr-i1 2023-24
2273 Ralph C Mahar - Ralph C Mahar Regional 7550505 7.4 25.5 0 35.1 1.1 0 22.3 2.1 1.1 5.3 94 4.87466666666667 4.44 a-cgpr-i1 2023-24
2274 Randolph - Randolph High 2440505 19.9 27.6 1.3 18.6 5.1 0 12.2 2.6 0 12.8 156 4.51733333333333 4.44 a-cgpr-i1 2023-24
2275 Reading - Reading Memorial High 2460505 47.7 33.2 0 5.8 2.8 0 3.7 1.8 3.1 1.8 325 4.97066666666667 4.44 a-cgpr-i1 2023-24
2276 Revere - Revere High 2480505 22.9 24.2 0 22.1 2.2 2.4 20.1 0.6 3 2.4 462 5.008 4.44 a-cgpr-i1 2023-24
2277 Revere - Seacoast School 2480520 4 0 0 24 0 0 44 0 8 20 25 3.84 4.44 a-cgpr-i1 2023-24
2278 Rising Tide Charter Public (District) - Rising Tide Charter Public School 4830305 34.3 37.3 0 6 3 0 9 0 6 4.5 67 4.77866666666667 4.44 a-cgpr-i1 2023-24
2279 Rockland - Rockland Senior High 2510505 0 97.7 0 0 0 0 2.3 0 0 0 130 5.33333333333333 4.44 a-cgpr-i1 2023-24
2280 Rockport - Rockport High 2520510 4.6 70.8 0 7.7 1.5 0 7.7 3.1 4.6 0 65 4.92266666666667 4.44 a-cgpr-i1 2023-24
2281 Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School 4840505 6.1 74.7 0 13.1 1 0 1 1 2 1 99 5.11466666666667 4.44 a-cgpr-i1 2023-24
2282 Sabis International Charter (District) - Sabis International Charter School 4410505 30.3 21.2 0 30.3 12.1 0 1 2 0 3 99 5.06133333333333 4.44 a-cgpr-i1 2023-24
2283 Salem - New Liberty Innovation School 2580510 4 0 4.44 a-cgpr-i1 2023-24
2284 Salem - Salem High 2580505 18.9 17.6 0.4 16.7 5.2 1.7 1.7 2.1 17.6 18 233 3.31733333333333 4.44 a-cgpr-i1 2023-24
2285 Salem - Salem Prep High School 2580515 5 0 4.44 a-cgpr-i1 2023-24
2286 Salem Academy Charter (District) - Salem Academy Charter School 4850485 19.7 65.6 0 4.9 1.6 0 8.2 0 0 0 61 5.33333333333333 4.44 a-cgpr-i1 2023-24
2287 Sandwich - Sandwich High 2610505 31.8 38.4 0 11.9 0.7 0 11.3 2.6 2 1.3 151 5.01866666666667 4.44 a-cgpr-i1 2023-24
2288 Saugus - Saugus High 2620505 27.3 37.9 0 14.3 6.2 0 8.7 0.6 2.5 2.5 161 5.03466666666667 4.44 a-cgpr-i1 2023-24
2289 Scituate - Scituate High School 2640505 44.4 42.3 0 0.4 0 0 4.6 0 3.3 5 241 4.89066666666667 4.44 a-cgpr-i1 2023-24
2290 Seekonk - Seekonk High 2650505 25.9 38.1 0 16.3 4.8 0 5.4 2.7 4.1 2.7 147 4.82666666666667 4.44 a-cgpr-i1 2023-24
2291 Sharon - Sharon High 2660505 47.6 35.8 0 2.4 0 0 0.4 0 2.8 11 254 4.59733333333333 4.44 a-cgpr-i1 2023-24
2292 Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School 8710605 16.3 17.6 0 14.1 6.1 0 34.8 3.8 0 7.3 313 4.74133333333333 4.44 a-cgpr-i1 2023-24
2293 Shrewsbury - Shrewsbury Sr High 2710505 35 45.5 0 6.6 0.9 0.4 3.7 0.9 0.9 6.1 457 4.912 4.44 a-cgpr-i1 2023-24
2294 Silver Lake - Silver Lake Regional High 7600505 38.5 30.4 0 8.8 2.3 0 16.9 1.9 0.8 0.4 260 5.168 4.44 a-cgpr-i1 2023-24
2295 Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School 4740505 8.2 69.4 4.1 8.2 0 0 8.2 0 2 0 49 5.232 4.44 a-cgpr-i1 2023-24
2296 Somerset Berkley Regional School District - Somerset Berkley Regional High School 7630505 27.1 36.7 0.4 20.5 4.4 0.4 5.2 2.2 2.6 0.4 229 5.05066666666667 4.44 a-cgpr-i1 2023-24
2297 Somerville - Full Circle High School 2740510 0 0 0 50 0 0 40 0 0 10 10 4.8 4.44 a-cgpr-i1 2023-24
2298 Somerville - Somerville High 2740505 26.2 28.8 0.8 17.7 4.2 0 13.5 1.9 4.2 2.7 260 4.864 4.44 a-cgpr-i1 2023-24
2299 South Hadley - South Hadley High 2780505 29.7 19.6 0 23.6 0.7 0 9.5 1.4 0 15.5 148 4.432 4.44 a-cgpr-i1 2023-24
2300 South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School 8290605 11.7 15.2 0 12.9 2.3 4.7 49.1 1.2 1.8 1.2 171 5.11466666666667 4.44 a-cgpr-i1 2023-24
2301 South Shore Charter Public (District) - South Shore Charter Public School 4880550 39.2 39.2 0 13.5 0 0 4.1 0 2.7 1.4 74 5.12 4.44 a-cgpr-i1 2023-24
2302 South Shore Regional Vocational Technical - So Shore Vocational Technical High 8730605 6.6 22.4 0 8.6 0 0 55.3 4.6 0.7 2 152 4.95466666666667 4.44 a-cgpr-i1 2023-24
2303 Southbridge - Southbridge Academy 2770525 1 0 4.44 a-cgpr-i1 2023-24
2304 Southbridge - Southbridge High School 2770515 10.3 11.8 1.5 11.8 1.5 0 32.4 2.9 0 27.9 68 3.696 4.44 a-cgpr-i1 2023-24
2305 Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical 8720605 19.1 24.7 0.3 11.6 3.9 2.5 31.9 2.8 0 3.3 361 5.01333333333333 4.44 a-cgpr-i1 2023-24
2306 Southern Berkshire - Mt Everett Regional 7650505 27.7 29.8 0 17 0 0 10.6 8.5 6.4 0 47 4.53866666666667 4.44 a-cgpr-i1 2023-24
2307 Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School 8760605 12.6 23.3 0 9.3 4.4 1.9 34.4 3.3 0 10.7 270 4.58133333333333 4.44 a-cgpr-i1 2023-24
2308 Southwick-Tolland-Granville Regional School District - Southwick Regional School 7660505 25 28.1 0 17.7 2.1 0 16.7 2.1 0 8.3 96 4.77866666666667 4.44 a-cgpr-i1 2023-24
2309 Spencer-E Brookfield - David Prouty High 7670505 12.3 26.3 1.8 21.1 7 1.8 19.3 0 1.8 8.8 57 4.77866666666667 4.44 a-cgpr-i1 2023-24
2310 Springfield - Conservatory of the Arts 2810475 20 13.3 0 20 6.7 0 23.3 3.3 0 13.3 30 4.44266666666667 4.44 a-cgpr-i1 2023-24
2311 Springfield - Gateway to College at Holyoke Community College 2810575 0 0 0 50 0 0 50 0 0 0 14 5.33333333333333 4.44 a-cgpr-i1 2023-24
2312 Springfield - Gateway to College at Springfield Technical Community College 2810580 0 0 0 28.6 4.8 0 52.4 9.5 4.8 0 21 4.576 4.44 a-cgpr-i1 2023-24
2313 Springfield - High School Of Commerce 2810510 13.7 13.3 2.2 34.1 6.2 0 14.2 2.2 8.4 5.8 226 4.464 4.44 a-cgpr-i1 2023-24
2314 Springfield - John J Duggan Middle 2810320 13.8 17.2 1.7 20.7 0 0 12.1 1.7 1.7 31 58 3.49333333333333 4.44 a-cgpr-i1 2023-24
2315 Springfield - Liberty Preparatory Academy 2810560 2 0 4.44 a-cgpr-i1 2023-24
2316 Springfield - Roger L. Putnam Vocational Technical Academy 2810620 14.9 8.8 0 28.9 2.3 0 26.3 5.2 7.8 5.8 308 4.33066666666667 4.44 a-cgpr-i1 2023-24
2317 Springfield - Springfield Central High 2810500 12.6 9.5 0.4 30.5 1.3 0 28.4 4 2.5 10.9 476 4.41066666666667 4.44 a-cgpr-i1 2023-24
2318 Springfield - Springfield High School 2810570 0 6.3 0 31.3 6.3 0 50 6.3 0 0 16 5.008 4.44 a-cgpr-i1 2023-24
2319 Springfield - Springfield High School of Science and Technology 2810530 0 16.5 0.4 26.2 2.6 0 35.2 4.1 1.1 13.9 267 4.31466666666667 4.44 a-cgpr-i1 2023-24
2320 Springfield - Springfield Public Day High School 2810550 0 0 0 15.4 0 0 69.2 0 0 15.4 13 4.512 4.44 a-cgpr-i1 2023-24
2321 Springfield - The Springfield Renaissance School an Expeditionary Learning School 2810205 29.6 19.8 0 30.9 4.9 0 11.1 1.2 0 2.5 81 5.136 4.44 a-cgpr-i1 2023-24
2322 Stoneham - Stoneham High 2840505 41.4 38.5 0.6 6.3 2.3 0 6.9 0 1.7 2.3 174 5.12 4.44 a-cgpr-i1 2023-24
2323 Stoughton - Stoughton High 2850505 27.3 34.7 0.8 18.8 1.2 2 9 0.4 1.2 4.5 245 5.00266666666667 4.44 a-cgpr-i1 2023-24
2324 Sturgis Charter Public (District) - Sturgis Charter Public School 4890505 47.7 29.7 0 11.8 0 0 2.1 1.5 2.1 5.1 195 4.86933333333333 4.44 a-cgpr-i1 2023-24
2325 Sutton - Sutton High School 2900510 42.4 35.3 0 3.5 5.9 0 8.2 1.2 1.2 2.4 85 5.08266666666667 4.44 a-cgpr-i1 2023-24
2326 Swampscott - Swampscott High 2910505 37.9 42.9 0 5.1 2.8 0 6.2 0.6 2.8 1.7 177 5.06133333333333 4.44 a-cgpr-i1 2023-24
2327 Swansea - Joseph Case High 2920505 15.9 31.8 0.8 23.5 2.3 0 15.2 2.3 0 8.3 132 4.77333333333333 4.44 a-cgpr-i1 2023-24
2328 TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School 39020900 0 33.6 0 16.4 5.5 0 10.3 1.4 16.8 16.1 292 3.50933333333333 4.44 a-cgpr-i1 2023-24
2329 Tantasqua - Tantasqua Regional Sr High 7700505 32.6 37.8 1.7 13.4 1.2 0 8.1 1.7 2.3 1.2 172 5.056 4.44 a-cgpr-i1 2023-24
2330 Tantasqua - Tantasqua Regional Vocational 7700605 9.1 12.7 0 25.5 3.6 1.8 40.9 4.5 0.9 0.9 110 4.992 4.44 a-cgpr-i1 2023-24
2331 Taunton - Taunton Alternative High School 2930525 1 1.9 0 5.7 0 0 89.5 1 0 1 105 5.232 4.44 a-cgpr-i1 2023-24
2332 Taunton - Taunton High 2930505 24 33.6 0.7 17.6 1.2 0.2 13.5 2.2 0 6.9 408 4.84266666666667 4.44 a-cgpr-i1 2023-24
2333 Tewksbury - Tewksbury Memorial High 2950505 35.7 43.3 0 5.7 1.9 0 6.7 1.9 2.9 1.9 210 4.976 4.44 a-cgpr-i1 2023-24
2334 Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical 8780605 24.9 19 0.5 9 1.4 0 42.1 1.8 0.9 0.5 221 5.168 4.44 a-cgpr-i1 2023-24
2335 Triton - Triton Regional High School 7730505 37.2 31 0 9.7 4.8 0 9 0 7.6 0.7 145 4.89066666666667 4.44 a-cgpr-i1 2023-24
2336 Tyngsborough - Tyngsborough High School 3010505 27.9 47.7 0.9 12.6 0 0.9 9.9 0 0 0 111 5.328 4.44 a-cgpr-i1 2023-24
2337 Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical 8790605 11 20.3 0.6 8.7 2.9 11.6 33.7 5.8 0 5.2 172 4.736 4.44 a-cgpr-i1 2023-24
2338 Uxbridge - Gateway to College 3040515 3.6 0 0 50 3.6 0 42.9 0 0 0 28 5.33866666666667 4.44 a-cgpr-i1 2023-24
2339 Uxbridge - Uxbridge High 3040505 34.6 34.6 0 11.5 1.9 0 13.5 1 0 2.9 104 5.12533333333333 4.44 a-cgpr-i1 2023-24
2340 Wachusett - Wachusett Regional High 7750505 34.1 41.5 0 10.7 1.6 0 4.7 0.6 2.3 4.5 487 4.93866666666667 4.44 a-cgpr-i1 2023-24
2341 Wakefield - Wakefield Memorial High 3050505 40 44.5 0 6.1 0 0 5.3 1.6 2 0.4 245 5.11466666666667 4.44 a-cgpr-i1 2023-24
2342 Walpole - Walpole High 3070505 41 37.2 0 6.5 1.5 0.8 8 0.4 0.8 3.8 261 5.06666666666667 4.44 a-cgpr-i1 2023-24
2343 Waltham - Waltham Sr High 3080505 23.6 26.3 0.5 14.1 3.5 1.1 23.6 1.9 0.5 4.9 369 4.944 4.44 a-cgpr-i1 2023-24
2344 Ware - Ware Junior/Senior High School 3090505 16.7 38.9 0 7.4 3.7 0 29.6 0 1.9 1.9 54 5.136 4.44 a-cgpr-i1 2023-24
2345 Wareham - Wareham Cooperative Alternative School 3100315 0 25 0 0 0 0 75 0 0 0 8 5.33333333333333 4.44 a-cgpr-i1 2023-24
2346 Wareham - Wareham Senior High 3100505 22.2 28.6 0 9.5 3.2 0 30.2 0 6.3 0 63 4.99733333333333 4.44 a-cgpr-i1 2023-24
2347 Watertown - Watertown High 3140505 36 33.7 0 12.9 0.6 1.1 4.5 0.6 3.4 7.3 178 4.736 4.44 a-cgpr-i1 2023-24
2348 Wayland - Wayland High School 3150505 57.5 32.9 0 1.3 1.8 0 2.2 0 1.3 3.1 228 5.104 4.44 a-cgpr-i1 2023-24
2349 Webster - Bartlett High School 3160505 26.6 11.4 0 13.9 0 0 32.9 2.5 6.3 6.3 79 4.52266666666667 4.44 a-cgpr-i1 2023-24
2350 Wellesley - Wellesley Sr High 3170505 61.9 31.3 0 0.5 1 0 0.3 0 0 5 383 5.06666666666667 4.44 a-cgpr-i1 2023-24
2351 West Boylston - West Boylston Junior/Senior High 3220505 28.8 39.4 0 19.7 4.5 0 0 1.5 6.1 0 66 4.928 4.44 a-cgpr-i1 2023-24
2352 West Bridgewater - West Bridgewater Junior/Senior 3230505 29.1 45.6 0 8.7 1.9 0 13.6 1 0 0 103 5.27466666666667 4.44 a-cgpr-i1 2023-24
2353 West Springfield - West Springfield High 3320505 24.3 16.1 0 33.6 2.5 0.4 16.1 1.8 5 0.4 280 4.96 4.44 a-cgpr-i1 2023-24
2354 Westborough - Westborough High 3210505 45.4 38.1 0 4.8 0.3 0.3 1.3 0.3 2.2 7.3 315 4.81066666666667 4.44 a-cgpr-i1 2023-24
2355 Westfield - Westfield High 3250505 26.2 28 0.4 25.1 0.7 0 15.8 2.5 0.7 0.7 279 5.13066666666667 4.44 a-cgpr-i1 2023-24
2356 Westfield - Westfield Technical Academy 3250605 1.5 11.9 1.5 28.1 0 0 51.9 4.4 0 0.7 135 5.06133333333333 4.44 a-cgpr-i1 2023-24
2357 Westford - Westford Academy 3260505 47.4 39.2 0 8.2 1.6 0.2 1.4 0.7 0.9 0.5 441 5.22666666666667 4.44 a-cgpr-i1 2023-24
2358 Weston - Weston High 3300505 72 24.4 0 0.6 1.8 0 0.6 0 0 0.6 164 5.30133333333333 4.44 a-cgpr-i1 2023-24
2359 Westport - Westport Junior/Senior High School 3310515 16 30.9 0 21 1.2 0 24.7 1.2 1.2 3.7 81 5.00266666666667 4.44 a-cgpr-i1 2023-24
2360 Westwood - Westwood High 3350505 65.6 33.2 0 0.4 0.4 0 0 0 0.4 0 241 5.312 4.44 a-cgpr-i1 2023-24
2361 Weymouth - Weymouth High School 3360505 20.9 32.5 0 13.3 5.7 1.7 12.1 2.1 1.2 10.7 422 4.59733333333333 4.44 a-cgpr-i1 2023-24
2362 Whitman-Hanson - Whitman Hanson Regional 7800505 34.6 32 0 13.8 2.2 0.4 9.7 3.3 0.7 3.3 269 4.944 4.44 a-cgpr-i1 2023-24
2363 Whittier Regional Vocational Technical - Whittier Regional Vocational 8850605 13.1 16.9 0 25.1 5.6 0 37.1 2.2 0 0 267 5.216 4.44 a-cgpr-i1 2023-24
2364 Wilmington - Wilmington High 3420505 45.2 29.6 0 8.1 1.1 0 6.5 0.5 5.9 3.2 186 4.82666666666667 4.44 a-cgpr-i1 2023-24
2365 Winchendon - Murdock Academy for Success 3430405 0 9.1 0 18.2 9.1 0 63.6 0 0 0 11 5.33333333333333 4.44 a-cgpr-i1 2023-24
2366 Winchendon - Murdock High School 3430515 16.1 23.2 0 12.5 1.8 0 41.1 0 5.4 0 56 5.05066666666667 4.44 a-cgpr-i1 2023-24
2367 Winchester - Winchester High School 3440505 60.5 32.3 0 1.7 0.6 0 0.3 0.8 2.2 1.7 362 5.088 4.44 a-cgpr-i1 2023-24
2368 Winthrop - Winthrop High School 3460505 35.9 28.2 0.7 12.7 4.9 0 13.4 2.1 0 2.1 142 5.10933333333333 4.44 a-cgpr-i1 2023-24
2369 Woburn - Woburn High 3470505 0 58.7 0 9.6 5.3 0 13.2 3.3 8.3 1.7 303 4.62933333333333 4.44 a-cgpr-i1 2023-24
2370 Worcester - Burncoat Senior High 3480503 13.9 22 0.4 33.1 4.1 0 18.4 3.3 1.2 3.7 245 4.90133333333333 4.44 a-cgpr-i1 2023-24
2371 Worcester - Claremont Academy 3480350 9.5 16.7 2.4 27.4 3.6 0 34.5 2.4 0 3.6 84 5.01866666666667 4.44 a-cgpr-i1 2023-24
2372 Worcester - Doherty Memorial High 3480512 24.7 27.1 0 22.7 3.1 0 19.3 1.6 0 1.6 384 5.168 4.44 a-cgpr-i1 2023-24
2373 Worcester - North High 3480515 5.4 20.8 0.6 38.3 6.1 0 20.8 2.9 0.3 4.8 313 4.90666666666667 4.44 a-cgpr-i1 2023-24
2374 Worcester - South High Community 3480520 17.3 21.2 1 20.6 2.6 0 32 2 0 3.3 306 5.05066666666667 4.44 a-cgpr-i1 2023-24
2375 Worcester - University Pk Campus School 3480285 26.3 42.1 0 13.2 2.6 0 2.6 10.5 2.6 0 38 4.62933333333333 4.44 a-cgpr-i1 2023-24
2376 Worcester - Worcester Technical High 3480605 14.7 40.9 0.3 12.1 0.6 0 17 2.6 0 11.8 347 4.56533333333333 4.44 a-cgpr-i1 2023-24

File diff suppressed because it is too large Load Diff

@ -0,0 +1,116 @@
require "rails_helper"
RSpec.describe AcademicYear, type: :model do
describe ".find_by_date" do
context "when an academic year is not split into seasons" do
before do
create(:academic_year, range: "2022-23")
create(:academic_year, range: "2023-24")
create(:academic_year, range: "2024-25")
end
it "parses 2022-23 as the range" do
ranges = AcademicYear.by_range.keys
date = Date.parse("2022-12-12")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23"
end
end
context "when an academic year is split into seasons" do
before do
create(:academic_year, range: "2021-22 Fall")
create(:academic_year, range: "2021-22 Spring")
create(:academic_year, range: "2022-23")
create(:academic_year, range: "2023-24 Fall")
create(:academic_year, range: "2023-24 Spring")
create(:academic_year, range: "2024-25")
end
context "and the range falls on an academic year without seasons" do
it "returns a range without the season added" do
ranges = AcademicYear.by_range.keys
# Start of 2022-23
date = Date.parse("2022-7-1")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23"
# End of 2022-23
date = Date.parse("2023-6-30")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23"
# Start of 2024-25
date = Date.parse("2024-7-1")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2024-25"
# End of 2024-25
date = Date.parse("2025-6-30")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2024-25"
end
end
context "and the range falls within an academic year with seasons" do
it "returns a range with the season added using the cutoff date of the last Sunday in February" do
ranges = AcademicYear.by_range.keys
# Start of Fall 2023-24
date = Date.parse("2023-7-1")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Fall"
# End of Fall 2023-24
date = Date.parse("2024-2-24")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Fall"
# Start of Spring 2023-24
date = Date.parse("2024-2-25")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Spring"
# End of Spring 2023-24
date = Date.parse("2024-6-30")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Spring"
# Start of Fall 2021-22
date = Date.parse("2021-7-1")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Fall"
# End of Fall 2021-22
date = Date.parse("2022-2-26")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Fall"
# Start of Spring 2021-22
date = Date.parse("2022-2-27")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Spring"
# End of Spring 2021-22
date = Date.parse("2022-6-30")
expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Spring"
end
end
end
end
describe ".range_without_season" do
context "when the range doesn't have a season " do
before do
create(:academic_year, range: "2022-23")
create(:academic_year, range: "2023-24")
create(:academic_year, range: "2024-25")
end
it "parses 2022-23 as the range" do
ay = AcademicYear.find_by_range "2022-23"
expect(ay.range_without_season).to eq "2022-23"
end
end
context "when an academic year is split into seasons" do
before do
create(:academic_year, range: "2023-24 Fall")
create(:academic_year, range: "2023-24 Spring")
end
it "removes the season from the range" do
ay = AcademicYear.find_by_range "2023-24 Fall"
expect(ay.range_without_season).to eq "2023-24"
end
end
end
end

@ -73,7 +73,6 @@ RSpec.configure do |config|
end
config.after(:each) do |example|
AcademicYear.reset_academic_years
DatabaseCleaner.clean unless example.metadata[:skip_db_cleaner]
end
end

@ -153,7 +153,7 @@ RSpec.describe Cleaner do
survey_items = SurveyItem.where(survey_item_id: standard_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: standard_survey_items, survey_items:,
schools: School.school_by_dese_id)]
schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: standard_survey_items, data:, filepath: nil
)
@ -165,7 +165,7 @@ RSpec.describe Cleaner do
survey_items = SurveyItem.where(survey_item_id: short_form_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: short_form_survey_items, survey_items:,
schools: School.school_by_dese_id)]
schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: short_form_survey_items, data:, filepath: nil
)
@ -178,7 +178,7 @@ RSpec.describe Cleaner do
survey_items = SurveyItem.where(survey_item_id: early_education_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: early_education_survey_items, survey_items:,
schools: School.school_by_dese_id)]
schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: early_education_survey_items, data:, filepath: nil
)
@ -190,7 +190,7 @@ RSpec.describe Cleaner do
survey_items = SurveyItem.where(survey_item_id: teacher_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:,
schools: School.school_by_dese_id)]
schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: teacher_survey_items, data:, filepath: nil
)
@ -202,9 +202,9 @@ RSpec.describe Cleaner do
it "adds all districts to the filename" do
survey_items = SurveyItem.where(survey_item_id: teacher_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:, schools: School.school_by_dese_id),
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:, schools: School.by_dese_id),
SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "222_222" },
headers: teacher_survey_items, survey_items:, schools: School.school_by_dese_id)]
headers: teacher_survey_items, survey_items:, schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: teacher_survey_items, data:, filepath: nil
)
@ -217,7 +217,7 @@ RSpec.describe Cleaner do
survey_items = SurveyItem.where(survey_item_id: early_education_survey_items)
data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: early_education_survey_items, survey_items:,
schools: School.school_by_dese_id)]
schools: School.by_dese_id)]
filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename(
headers: early_education_survey_items, data:, filepath: "/data/survey_responses/maynard early ed_ part a.2022-23.csv"
)

@ -2,6 +2,8 @@ require "rails_helper"
RSpec.describe Dese::Loader do
let(:path_to_admin_data) { Rails.root.join("spec", "fixtures", "sample_four_d_data.csv") }
let(:ay_2023_24_fall) { create(:academic_year, range: "2023-24 Fall") }
let(:ay_2023_24_spring) { create(:academic_year, range: "2023-24 Spring") }
let(:ay_2022_23) { create(:academic_year, range: "2022-23") }
let(:ay_2021_22) { create(:academic_year, range: "2021-22") }
let(:ay_2020_21) { create(:academic_year, range: "2020-21") }
@ -17,6 +19,8 @@ RSpec.describe Dese::Loader do
let(:next_wave) { create(:school, dese_id: 2_740_510) }
before :each do
ay_2023_24_fall
ay_2023_24_spring
ay_2022_23
ay_2021_22
ay_2020_21
@ -32,9 +36,6 @@ RSpec.describe Dese::Loader do
next_wave
end
after :each do
# DatabaseCleaner.clean
end
context "when running the loader" do
before :each do
Dese::Loader.load_data filepath: path_to_admin_data
@ -53,8 +54,30 @@ RSpec.describe Dese::Loader do
academic_year: ay_2020_21).likert_score).to eq 4.8
end
it "loads admin data for years that are split into seasons" do
academic_year = ay_2023_24_fall
expect(AdminDataValue.find_by(school: winchester, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: attleboro, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: milford, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: seacoast, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: next_wave, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
academic_year = ay_2023_24_spring
expect(AdminDataValue.find_by(school: winchester, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: attleboro, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: milford, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: seacoast, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44
expect(AdminDataValue.find_by(school: next_wave, admin_data_item: four_d,
academic_year:).likert_score).to eq 4.44
end
it "loads the correct number of items" do
expect(AdminDataValue.count).to eq 23
expect(AdminDataValue.count).to eq 33
end
it "cap maximum likert score to 5" do
@ -77,7 +100,7 @@ RSpec.describe Dese::Loader do
it "is idempotent" do
Dese::Loader.load_data filepath: path_to_admin_data
expect(AdminDataValue.count).to eq 23
expect(AdminDataValue.count).to eq 33
end
end
end

@ -2,23 +2,27 @@ require "rails_helper"
describe EnrollmentLoader do
let(:path_to_enrollment_data) { Rails.root.join("spec", "fixtures", "sample_enrollment_data.csv") }
let(:ay_2021_22) { create(:academic_year, range: "2021-22") }
let(:ay_2022_23) { create(:academic_year, range: "2022-23") }
let(:ay_2023_24) { create(:academic_year, range: "2023-24") }
let(:ay_2024_25_fall) { create(:academic_year, range: "2024-25 Fall") }
let(:ay_2024_25_spring) { create(:academic_year, range: "2024-25 Spring") }
let(:attleboro) { create(:school, name: "Attleboro", dese_id: 160_505) }
let(:beachmont) { create(:school, name: "Beachmont", dese_id: 2_480_013) }
let(:winchester) { create(:school, name: "Winchester", dese_id: 3_440_505) }
before :each do
ay_2021_22
ay_2022_23
ay_2023_24
ay_2024_25_fall
ay_2024_25_spring
attleboro
beachmont
winchester
EnrollmentLoader.load_data filepath: path_to_enrollment_data
end
after :each do
DatabaseCleaner.clean
end
context "self.load_data" do
it "loads the correct enrollment numbers" do
academic_year = ay_2022_23
@ -35,6 +39,109 @@ describe EnrollmentLoader do
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383
academic_year = ay_2021_22
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 10
expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 150
# expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 1844
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 150
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 150
end
it "does not load numbers for years outside the file given" do
academic_year = ay_2023_24
expect(Respondent.find_by(school: attleboro, academic_year:)).to eq nil
expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil
expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil
expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil
expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil
expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil
expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil
expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil
expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil
expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil
end
end
context "self.clone_previous_year_data" do
before do
EnrollmentLoader.clone_previous_year_data
end
it "populates empty data with last known enrollment numbers" do
# "2023-24"
academic_year = ay_2023_24
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383
# "2024-25 Fall"
academic_year = ay_2024_25_fall
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383
# "2024-25 Spring"
academic_year = ay_2024_25_spring
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383
# Anything that already has numbers from the csv files stays the same
academic_year = ay_2021_22
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 10
expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 150
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 10
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 150
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 10
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 150
end
end
end

@ -2,27 +2,30 @@ require "rails_helper"
describe StaffingLoader do
let(:path_to_staffing_data) { Rails.root.join("spec", "fixtures", "sample_staffing_data.csv") }
let(:ay_2022_23) { create(:academic_year, range: "2022-23") }
let(:ay_2020_21) { create(:academic_year, range: "2020-21") }
let(:ay_2021_22) { create(:academic_year, range: "2021-22") }
let(:ay_2022_23) { create(:academic_year, range: "2022-23") }
let(:ay_2023_24_fall) { create(:academic_year, range: "2023-24 Fall") }
let(:ay_2023_24_spring) { create(:academic_year, range: "2023-24 Spring") }
let(:attleboro) { create(:school, name: "Attleboro", dese_id: 160_505) }
let(:beachmont) { create(:school, name: "Beachmont", dese_id: 2_480_013) }
let(:winchester) { create(:school, name: "Winchester", dese_id: 3_440_505) }
before :each do
ay_2022_23
ay_2020_21
ay_2021_22
ay_2022_23
ay_2023_24_fall
ay_2023_24_spring
attleboro
beachmont
winchester
StaffingLoader.load_data filepath: path_to_staffing_data
StaffingLoader.clone_previous_year_data
end
after :each do
DatabaseCleaner.clean
end
context "self.load_data" do
before do
StaffingLoader.load_data filepath: path_to_staffing_data
end
it "loads the correct staffing numbers" do
academic_year = ay_2021_22
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
@ -31,19 +34,44 @@ describe StaffingLoader do
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
end
end
context "self.clone_previous_year_data" do
before do
StaffingLoader.load_data filepath: path_to_staffing_data
StaffingLoader.clone_previous_year_data
end
it "fills in empty staffing numbers with the previous years data" do
academic_year = ay_2022_23
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
academic_year = ay_2023_24_fall
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
academic_year = ay_2023_24_spring
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
# Does not touch existing numbers
context "when the staffing data is missing a school" do
after :each do
DatabaseCleaner.clean
end
it "fills in empty staffing numbers with the previous years data" do
academic_year = ay_2022_23
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
academic_year = ay_2020_21
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 100
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 100
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
end
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 100
end
end
end

@ -35,11 +35,12 @@ RSpec.describe SurveyItemValues, type: :model do
let(:attleboro_respondents) do
create(:respondent, school: attleboro, academic_year: ay_2022_23, nine: 40, ten: 40, eleven: 40, twelve: 40)
end
let(:schools) { School.school_by_dese_id }
let(:schools) { School.by_dese_id }
let(:recorded_date) { "2023-04-01T12:12:12" }
let(:ay_2022_23) do
create(:academic_year, range: "2022-23")
end
let(:academic_years) { AcademicYear.all }
let(:common_headers) do
["Recorded Date", "DeseID", "ResponseID", "Duration (in seconds)", "Gender", "Grade"]
@ -105,12 +106,12 @@ RSpec.describe SurveyItemValues, type: :model do
context ".recorded_date" do
it "returns the recorded date" do
row = { "RecordedDate" => "2017-01-01T12:12:121" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.recorded_date).to eq Date.parse("2017-01-01T12:12:12")
headers = ["Recorded Date"]
row = { "Recorded Date" => "2017-01-02T12:12:122" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.recorded_date).to eq Date.parse("2017-01-02T12:12:12")
end
end
@ -120,11 +121,11 @@ RSpec.describe SurveyItemValues, type: :model do
attleboro
headers = ["DeseID"]
row = { "DeseID" => "1234" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.school).to eq attleboro
row = { "DeseID" => "1234" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.school).to eq attleboro
end
end
@ -132,7 +133,7 @@ RSpec.describe SurveyItemValues, type: :model do
context ".grade" do
it "returns the grade that maps to the grade provided" do
row = { "Grade" => "1" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.grade).to eq 1
end
end
@ -141,15 +142,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the gender is female" do
it "returns the gender that maps to the gender provided" do
row = { "Gender" => "1" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 1
row = { "Gender" => "Female" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 1
row = { "Gender" => "F" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 1
end
end
@ -157,15 +158,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the gender is male" do
it "returns the gender that maps to the gender provided" do
row = { "Gender" => "2" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 2
row = { "Gender" => "Male" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 2
row = { "Gender" => "M" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 2
end
end
@ -173,15 +174,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the gender is non-binary" do
it "returns the gender that maps to the gender provided" do
row = { "Gender" => "4" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 4
row = { "Gender" => "N - Non-Binary" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 4
row = { "Gender" => "N" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 4
end
end
@ -189,27 +190,27 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the gender is not known" do
it "returns the gender that maps to the gender provided" do
row = { "Gender" => "N/A" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
row = { "Gender" => "NA" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
row = { "Gender" => "#N/A" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
row = { "Gender" => "#NA" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
row = { "Gender" => "Prefer not to disclose" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
row = { "Gender" => "" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.gender).to eq 99
end
end
@ -223,15 +224,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is Native American" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "1" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1]
row = { "Race" => "Native American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1]
row = { "Race" => "American Indian or Alaskan Native" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1]
end
end
@ -239,19 +240,19 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is Asian" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "2" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [2]
row = { "Race" => "Asian" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [2]
row = { "Race" => "Pacific Islander" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [2]
row = { "Race" => "Pacific Island or Hawaiian Native" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [2]
end
end
@ -259,15 +260,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is Black" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "3" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [3]
row = { "Race" => "Black" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [3]
row = { "Race" => "African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [3]
end
end
@ -275,15 +276,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is Hispanic" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "4" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [4]
row = { "Race" => "Hispanic" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [4]
row = { "Race" => "Latinx" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [4]
end
end
@ -291,15 +292,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is White" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "5" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [5]
row = { "Race" => "White" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [5]
row = { "Race" => "Caucasian" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [5]
end
end
@ -307,11 +308,11 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is not disclosed" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "6" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "Prefer not to disclose" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
end
end
@ -319,11 +320,11 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is not disclosed" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "6" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "Prefer not to disclose" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
end
end
@ -331,11 +332,11 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is self described" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "7" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "Prefer to self-describe" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
end
end
@ -343,15 +344,15 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is Middle Eastern" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "8" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [8]
row = { "Race" => "Middle Eastern" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [8]
row = { "Race" => "North African" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [8]
end
end
@ -359,23 +360,23 @@ RSpec.describe SurveyItemValues, type: :model do
context "when the race is unknown" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "NA" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "#N/A" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "n/a" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "#na" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
row = { "Race" => "" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [99]
end
end
@ -383,42 +384,42 @@ RSpec.describe SurveyItemValues, type: :model do
context "when there are multiple races" do
it "returns the gender that maps to the gender provided" do
row = { "Race" => "1,2,3" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "Alaskan Native, Pacific Islander, Black" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "American Indian or Alaskan Native, Asian, African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "n/a" }
row = { "Race" => "American Indian or Alaskan Native, Asian and African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "American Indian or Alaskan Native and Asian and African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "American Indian or Alaskan Native and Asian, and African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [1, 2, 3, 100]
row = { "Race" => "Asian, Caucasian and African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [2, 5, 3, 100]
row = { "Race" => "Caucasian and Asian and African American" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [5, 2, 3, 100]
row = { "Race- SIS" => "Caucasian and Asian and African American", "HispanicLatino" => "true" }
headers.push("HispanicLatino")
headers.push("Race- SIS")
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.races).to eq [5, 2, 3, 4, 100]
end
end
@ -427,11 +428,11 @@ RSpec.describe SurveyItemValues, type: :model do
context ".respondent_type" do
it "reads header to find the survey type" do
headers = %w[s-sbel-q5 s-phys-q2 RecordedDate]
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.respondent_type).to eq :student
headers = %w[t-sbel-q5 t-phys-q2]
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.respondent_type).to eq :teacher
end
end
@ -440,14 +441,14 @@ RSpec.describe SurveyItemValues, type: :model do
context "when survey type is standard form" do
it "returns the survey type" do
headers = standard_survey_items
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.survey_type).to eq :standard
end
end
context "when survey type is teacher form" do
it "returns the survey type" do
headers = teacher_survey_items
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.survey_type).to eq :teacher
end
end
@ -455,7 +456,7 @@ RSpec.describe SurveyItemValues, type: :model do
context "when survey type is short form" do
it "returns the survey type" do
headers = short_form_survey_items
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.survey_type).to eq :short_form
end
end
@ -463,7 +464,7 @@ RSpec.describe SurveyItemValues, type: :model do
context "when survey type is early education" do
it "returns the survey type" do
headers = early_education_survey_items
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:)
expect(values.survey_type).to eq :early_education
end
end
@ -478,14 +479,14 @@ RSpec.describe SurveyItemValues, type: :model do
it "translates Free Lunch to Economically Disadvantaged - Y" do
headers = ["LowIncome"]
row = { "LowIncome" => "Free Lunch" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.income).to eq "Economically Disadvantaged - Y"
end
it "translates Reduced Lunch to Economically Disadvantaged - Y" do
headers = ["LowIncome"]
row = { "LowIncome" => "Reduced Lunch" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.income).to eq "Economically Disadvantaged - Y"
end
@ -493,14 +494,14 @@ RSpec.describe SurveyItemValues, type: :model do
headers = ["LowIncome"]
row = { "LowIncome" => "LowIncome" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.income).to eq "Economically Disadvantaged - Y"
end
it "translates Not Eligible to Economically Disadvantaged - N" do
headers = ["LowIncome"]
row = { "LowIncome" => "Not Eligible" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.income).to eq "Economically Disadvantaged - N"
end
@ -508,7 +509,7 @@ RSpec.describe SurveyItemValues, type: :model do
headers = ["LowIncome"]
row = { "LowIncome" => "" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.income).to eq "Unknown"
end
end
@ -522,37 +523,37 @@ RSpec.describe SurveyItemValues, type: :model do
it 'translates "LEP Student 1st Year" or "LEP Student Not 1st Year" into ELL' do
headers = ["Raw ELL"]
row = { "Raw ELL" => "LEP Student 1st Year" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "ELL"
row = { "Raw ELL" => "LEP Student Not 1st Year" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "ELL"
row = { "Raw ELL" => "LEP Student Not 1st Year" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "ELL"
end
it 'translates "Does not Apply" into "Not ELL"' do
headers = ["Raw ELL"]
row = { "Raw ELL" => "Does not apply" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "Not ELL"
row = { "Raw ELL" => "Does Not APPLY" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "Not ELL"
end
it 'tranlsates blanks into "Not Ell"' do
headers = ["Raw ELL"]
row = { "Raw ELL" => "" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "Not ELL"
row = { "Raw ELL" => "Anything else" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.ell).to eq "Not ELL"
end
end
@ -566,32 +567,32 @@ RSpec.describe SurveyItemValues, type: :model do
it 'translates "active" into "Special Education"' do
headers = ["Raw SpEd"]
row = { "Raw SpEd" => "active" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.sped).to eq "Special Education"
end
it 'translates "exited" into "Not Special Education"' do
headers = ["Raw SpEd"]
row = { "Raw SpEd" => "exited" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.sped).to eq "Not Special Education"
end
it 'translates blanks into "Not Special Education' do
headers = ["Raw SpEd"]
row = { "Raw SpEd" => "" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.sped).to eq "Not Special Education"
end
it 'tranlsates NA into "Not Special Education"' do
headers = ["Raw SpEd"]
row = { "Raw SpEd" => "NA" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.sped).to eq "Not Special Education"
row = { "Raw SpEd" => "#NA" }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.sped).to eq "Not Special Education"
end
end
@ -601,33 +602,33 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns true" do
headers = standard_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "240", "Gender" => "Male" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
headers = teacher_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "300" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
headers = short_form_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "100" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
# When duration is blank or N/A or NA, we don't have enough information to kick out the row as invalid so we keep it in
headers = short_form_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
headers = short_form_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "N/A" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
headers = short_form_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "NA" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq true
end
end
@ -636,16 +637,16 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns false" do
headers = standard_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "239" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq false
headers = teacher_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "299" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq false
headers = short_form_survey_items
values = SurveyItemValues.new(row: { "Duration (in seconds)" => "99" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_duration?).to eq false
end
end
@ -657,7 +658,7 @@ RSpec.describe SurveyItemValues, type: :model do
row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1,
"s-peff-q5" => 1, "s-peff-q6" => 1, "s-phys-q1" => 1, "s-phys-q2" => 1,
"s-phys-q3" => 1, "s-phys-q4" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:)
values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:)
expect(values.progress).to eq 10
end
end
@ -672,7 +673,7 @@ RSpec.describe SurveyItemValues, type: :model do
"s-emsa-q3" => 1, "s-sbel-q1" => 1, "s-sbel-q2" => 1, "s-sbel-q3" => 1,
"s-sbel-q4" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 17
expect(values.valid_progress?).to eq true
end
@ -687,7 +688,7 @@ RSpec.describe SurveyItemValues, type: :model do
"t-psup-q3" => 1, "t-psup-q4" => 1, "t-acch-q1" => 1, "t-acch-q2" => 1
}
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 12
expect(values.valid_progress?).to eq true
end
@ -697,7 +698,7 @@ RSpec.describe SurveyItemValues, type: :model do
row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1,
"s-sbel-q4" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 5
expect(values.valid_progress?).to eq true
end
@ -707,7 +708,7 @@ RSpec.describe SurveyItemValues, type: :model do
row = { "s-peff-es1" => 1, "s-peff-es2" => 1, "s-peff-es3" => 1, "s-peff-es4" => 1,
"s-peff-es5" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 5
expect(values.valid_progress?).to eq true
end
@ -720,7 +721,7 @@ RSpec.describe SurveyItemValues, type: :model do
"s-peff-q5" => 1, "s-peff-q6" => 1, "s-phys-q1" => 1, "s-phys-q2" => 1,
"s-emsa-q3" => 1, "s-sbel-q1" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 10
expect(values.valid_progress?).to eq false
end
@ -735,7 +736,7 @@ RSpec.describe SurveyItemValues, type: :model do
"t-psup-q3" => 1, "t-psup-q4" => 1, "t-acch-q1" => 1
}
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 11
expect(values.valid_progress?).to eq false
end
@ -744,7 +745,7 @@ RSpec.describe SurveyItemValues, type: :model do
headers = short_form_survey_items
row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 4
expect(values.valid_progress?).to eq false
end
@ -753,7 +754,7 @@ RSpec.describe SurveyItemValues, type: :model do
headers = early_education_survey_items
row = { "s-peff-es1" => 1, "s-peff-es2" => 1, "s-peff-es3" => 1, "s-peff-es4" => 1 }
values = SurveyItemValues.new(row:, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.progress).to eq 4
expect(values.valid_progress?).to eq false
end
@ -769,14 +770,14 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns true for students" do
headers = %w[s-sbel-q5 s-phys-q2 grade RecordedDate DeseID]
values = SurveyItemValues.new(row: { "grade" => "9", "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_grade?).to eq true
end
it "returns true for teachers" do
headers = %w[t-sbel-q5 t-phys-q2 grade RecordedDate DeseID]
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
expect(values.valid_grade?).to eq true
end
end
@ -789,7 +790,7 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns false" do
headers = %w[s-sbel-q5 s-phys-q2 grade RecordedDate DeseID]
values = SurveyItemValues.new(row: { "grade" => "2", "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools: School.school_by_dese_id)
schools: School.by_dese_id)
expect(values.valid_grade?).to eq false
end
end
@ -800,13 +801,13 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns true for student questions" do
headers = %w[s-sbel-q5 s-phys-q1 s-phys-q2 RecordedDate]
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "s-sbel-q5" => "1", "s-phys-q1" => "", "s-phys-q2" => "5" }, headers:, survey_items:,
schools: School.school_by_dese_id)
schools: School.by_dese_id)
expect(values.valid_sd?).to eq true
end
it "returns true for teacher questions" do
headers = %w[t-sbel-q5 t-phys-q2]
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "t-sbel-q5" => "1", "t-phys-q2" => "5" }, headers:, survey_items:,
schools: School.school_by_dese_id)
schools: School.by_dese_id)
expect(values.valid_sd?).to eq true
end
end
@ -815,13 +816,13 @@ RSpec.describe SurveyItemValues, type: :model do
it "returns false for student questions" do
headers = %w[s-sbel-q5 s-phys-q1 s-phys-q2 RecordedDate]
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "s-sbel-q5" => "1", "s-phys-q2" => "1" }, headers:, survey_items:,
schools: School.school_by_dese_id)
schools: School.by_dese_id)
expect(values.valid_sd?).to eq false
end
it "returns false for teacher questions" do
headers = %w[t-sbel-q5 t-phys-q1 t-phys-q2 RecordedDate]
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "t-sbel-q5" => "1", "t-phys-q2" => "1" }, headers:, survey_items:,
schools: School.school_by_dese_id)
schools: School.by_dese_id)
expect(values.valid_sd?).to eq false
end
end
@ -836,7 +837,7 @@ RSpec.describe SurveyItemValues, type: :model do
it "parses the date correctly when the date is in standard date format for google sheets: 'MM/DD/YYYY HH:MM:SS'" do
recorded_date = "1/10/2022 14:21:45"
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
ay_21_22 = AcademicYear.find_by_range "2021-22"
expect(values.academic_year).to eq ay_21_22
end
@ -844,7 +845,7 @@ RSpec.describe SurveyItemValues, type: :model do
it "parses the date correctly when the date is in iso standard 8601 'YYYY-MM-DDTHH:MM:SS'" do
recorded_date = "2022-1-10T14:21:45"
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
ay_21_22 = AcademicYear.find_by_range "2021-22"
expect(values.academic_year).to eq ay_21_22
end
@ -852,7 +853,7 @@ RSpec.describe SurveyItemValues, type: :model do
it "parses the date correctly when the date is in the format of: 'YYYY-MM-DD HH:MM:SS'" do
recorded_date = "2022-01-10 14:21:45"
values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:,
schools:)
schools:, academic_years:)
ay_21_22 = AcademicYear.find_by_range "2021-22"
expect(values.academic_year).to eq ay_21_22
end

Loading…
Cancel
Save