mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
chore: get admin data scraper running
This commit is contained in:
parent
1810ee0074
commit
a142afe022
102 changed files with 41933 additions and 8756 deletions
|
|
@ -1,20 +1,21 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class FiveCOne
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '5C_1_art_course.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "5C_1_art_course.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'K', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10',
|
||||
'11', '12', 'All Grades', 'Total Students']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"K", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10",
|
||||
"11", "12", "All Grades", "Total Students"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_picp_i1(filepath:)
|
||||
|
|
@ -24,17 +25,17 @@ module Dese
|
|||
|
||||
def run_a_picp_i1(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-picp-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/artcourse.aspx'
|
||||
admin_data_item_id = "a-picp-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/artcourse.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddView' => 'Percent' }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddView" => "Percent" }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
percent_graduated_index = headers['All Grades'] - 1
|
||||
if items[percent_graduated_index].nil? || items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0'
|
||||
return 'NA'
|
||||
percent_graduated_index = headers["All Grades"] - 1
|
||||
if items[percent_graduated_index].nil? || items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0"
|
||||
return "NA"
|
||||
end
|
||||
|
||||
percent_passing = items[percent_graduated_index].to_f
|
||||
|
|
@ -46,3 +47,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,14 +1,15 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class FiveDTwo
|
||||
include Dese::Scraper
|
||||
include Dese::Enrollments
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', 'enrollments.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '5D_2_age_staffing.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "5D_2_age_staffing.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
|
|
@ -17,8 +18,8 @@ module Dese
|
|||
scrape_enrollments(filepath:)
|
||||
|
||||
filepath = filepaths[1]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'<26 yrs (# )', '26-32 yrs (#)', '33-40 yrs (#)', '41-48 yrs (#)', '49-56 yrs (#)', '57-64 yrs (#)', 'Over 64 yrs (#)', 'FTE Count']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"<26 yrs (# )", "26-32 yrs (#)", "33-40 yrs (#)", "41-48 yrs (#)", "49-56 yrs (#)", "57-64 yrs (#)", "Over 64 yrs (#)", "FTE Count"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_phya_i1(filepath:)
|
||||
|
|
@ -28,22 +29,22 @@ module Dese
|
|||
|
||||
def run_a_phya_i1(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-phya-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/agestaffing.aspx'
|
||||
admin_data_item_id = "a-phya-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/agestaffing.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddJobClassification' => 'School Nurse -- Non-Special Education' }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddJobClassification" => "School Nurse -- Non-Special Education" }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
nurse_index = headers['FTE Count']
|
||||
return 'NA' if items[nurse_index] == '' || items[nurse_index].strip == '.0'
|
||||
nurse_index = headers["FTE Count"]
|
||||
return "NA" if items[nurse_index] == "" || items[nurse_index].strip == ".0"
|
||||
|
||||
nurse_count = items[nurse_index].to_f
|
||||
benchmark = 750
|
||||
nurse_count * 4 / benchmark if nurse_index.present?
|
||||
|
||||
dese_id = items[headers['School Code']].to_i
|
||||
dese_id = items[headers["School Code"]].to_i
|
||||
num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0
|
||||
items << num_of_students
|
||||
items << (num_of_students / nurse_count)
|
||||
|
|
@ -54,3 +55,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,19 +1,21 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class FourAOne
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '4A_1_grade_nine_course_pass.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"4A_1_grade_nine_course_pass.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'# Grade Nine Students', '# Passing All Courses', '% Passing All Courses']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"# Grade Nine Students", "# Passing All Courses", "% Passing All Courses"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_ovpe_i1(filepath:)
|
||||
|
|
@ -23,15 +25,15 @@ module Dese
|
|||
|
||||
def run_a_ovpe_i1(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-ovpe-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/gradeninecoursepass.aspx'
|
||||
admin_data_item_id = "a-ovpe-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/gradeninecoursepass.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
passing_index = headers['% Passing All Courses']
|
||||
return 'NA' if items[passing_index] == '' || items[passing_index].strip == '.0'
|
||||
passing_index = headers["% Passing All Courses"]
|
||||
return "NA" if items[passing_index] == "" || items[passing_index].strip == ".0"
|
||||
|
||||
percent_passing = items[passing_index].to_f
|
||||
benchmark = 95
|
||||
|
|
@ -42,3 +44,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,38 +1,39 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class FourBTwo
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '4B_2_four_year_grad.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '4B_2_retention.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '4B_2_five_year_grad.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_four_year_grad.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_retention.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_five_year_grad.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'# in Cohort', '% Graduated', '% Still in School', '% Non-Grad Completers', '% H.S. Equiv.',
|
||||
'% Dropped Out', '% Permanently Excluded']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"# in Cohort", "% Graduated", "% Still in School", "% Non-Grad Completers", "% H.S. Equiv.",
|
||||
"% Dropped Out", "% Permanently Excluded"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_degr_i1(filepath:)
|
||||
|
||||
filepath = filepaths[1]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'# Enrolled', '# Retained', '% Retained', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10',
|
||||
'11', '12']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"# Enrolled", "# Retained", "% Retained", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10",
|
||||
"11", "12"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_degr_i2(filepath:)
|
||||
|
||||
filepath = filepaths[2]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'# in Cohort', '% Graduated', '% Still in School', '% Non-Grad Completers', '% H.S. Equiv.',
|
||||
'% Dropped Out', '% Permanently Excluded']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"# in Cohort", "% Graduated", "% Still in School", "% Non-Grad Completers", "% H.S. Equiv.",
|
||||
"% Dropped Out", "% Permanently Excluded"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_degr_i3(filepath:)
|
||||
|
|
@ -41,16 +42,16 @@ module Dese
|
|||
|
||||
def run_a_degr_i1(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-degr-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/gradrates.aspx'
|
||||
admin_data_item_id = "a-degr-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/gradrates.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddRateType' => '4yr Grad' }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddRateType" => "4yr Grad" }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
percent_graduated_index = headers['% Graduated']
|
||||
return 'NA' if items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0'
|
||||
percent_graduated_index = headers["% Graduated"]
|
||||
return "NA" if items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0"
|
||||
|
||||
percent_passing = items[percent_graduated_index].to_f
|
||||
benchmark = 80
|
||||
|
|
@ -62,16 +63,16 @@ module Dese
|
|||
|
||||
def run_a_degr_i2(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-degr-i2'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/retention.aspx'
|
||||
admin_data_item_id = "a-degr-i2"
|
||||
url = "https://profiles.doe.mass.edu/statereport/retention.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddView' => 'Percent' }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddView" => "Percent" }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
retained_index = headers['% Retained']
|
||||
return 'NA' if items[retained_index] == '' || items[retained_index].strip == '.0'
|
||||
retained_index = headers["% Retained"]
|
||||
return "NA" if items[retained_index] == "" || items[retained_index].strip == ".0"
|
||||
|
||||
percent_retained = items[retained_index].to_f
|
||||
benchmark = 2
|
||||
|
|
@ -83,16 +84,16 @@ module Dese
|
|||
|
||||
def run_a_degr_i3(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-degr-i3'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/gradrates.aspx'
|
||||
admin_data_item_id = "a-degr-i3"
|
||||
url = "https://profiles.doe.mass.edu/statereport/gradrates.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddRateType' => '5yr Grad' }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddRateType" => "5yr Grad" }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
percent_graduated_index = headers['% Graduated']
|
||||
return 'NA' if items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0'
|
||||
percent_graduated_index = headers["% Graduated"]
|
||||
return "NA" if items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0"
|
||||
|
||||
percent_passing = items[percent_graduated_index].to_f
|
||||
benchmark = 85
|
||||
|
|
@ -103,3 +104,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,23 +1,24 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
# TODO: convert this to simpler format and add a run_all method
|
||||
module Dashboard
|
||||
module Dese
|
||||
class FourDOne
|
||||
attr_reader :filepath
|
||||
|
||||
def initialize(filepath: Rails.root.join('data', 'admin_data', 'dese', '4D_1_plans_of_grads.csv'))
|
||||
def initialize(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "4D_1_plans_of_grads.csv"))
|
||||
@filepath = filepath
|
||||
end
|
||||
|
||||
def run_all
|
||||
url = 'https://profiles.doe.mass.edu/statereport/plansofhsgrads.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/plansofhsgrads.aspx"
|
||||
browser = Watir::Browser.new
|
||||
write_headers(filepath:)
|
||||
academic_years = AcademicYear.all
|
||||
academic_years.each do |academic_year|
|
||||
table = scrape(browser:, url:, range: academic_year.range)
|
||||
id = 'a-cgpr-i1'
|
||||
id = "a-cgpr-i1"
|
||||
write_csv(table:, filepath:, range: academic_year.range, id:) unless table.nil?
|
||||
end
|
||||
browser.close
|
||||
|
|
@ -28,26 +29,26 @@ module Dese
|
|||
|
||||
return unless browser.option(text: range).present?
|
||||
|
||||
browser.select(id: 'ctl00_ContentPlaceHolder1_ddReportType').select(/School/)
|
||||
browser.select(id: 'ctl00_ContentPlaceHolder1_ddYear').select(text: range)
|
||||
browser.button(id: 'btnViewReport').click
|
||||
browser.select(id: "ctl00_ContentPlaceHolder1_ddReportType").select(/School/)
|
||||
browser.select(id: "ctl00_ContentPlaceHolder1_ddYear").select(text: range)
|
||||
browser.button(id: "btnViewReport").click
|
||||
sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests
|
||||
document = Nokogiri::HTML(browser.html)
|
||||
document.css('tr')
|
||||
document.css("tr")
|
||||
end
|
||||
|
||||
def write_headers(filepath:)
|
||||
CSV.open(filepath, 'w') do |csv|
|
||||
headers = ['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']
|
||||
CSV.open(filepath, "w") do |csv|
|
||||
headers = ["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"]
|
||||
csv << headers
|
||||
end
|
||||
end
|
||||
|
||||
def write_csv(table:, filepath:, range:, id:)
|
||||
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?
|
||||
|
||||
|
|
@ -72,3 +73,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,22 +1,23 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
# TODO: convert this to simpler format and add a run_all method
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class OneAOne
|
||||
attr_reader :filepath
|
||||
|
||||
def initialize(filepath: Rails.root.join('data', 'admin_data', 'dese', '1A_1_teacher_data.csv'))
|
||||
def initialize(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "1A_1_teacher_data.csv"))
|
||||
@filepath = filepath
|
||||
end
|
||||
|
||||
def run_all
|
||||
url = 'https://profiles.doe.mass.edu/statereport/teacherdata.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/teacherdata.aspx"
|
||||
browser = Watir::Browser.new
|
||||
write_headers(filepath:)
|
||||
academic_years = AcademicYear.all
|
||||
academic_years.each do |academic_year|
|
||||
document = scrape(browser:, url:, range: academic_year.range)
|
||||
id = 'a-exp-i1'
|
||||
id = "a-exp-i1"
|
||||
write_csv(document:, filepath:, range: academic_year.range, id:) unless document.nil?
|
||||
end
|
||||
browser.close
|
||||
|
|
@ -25,41 +26,41 @@ module Dese
|
|||
def scrape(browser:, url:, range:)
|
||||
browser.goto(url)
|
||||
|
||||
return unless browser.option(text: 'School').present?
|
||||
return unless browser.option(text: "School").present?
|
||||
return unless browser.option(text: range).present?
|
||||
|
||||
browser.select(id: 'ctl00_ContentPlaceHolder1_ddReportType').select(text: 'School')
|
||||
browser.select(id: 'ctl00_ContentPlaceHolder1_ddYear').select(text: range)
|
||||
browser.button(id: 'ctl00_ContentPlaceHolder1_btnViewReport').click
|
||||
browser.select(id: "ctl00_ContentPlaceHolder1_ddReportType").select(text: "School")
|
||||
browser.select(id: "ctl00_ContentPlaceHolder1_ddYear").select(text: range)
|
||||
browser.button(id: "ctl00_ContentPlaceHolder1_btnViewReport").click
|
||||
sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests
|
||||
Nokogiri::HTML(browser.html)
|
||||
end
|
||||
|
||||
def write_headers(filepath:)
|
||||
CSV.open(filepath, 'w') do |csv|
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', 'Total # of Teachers(FTE)', 'Percent of Teachers Licensed',
|
||||
'Student/Teacher Ratio', 'Percent of Experienced Teachers', 'Percent of Teachers without Waiver or Provisional License', 'Percent Teaching in-field']
|
||||
CSV.open(filepath, "w") do |csv|
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", "Total # of Teachers(FTE)", "Percent of Teachers Licensed",
|
||||
"Student/Teacher Ratio", "Percent of Experienced Teachers", "Percent of Teachers without Waiver or Provisional License", "Percent Teaching in-field"]
|
||||
csv << headers
|
||||
end
|
||||
end
|
||||
|
||||
def write_csv(document:, filepath:, range:, id:)
|
||||
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
|
||||
experienced_teacher_index = header_hash['Percent of Experienced Teachers']
|
||||
dese_id_index = header_hash['School Code']
|
||||
experienced_teacher_index = header_hash["Percent of Experienced Teachers"]
|
||||
dese_id_index = header_hash["School Code"]
|
||||
|
||||
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 = items[experienced_teacher_index].to_f * 4 / 80 if experienced_teacher_index.present?
|
||||
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)
|
||||
|
|
@ -68,7 +69,7 @@ module Dese
|
|||
output = []
|
||||
output << raw_likert_score
|
||||
output << likert_score
|
||||
output << 'a-exp-i1'
|
||||
output << "a-exp-i1"
|
||||
output << range
|
||||
output << items
|
||||
output = output.flatten
|
||||
|
|
@ -76,11 +77,11 @@ module Dese
|
|||
end
|
||||
end
|
||||
|
||||
in_field_index = header_hash['Percent Teaching In-Field']
|
||||
in_field_index = header_hash["Percent Teaching In-Field"]
|
||||
|
||||
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[dese_id_index].to_i
|
||||
next if dese_id.nil? || dese_id.zero?
|
||||
|
||||
|
|
@ -88,9 +89,9 @@ module Dese
|
|||
if in_field_index.present? && percent_in_field.present? && !percent_in_field.zero?
|
||||
raw_likert_score = percent_in_field * 4 / 95
|
||||
end
|
||||
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)
|
||||
|
|
@ -99,7 +100,7 @@ module Dese
|
|||
output = []
|
||||
output << raw_likert_score
|
||||
output << likert_score
|
||||
output << 'a-exp-i3'
|
||||
output << "a-exp-i3"
|
||||
output << range
|
||||
output << items
|
||||
output = output.flatten
|
||||
|
|
@ -113,3 +114,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class OneAThree
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '1A_3_staffing_retention.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '1A_3_teachers_of_color.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "1A_3_staffing_retention.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"1A_3_teachers_of_color.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
|
|
@ -20,49 +22,50 @@ module Dese
|
|||
|
||||
def run_a_pcom_i1
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Principal Total', 'Principal # Retained', 'Principal % Retained',
|
||||
'Teacher Total', 'Teacher # Retained', 'Teacher % Retained']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Principal Total", "Principal # Retained", "Principal % Retained",
|
||||
"Teacher Total", "Teacher # Retained", "Teacher % Retained"]
|
||||
write_headers(filepath:, headers:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/staffingRetentionRates.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/staffingRetentionRates.aspx"
|
||||
range = "#{academic_year.range.split('-').last.to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
retained_teachers = headers['% Retained']
|
||||
retained_teachers = headers["% Retained"]
|
||||
items[retained_teachers].to_f * 4 / 85 if retained_teachers.present?
|
||||
}
|
||||
admin_data_item_id = 'a-pcom-i1'
|
||||
admin_data_item_id = "a-pcom-i1"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
|
||||
def run_a_pcom_i3
|
||||
filepath = filepaths[1]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'African American (%)', 'Asian (%)', 'Hispanic (%)', 'White (%)', 'Native Hawaiian, Pacific Islander (%)',
|
||||
'Multi-Race,Non-Hispanic (%)', 'Females (%)', 'Males (%)', 'FTE Count']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"African American (%)", "Asian (%)", "Hispanic (%)", "White (%)", "Native Hawaiian, Pacific Islander (%)",
|
||||
"Multi-Race,Non-Hispanic (%)", "Females (%)", "Males (%)", "FTE Count"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddDisplay' => 'Percentages' }
|
||||
submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddDisplay" => "Percentages" }
|
||||
submit_id = "ctl00_ContentPlaceHolder1_btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
white = headers['White (%)']
|
||||
white = headers["White (%)"]
|
||||
result = ((100 - items[white].to_f) * 4) / 12.8 if white.present?
|
||||
|
||||
result = 1 if result < 1
|
||||
result
|
||||
}
|
||||
admin_data_item_id = 'a-pcom-i3'
|
||||
admin_data_item_id = "a-pcom-i3"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ module Dashboard
|
|||
include Dashboard::Dese::Scraper
|
||||
attr_reader :filepath
|
||||
|
||||
def initialize(filepath: Dashboard::Engine.root.join("data", "dashboard", "staffing", "staffing.csv"))
|
||||
def initialize(filepath: Dashboard::Engine.root.join("data", "staffing", "staffing.csv"))
|
||||
@filepath = filepath
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,22 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class ThreeAOne
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3A_1_average_class_size.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"3A_1_average_class_size.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Total # of Classes', 'Average Class Size', 'Number of Students', 'Female %', 'Male %',
|
||||
'English Language Learner %', 'Students with Disabilities %', 'Economically Disadvantaged %']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Total # of Classes", "Average Class Size", "Number of Students", "Female %", "Male %",
|
||||
"English Language Learner %", "Students with Disabilities %", "Economically Disadvantaged %"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_reso_i1
|
||||
|
|
@ -24,22 +26,23 @@ module Dese
|
|||
|
||||
def run_a_reso_i1
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
class_size_index = headers['Average Class Size']
|
||||
class_size_index = headers["Average Class Size"]
|
||||
average_class_size = items[class_size_index].to_f
|
||||
benchmark = 20
|
||||
if class_size_index.present? && !items[class_size_index] != ''
|
||||
if class_size_index.present? && !items[class_size_index] != ""
|
||||
((benchmark - average_class_size) + benchmark) * 4 / benchmark
|
||||
end
|
||||
}
|
||||
admin_data_item_id = 'a-reso-i1'
|
||||
admin_data_item_id = "a-reso-i1"
|
||||
Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ module Dashboard
|
|||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths:
|
||||
[Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", "enrollments.csv"),
|
||||
Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese",
|
||||
"3A_2_age_staffing.csv"),
|
||||
Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese",
|
||||
"3A_2_grade_subject_staffing.csv")])
|
||||
[Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "3A_2_age_staffing.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "3A_2_grade_subject_staffing.csv")])
|
||||
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,45 +1,48 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class ThreeBOne
|
||||
include Dese::Scraper
|
||||
include Dese::Enrollments
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3B_1_masscore.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '3B_1_advcoursecomprate.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '3B_1_ap.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '3B_1_student_courses_ratio.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_1_masscore.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"3B_1_advcoursecomprate.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_1_ap.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"3B_1_student_courses_ratio.csv")])
|
||||
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'# Graduated', '# Completed MassCore', '% Completed MassCore']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"# Graduated", "# Completed MassCore", "% Completed MassCore"]
|
||||
write_headers(filepath:, headers:)
|
||||
|
||||
run_a_curv_i1(filepath:)
|
||||
|
||||
filepath = filepaths[1]
|
||||
headers = ['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']
|
||||
headers = ["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"]
|
||||
write_headers(filepath:, headers:)
|
||||
run_a_curv_i2(filepath:)
|
||||
|
||||
filepath = filepaths[2]
|
||||
headers = ['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']
|
||||
headers = ["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"]
|
||||
write_headers(filepath:, headers:)
|
||||
run_a_curv_i3(filepath:)
|
||||
|
||||
filepath = filepaths[3]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Total # of Classes', 'Average Class Size', 'Number of Students', 'Female %', 'Male %', 'English Language Learner %', 'Students with Disabilities %', 'Low Income %', 'Number of Students']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Total # of Classes", "Average Class Size", "Number of Students", "Female %", "Male %", "English Language Learner %", "Students with Disabilities %", "Low Income %", "Number of Students"]
|
||||
write_headers(filepath:, headers:)
|
||||
run_a_curv_i5(filepath:)
|
||||
browser.close
|
||||
|
|
@ -47,84 +50,85 @@ module Dese
|
|||
|
||||
def run_a_curv_i1(filepath:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/masscore.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/masscore.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
completed_index = headers['% Completed MassCore']
|
||||
completed_index = headers["% Completed MassCore"]
|
||||
percent_completed = items[completed_index].to_f
|
||||
benchmark = 90
|
||||
percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != ''
|
||||
percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != ""
|
||||
}
|
||||
admin_data_item_id = 'a-curv-i1'
|
||||
admin_data_item_id = "a-curv-i1"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
|
||||
def run_a_curv_i2(filepath:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/advcoursecomprate.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/advcoursecomprate.aspx"
|
||||
range = "#{academic_year.range.split('-')[1].to_i + 2000}"
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
completed_index = headers['% Students Completing Advanced']
|
||||
completed_index = headers["% Students Completing Advanced"]
|
||||
percent_completed = items[completed_index].to_f
|
||||
benchmark = 30
|
||||
percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != ''
|
||||
percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != ""
|
||||
}
|
||||
admin_data_item_id = 'a-curv-i2'
|
||||
admin_data_item_id = "a-curv-i2"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
|
||||
def run_a_curv_i3(filepath:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/ap.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/ap.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "ctl00_ContentPlaceHolder1_btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
completed_index = headers['% Score 3-5']
|
||||
completed_index = headers["% Score 3-5"]
|
||||
percent_score = items[completed_index].to_f
|
||||
benchmark = 20
|
||||
percent_score * 4 / benchmark if completed_index.present? && !items[completed_index] != ''
|
||||
percent_score * 4 / benchmark if completed_index.present? && !items[completed_index] != ""
|
||||
}
|
||||
admin_data_item_id = 'a-curv-i3'
|
||||
admin_data_item_id = "a-curv-i3"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
|
||||
def run_a_curv_i5(filepath:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
row = headers.keys.zip(items).to_h
|
||||
dese_id = row['School Code'].to_i
|
||||
is_hs = (row['School Name'] in /High School/i)
|
||||
dese_id = row["School Code"].to_i
|
||||
is_hs = (row["School Name"] in /High School/i)
|
||||
school = School.find_by(dese_id:)
|
||||
is_hs = school.is_hs if school.present?
|
||||
next 'NA' unless is_hs
|
||||
next "NA" unless is_hs
|
||||
|
||||
num_of_classes = row['Total # of Classes'].delete(',').to_f
|
||||
num_of_students = student_count(filepath: Rails.root.join('data', 'admin_data', 'dese', 'enrollments.csv'),
|
||||
num_of_classes = row["Total # of Classes"].delete(",").to_f
|
||||
num_of_students = student_count(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"),
|
||||
dese_id:, year: academic_year.range) || 0
|
||||
items << num_of_students
|
||||
actual = num_of_students / num_of_classes
|
||||
benchmark = 5
|
||||
((benchmark - actual) + benchmark) * 4 / benchmark if num_of_classes.present? && num_of_students.present?
|
||||
}
|
||||
admin_data_item_id = 'a-curv-i5'
|
||||
admin_data_item_id = "a-curv-i5"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,31 +1,33 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class ThreeBTwo
|
||||
include Dese::Scraper
|
||||
include Dese::Enrollments
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3B_2_teacher_by_race_and_gender.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '3B_2_student_by_race_and_gender.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_2_teacher_by_race_and_gender.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"3B_2_student_by_race_and_gender.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
def run_all
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'Teachers of color (%)', 'School Name', 'DESE ID',
|
||||
'African American (%)', 'Asian (%)', 'Hispanic (%)', 'White (%)', 'Native American (%)',
|
||||
'Native Hawaiian Pacific Islander (%)', 'Multi-Race Non-Hispanic (%)', 'Females (%)',
|
||||
'Males (%)', 'FTE Count']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "Teachers of color (%)", "School Name", "DESE ID",
|
||||
"African American (%)", "Asian (%)", "Hispanic (%)", "White (%)", "Native American (%)",
|
||||
"Native Hawaiian Pacific Islander (%)", "Multi-Race Non-Hispanic (%)", "Females (%)",
|
||||
"Males (%)", "FTE Count"]
|
||||
write_headers(filepath:, headers:)
|
||||
run_teacher_demographics(filepath:)
|
||||
|
||||
filepath = filepaths[1]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'Non-White Teachers %', 'Non-White Students %', 'School Name', 'DESE ID',
|
||||
'African American', 'Asian', 'Hispanic', 'White', 'Native American',
|
||||
'Native Hawaiian or Pacific Islander', 'Multi-Race or Non-Hispanic', 'Males',
|
||||
'Females', 'Non-Binary', 'Students of color (%)']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "Non-White Teachers %", "Non-White Students %", "School Name", "DESE ID",
|
||||
"African American", "Asian", "Hispanic", "White", "Native American",
|
||||
"Native Hawaiian or Pacific Islander", "Multi-Race or Non-Hispanic", "Males",
|
||||
"Females", "Non-Binary", "Students of color (%)"]
|
||||
write_headers(filepath:, headers:)
|
||||
run_student_demographics(filepath:)
|
||||
|
||||
|
|
@ -34,31 +36,31 @@ module Dese
|
|||
|
||||
def run_teacher_demographics(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = ''
|
||||
url = 'https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx'
|
||||
admin_data_item_id = ""
|
||||
url = "https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range,
|
||||
'ctl00_ContentPlaceHolder1_ddDisplay' => 'Percentages',
|
||||
'ctl00_ContentPlaceHolder1_ddClassification' => 'Teacher' }
|
||||
submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range,
|
||||
"ctl00_ContentPlaceHolder1_ddDisplay" => "Percentages",
|
||||
"ctl00_ContentPlaceHolder1_ddClassification" => "Teacher" }
|
||||
submit_id = "ctl00_ContentPlaceHolder1_btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
african_american_index = headers['African American (%)']
|
||||
african_american_index = headers["African American (%)"]
|
||||
african_american_number = items[african_american_index].to_f
|
||||
|
||||
asian_index = headers['Asian (%)']
|
||||
asian_index = headers["Asian (%)"]
|
||||
asian_number = items[asian_index].to_f
|
||||
|
||||
hispanic_index = headers['Hispanic (%)']
|
||||
hispanic_index = headers["Hispanic (%)"]
|
||||
hispanic_number = items[hispanic_index].to_f
|
||||
|
||||
native_american_index = headers['Native American (%)']
|
||||
native_american_index = headers["Native American (%)"]
|
||||
native_american_number = items[native_american_index].to_f
|
||||
|
||||
native_hawaiian_index = headers['Native Hawaiian, Pacific Islander (%)']
|
||||
native_hawaiian_index = headers["Native Hawaiian, Pacific Islander (%)"]
|
||||
native_hawaiian_number = items[native_hawaiian_index].to_f
|
||||
|
||||
multi_race_index = headers['Multi-Race,Non-Hispanic (%)']
|
||||
multi_race_index = headers["Multi-Race,Non-Hispanic (%)"]
|
||||
multi_race_number = items[multi_race_index].to_f
|
||||
|
||||
non_white_teachers = african_american_number + asian_number + hispanic_number + native_american_number + native_hawaiian_number + multi_race_number
|
||||
|
|
@ -75,36 +77,36 @@ module Dese
|
|||
@years_with_data ||= Set.new
|
||||
if @teachers.count == 0
|
||||
CSV.parse(File.read(filepath), headers: true).map do |row|
|
||||
academic_year = row['Academic Year']
|
||||
academic_year = row["Academic Year"]
|
||||
@years_with_data << academic_year
|
||||
school_id = row['DESE ID'].to_i
|
||||
total = row['Teachers of color (%)'].delete(',')
|
||||
total = 'NA' if total == '' || total.nil?
|
||||
school_id = row["DESE ID"].to_i
|
||||
total = row["Teachers of color (%)"].delete(",")
|
||||
total = "NA" if total == "" || total.nil?
|
||||
@teachers[[school_id, academic_year]] = total
|
||||
end
|
||||
end
|
||||
return 'NA' unless @years_with_data.include? year
|
||||
return "NA" unless @years_with_data.include? year
|
||||
|
||||
@teachers[[dese_id, year]]
|
||||
end
|
||||
|
||||
def run_student_demographics(filepath:)
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-cure-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/enrollmentbyracegender.aspx'
|
||||
admin_data_item_id = "a-cure-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/enrollmentbyracegender.aspx"
|
||||
range = academic_year.range
|
||||
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
white_index = headers['White']
|
||||
white_index = headers["White"]
|
||||
white_number = items[white_index].to_f
|
||||
dese_id = items[headers['School Code']].to_i
|
||||
dese_id = items[headers["School Code"]].to_i
|
||||
non_white_student_percentage = (100 - white_number).to_f
|
||||
items.unshift(non_white_student_percentage)
|
||||
count_of_teachers = teacher_count(filepath: filepaths[0], dese_id:, year: academic_year.range)
|
||||
return 'NA' if count_of_teachers == 'NA'
|
||||
return "NA" if count_of_teachers == "NA"
|
||||
|
||||
non_white_teacher_percentage = count_of_teachers.to_f
|
||||
items.unshift(non_white_teacher_percentage)
|
||||
|
|
@ -127,3 +129,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class TwoAOne
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '2A_1_students_suspended.csv'),
|
||||
Rails.root.join('data', 'admin_data', 'dese', '2A_1_students_disciplined.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "2A_1_students_suspended.csv"),
|
||||
Dashboard::Engine.root.join("data", "admin_data", "dese",
|
||||
"2A_1_students_disciplined.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
|
|
@ -20,51 +22,52 @@ module Dese
|
|||
|
||||
def run_a_phys_i1
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Students', 'Students Disciplined', '% In-School Suspension', '% Out-of-School Suspension', '% Expulsion', '% Removed to Alternate Setting',
|
||||
'% Emergency Removal', '% Students with a School-Based Arrest', '% Students with a Law Enforcement Referral']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Students", "Students Disciplined", "% In-School Suspension", "% Out-of-School Suspension", "% Expulsion", "% Removed to Alternate Setting",
|
||||
"% Emergency Removal", "% Students with a School-Based Arrest", "% Students with a Law Enforcement Referral"]
|
||||
write_headers(filepath:, headers:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/ssdr.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/ssdr.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "ctl00_ContentPlaceHolder1_btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
suspensions_index = headers['% Out-of-School Suspension']
|
||||
suspensions_index = headers["% Out-of-School Suspension"]
|
||||
benchmark = 5.27
|
||||
suspension_rate = items[suspensions_index].to_f
|
||||
if suspensions_index.present? && items[suspensions_index] != ''
|
||||
if suspensions_index.present? && items[suspensions_index] != ""
|
||||
((benchmark - suspension_rate) + benchmark) * 4 / 5.27
|
||||
end
|
||||
}
|
||||
admin_data_item_id = 'a-phys-i1'
|
||||
admin_data_item_id = "a-phys-i1"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
|
||||
def run_a_phys_i3
|
||||
filepath = filepaths[1]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Students', 'Students Disciplined', '% 1 Day', '% 2 to 3 Days', '% 4 to 7 Days', '% 8 to 10 Days', '% > 10 Days']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Students", "Students Disciplined", "% 1 Day", "% 2 to 3 Days", "% 4 to 7 Days", "% 8 to 10 Days", "% > 10 Days"]
|
||||
write_headers(filepath:, headers:)
|
||||
run do |academic_year|
|
||||
url = 'https://profiles.doe.mass.edu/statereport/ssdr_days_missed.aspx'
|
||||
url = "https://profiles.doe.mass.edu/statereport/ssdr_days_missed.aspx"
|
||||
range = academic_year.range
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "ctl00_ContentPlaceHolder1_btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
days_missed_index = headers['% > 10 Days']
|
||||
days_missed_index = headers["% > 10 Days"]
|
||||
benchmark = 1
|
||||
missed_days = items[days_missed_index].to_f
|
||||
if days_missed_index.present? && items[days_missed_index] != ''
|
||||
if days_missed_index.present? && items[days_missed_index] != ""
|
||||
((benchmark - missed_days) + benchmark) * 4 / benchmark
|
||||
end
|
||||
}
|
||||
admin_data_item_id = 'a-phys-i3'
|
||||
admin_data_item_id = "a-phys-i3"
|
||||
Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
require 'watir'
|
||||
require 'csv'
|
||||
require "watir"
|
||||
require "csv"
|
||||
|
||||
module Dashboard
|
||||
module Dese
|
||||
class TwoCOne
|
||||
include Dese::Scraper
|
||||
attr_reader :filepaths
|
||||
|
||||
def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '2C_1_attendance.csv')])
|
||||
def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "2C_1_attendance.csv")])
|
||||
@filepaths = filepaths
|
||||
end
|
||||
|
||||
|
|
@ -20,27 +21,27 @@ module Dese
|
|||
|
||||
def write_a_vale_i1_headers
|
||||
filepath = filepaths[0]
|
||||
headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID',
|
||||
'Attendance Rate', 'Average # of Absences', 'Absent 10 or more days', 'Chronically Absent (10% or more)',
|
||||
'Chronically Absent (20% or more)', 'Unexcused > 9 days']
|
||||
headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID",
|
||||
"Attendance Rate", "Average # of Absences", "Absent 10 or more days", "Chronically Absent (10% or more)",
|
||||
"Chronically Absent (20% or more)", "Unexcused > 9 days"]
|
||||
write_headers(filepath:, headers:)
|
||||
end
|
||||
|
||||
def run_a_vale_i1
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-vale-i1'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/attendance.aspx'
|
||||
admin_data_item_id = "a-vale-i1"
|
||||
url = "https://profiles.doe.mass.edu/statereport/attendance.aspx"
|
||||
range = case academic_year.range
|
||||
when '2021-22', '2020-21'
|
||||
when "2021-22", "2020-21"
|
||||
"#{academic_year.range} (End of year)"
|
||||
else
|
||||
academic_year.range
|
||||
end
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
absence_index = headers['Chronically Absent (10% or more)']
|
||||
absence_index = headers["Chronically Absent (10% or more)"]
|
||||
benchmark = 10
|
||||
absence_rate = items[absence_index].to_f
|
||||
if absence_index.present? && !items[absence_index].blank?
|
||||
|
|
@ -53,19 +54,19 @@ module Dese
|
|||
|
||||
def run_a_vale_i2
|
||||
run do |academic_year|
|
||||
admin_data_item_id = 'a-vale-i2'
|
||||
url = 'https://profiles.doe.mass.edu/statereport/attendance.aspx'
|
||||
admin_data_item_id = "a-vale-i2"
|
||||
url = "https://profiles.doe.mass.edu/statereport/attendance.aspx"
|
||||
range = case academic_year.range
|
||||
when '2021-22', '2020-21'
|
||||
when "2021-22", "2020-21"
|
||||
"#{academic_year.range} (End of year)"
|
||||
else
|
||||
academic_year.range
|
||||
end
|
||||
selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School',
|
||||
'ctl00_ContentPlaceHolder1_ddYear' => range }
|
||||
submit_id = 'btnViewReport'
|
||||
selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School",
|
||||
"ctl00_ContentPlaceHolder1_ddYear" => range }
|
||||
submit_id = "btnViewReport"
|
||||
calculation = lambda { |headers, items|
|
||||
attendance = headers[' Attendance Rate ']
|
||||
attendance = headers[" Attendance Rate "]
|
||||
benchmark = 90
|
||||
items[attendance].to_f * 4 / benchmark if attendance.present?
|
||||
}
|
||||
|
|
@ -74,3 +75,4 @@ module Dese
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
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
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
|
@ -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,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,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
|
||||
|
12899
data/admin_data/dese/3B_1_student_courses_ratio.csv
Normal file
12899
data/admin_data/dese/3B_1_student_courses_ratio.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
Can't render this file because it is too large.
|
|
|
@ -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
|
||||
|
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
|
||||
|
File diff suppressed because it is too large
Load diff
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
Can't render this file because it is too large.
|
|
|
@ -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"
|
||||
|
Can't render this file because it is too large.
|
File diff suppressed because it is too large
Load diff
|
Can't render this file because it is too large.
|
|
|
@ -31,12 +31,12 @@ namespace :dashboard do
|
|||
desc "load admin_data"
|
||||
task load_admin_data: :environment do
|
||||
original_count = AdminDataValue.count
|
||||
Dir.glob(Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", "*.csv")).each do |filepath|
|
||||
Dir.glob(Dashboard::Engine.root.join("data", "admin_data", "dese", "*.csv")).each do |filepath|
|
||||
puts "=====================> Loading data from csv at path: #{filepath}"
|
||||
Dashboard::Dese::Loader.load_data filepath:
|
||||
end
|
||||
|
||||
Dir.glob(Dashboard::Engine.root.join("data", "dashboard", "admin_data", "out_of_state",
|
||||
Dir.glob(Dashboard::Engine.root.join("data", "admin_data", "out_of_state",
|
||||
"*.csv")).each do |filepath|
|
||||
puts "=====================> Loading data from csv at path: #{filepath}"
|
||||
Dashboard::Dese::Loader.load_data filepath:
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue