Merge branch 'rpp-response-rate' into rpp-main to bring in improvements

to how we get enrollment and staffing information.  Also speed up tests
This commit is contained in:
rebuilt 2023-03-22 16:52:55 -07:00
commit 825259bdd8
47 changed files with 48818 additions and 1354 deletions

View file

@ -76,6 +76,7 @@ group :development do
gem 'bullet'
gem 'erb_lint', require: false
gem 'erblint-github'
gem 'guard-rspec', require: false
gem 'listen', '~> 3.0.5'
gem 'nested_scaffold'
# gem 'reek', require: false

View file

@ -109,7 +109,8 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
concurrent-ruby (1.2.0)
coderay (1.1.3)
concurrent-ruby (1.2.2)
crass (1.0.6)
cssbundling-rails (1.1.2)
railties (>= 6.0.0)
@ -147,10 +148,25 @@ GEM
factory_bot (~> 6.2.0)
railties (>= 5.0.0)
ffi (1.15.5)
formatador (1.1.0)
friendly_id (5.1.0)
activerecord (>= 4.0.0)
globalid (1.1.0)
activesupport (>= 5.0)
guard (2.18.0)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.13.0)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-rspec (4.7.3)
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
haml (6.1.1)
temple (>= 0.8.2)
thor
@ -184,6 +200,7 @@ GEM
loofah (2.19.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.2.8)
mail (2.8.1)
mini_mime (>= 0.1.1)
net-imap
@ -193,9 +210,10 @@ GEM
matrix (0.4.2)
method_source (1.0.0)
mini_mime (1.1.2)
minitest (5.17.0)
minitest (5.18.0)
msgpack (1.6.0)
multi_json (1.15.0)
nenv (0.3.0)
nested_scaffold (1.1.0)
net-imap (0.3.4)
date
@ -215,6 +233,9 @@ GEM
racc (~> 1.4)
nokogiri (1.14.2-x86_64-linux)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
omniauth (2.1.1)
hashie (>= 3.4.6)
rack (>= 2.2.3)
@ -226,6 +247,9 @@ GEM
parser (3.2.1.0)
ast (~> 2.4.1)
pg (1.4.5)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.0.1)
puma (6.1.0)
nio4r (~> 2.0)
@ -284,6 +308,10 @@ GEM
reverse_markdown (2.1.1)
nokogiri
rexml (3.2.5)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.1)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.2)
@ -325,6 +353,7 @@ GEM
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
shellany (0.0.1)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
@ -426,6 +455,7 @@ DEPENDENCIES
erblint-github
factory_bot_rails
friendly_id (~> 5.1.0)
guard-rspec
haml
jbuilder (~> 2.5)
jquery-rails

70
Guardfile Normal file
View file

@ -0,0 +1,70 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
## Uncomment and set this to only include directories you want to watch
# directories %w(app lib config test spec features) \
# .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
## Note: if you are using the `directories` clause above and you are not
## watching the project directory ('.'), then you will want to move
## the Guardfile to a watched dir and symlink it back, e.g.
#
# $ mkdir config
# $ mv Guardfile config/
# $ ln -s config/Guardfile .
#
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
# Note: The cmd option is now required due to the increasing number of ways
# rspec may be run, below are examples of the most common uses.
# * bundler: 'bundle exec rspec'
# * bundler binstubs: 'bin/rspec'
# * spring: 'bin/rspec' (This will use spring if running and you have
# installed the spring binstubs per the docs)
# * zeus: 'zeus rspec' (requires the server to be started separately)
# * 'just' rspec: 'rspec'
guard :rspec, cmd: "bundle exec rspec" do
require "guard/rspec/dsl"
dsl = Guard::RSpec::Dsl.new(self)
# Feel free to open issues for suggestions and improvements
# RSpec files
rspec = dsl.rspec
watch(rspec.spec_helper) { rspec.spec_dir }
watch(rspec.spec_support) { rspec.spec_dir }
watch(rspec.spec_files)
# Ruby files
ruby = dsl.ruby
dsl.watch_spec_files_for(ruby.lib_files)
# Rails files
rails = dsl.rails(view_extensions: %w(erb haml slim))
dsl.watch_spec_files_for(rails.app_files)
dsl.watch_spec_files_for(rails.views)
watch(rails.controllers) do |m|
[
rspec.spec.call("routing/#{m[1]}_routing"),
rspec.spec.call("controllers/#{m[1]}_controller"),
rspec.spec.call("acceptance/#{m[1]}")
]
end
# Rails config changes
watch(rails.spec_helper) { rspec.spec_dir }
watch(rails.routes) { "#{rspec.spec_dir}/routing" }
watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
# Capybara features specs
watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") }
watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") }
# Turnip features and steps
watch(%r{^spec/acceptance/(.+)\.feature$})
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
end
end

View file

@ -227,6 +227,30 @@ $ heroku run:detached -a mciea-beta bundle exec rake data:reset_race_scores
$ heroku run:detached -a mciea-dashboard bundle exec rake data:reset_race_scores
```
### Load enrollment and staffing data
Enrollment and staffing numbers are taken from the DESE website.
To scrape staffing data from dese:
```bash
bundle exec rake scrape:staffing
```
To scrape enrollment data from dese:
```bash
bundle exec rake scrape:enrollment
```
Then to load it, run the seeder:
```bash
bundle exec rake db:seed
```
Or to load it for the lowell dashboard specifically
```bash
bundle exec rake data:seed_only_lowell
```
## Running tests
### Single threaded test execution
@ -249,6 +273,14 @@ Run the tests
bundle exec rake
```
### Automating test running
The guard-rspec gem will run the tests automatically when files are changed.
```bash
bundle exec guard
```
### Parallel test execution
The [parallel tests](https://github.com/grosser/parallel_tests) gem is installed. It's optional to use.

View file

@ -6,13 +6,18 @@ class Seeder
end
def seed_academic_years(*academic_year_ranges)
academic_years = []
academic_year_ranges.each do |range|
AcademicYear.find_or_create_by! range:
academic_year = AcademicYear.find_or_initialize_by(range:)
academic_years << academic_year
end
AcademicYear.import academic_years, on_duplicate_key_update: :all
end
def seed_districts_and_schools(csv_file)
dese_ids = []
schools = []
CSV.parse(File.read(csv_file), headers: true) do |row|
district_name = row['District'].strip
next if rules.any? do |rule|
@ -27,21 +32,26 @@ class Seeder
hs = row['HS?']
district = District.find_or_create_by! name: district_name
district.update! slug: district_name.parameterize, qualtrics_code: district_code
district.slug = district_name.parameterize
district.qualtrics_code = district_code
district.save
school = School.find_or_initialize_by(dese_id:, district:)
school.name = school_name
school.qualtrics_code = school_code
school.is_hs = marked? hs
school.save!
schools << school
end
School.import schools, on_duplicate_key_update: :all
Respondent.joins(:school).where.not("school.dese_id": dese_ids).destroy_all
Survey.joins(:school).where.not("school.dese_id": dese_ids).destroy_all
School.where.not(dese_id: dese_ids).destroy_all
end
def seed_surveys(csv_file)
surveys = []
CSV.parse(File.read(csv_file), headers: true) do |row|
district_name = row['District'].strip
next if rules.any? do |rule|
@ -57,41 +67,11 @@ class Seeder
survey = Survey.find_or_initialize_by(school:, academic_year:)
is_short_form_school = marked?(short_form)
survey.form = is_short_form_school ? Survey.forms[:short] : Survey.forms[:normal]
survey.save!
end
end
end
def seed_respondents(csv_file)
schools = []
CSV.parse(File.read(csv_file), headers: true) do |row|
dese_id = row['DESE School ID'].strip.to_i
district_name = row['District'].strip
next if rules.any? do |rule|
rule.new(row:).skip_row?
end
district = District.find_or_create_by! name: district_name
school = School.find_by(dese_id:, district:)
schools << school
academic_years = AcademicYear.all
academic_years.each do |academic_year|
total_students = row["Total Students for Response Rate (#{academic_year.range})"]
total_teachers = row["Total Teachers for Response Rate (#{academic_year.range})"]
total_students = remove_commas(total_students)
total_teachers = remove_commas(total_teachers)
respondent = Respondent.find_or_initialize_by(school:, academic_year:)
respondent.total_students = total_students
respondent.total_teachers = total_teachers
respondent.academic_year = academic_year
respondent.save
surveys << survey
end
end
Respondent.where.not(school: schools).destroy_all
Survey.import surveys, on_duplicate_key_update: :all
end
def seed_sqm_framework(csv_file)
@ -164,6 +144,18 @@ class Seeder
DemographicLoader.load_data(filepath: csv_file)
end
def seed_enrollment(csv_file)
EnrollmentLoader.load_data(filepath: csv_file)
end
def seed_staffing(csv_file)
StaffingLoader.load_data(filepath: csv_file)
missing_staffing_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).none? do |respondent|
respondent.total_teachers.present?
end
StaffingLoader.clone_previous_year_data if missing_staffing_for_current_year
end
private
def marked?(mark)

View file

@ -14,4 +14,8 @@ class District < ApplicationRecord
before_save do
self.slug ||= name.parameterize
end
def self.boston
District.find_by_name('Boston')
end
end

View file

@ -3,4 +3,6 @@
class Respondent < ApplicationRecord
belongs_to :school
belongs_to :academic_year
validates :school, uniqueness: { scope: :academic_year }
end

View file

@ -39,10 +39,6 @@ class ResponseRateCalculator
Survey.find_by(school:, academic_year:)
end
def raw_response_rate
(average_responses_per_survey_item / total_possible_responses.to_f * 100).round
end
def average_responses_per_survey_item
response_count / survey_item_count.to_f
end

View file

@ -3,6 +3,27 @@
class StudentResponseRateCalculator < ResponseRateCalculator
private
def raw_response_rate
# def rate
# check to see if enrollment data is available
# if not, run the dese loader to get the data
# then upload the enrollment data into the db
#
# if you still don't see enrollment for the school, raise an error and return 100 from this method
#
# Get the enrollment information from the db
# Get the list of all grades
# For each grade, get the survey items with data
#
#
# All methods below will need to specify a grade
grades_with_sufficient_responses.map do |grade|
puts "Grade: #{grade}"
end
(average_responses_per_survey_item / total_possible_responses.to_f * 100).round
end
def survey_item_count
@survey_item_count ||= begin
survey_items = SurveyItem.includes(%i[scale
@ -34,4 +55,15 @@ class StudentResponseRateCalculator < ResponseRateCalculator
total_responses.total_students
end
end
def grades_with_sufficient_responses
SurveyItemResponse.where(school:, academic_year:,
survey_item: subcategory.survey_items.student_survey_items).where.not(grade: nil)
.group(:grade)
.select(:response_id)
.distinct(:response_id)
.count.reject do |_key, value|
value < 10
end.keys
end
end

View file

@ -4,6 +4,7 @@ class Subcategory < ActiveRecord::Base
belongs_to :category, counter_cache: true
has_many :measures
has_many :survey_items, through: :measures
def score(school:, academic_year:)
scores = measures.map do |measure|

View file

@ -24,7 +24,41 @@ class SurveyItem < ActiveRecord::Base
scope :short_form_items, lambda {
where(on_short_form: true)
}
scope :early_education_surveys, lambda {
where("survey_item_id LIKE '%-%-es%'")
}
scope :survey_items_for_grade, lambda { |school, academic_year, grade|
includes(:survey_item_responses)
.where("survey_item_responses.grade": grade,
"survey_item_responses.school": school,
"survey_item_responses.academic_year": academic_year).distinct
}
scope :survey_item_ids_for_grade, lambda { |school, academic_year, grade|
survey_items_for_grade(school, academic_year, grade).pluck(:survey_item_id)
}
scope :survey_items_for_grade_and_subcategory, lambda { |school, academic_year, grade, subcategory|
includes(:survey_item_responses)
.where(
survey_item_id: subcategory.survey_items.pluck(:survey_item_id),
"survey_item_responses.school": school,
"survey_item_responses.academic_year": academic_year,
"survey_item_responses.grade": grade
)
}
scope :survey_type_for_grade, lambda { |school, academic_year, grade|
survey_items_set_by_grade = survey_items_for_grade(school, academic_year, grade).pluck(:survey_item_id).to_set
if survey_items_set_by_grade.size > 0 && survey_items_set_by_grade.subset?(early_education_surveys.pluck(:survey_item_id).to_set)
return :early_education
end
:regular
}
# TODO: rename this to Summary
def description
DataAvailability.new(survey_item_id, prompt, true)
end

View file

@ -13,17 +13,16 @@ class SurveyItemResponse < ActiveRecord::Base
has_one :measure, through: :survey_item
scope :exclude_boston, lambda {
boston = District.find_by_name('Boston')
where.not(school: boston.schools) if boston.present?
where.not(school: District.boston.schools) if District.boston.present?
}
scope :averages_for_grade, ->(survey_items, school, academic_year, grade) {
SurveyItemResponse.where(survey_item: survey_items, school:,
academic_year: , grade:).group(:survey_item).average(:likert_score)
scope :averages_for_grade, lambda { |survey_items, school, academic_year, grade|
SurveyItemResponse.where(survey_item: survey_items, school:,
academic_year:, grade:).group(:survey_item).average(:likert_score)
}
scope :averages_for_gender, ->(survey_items, school, academic_year, gender) {
SurveyItemResponse.where(survey_item: survey_items, school:,
academic_year: , gender:).group(:survey_item).average(:likert_score)
scope :averages_for_gender, lambda { |survey_items, school, academic_year, gender|
SurveyItemResponse.where(survey_item: survey_items, school:,
academic_year:, gender:).group(:survey_item).average(:likert_score)
}
end

View file

@ -26,4 +26,8 @@ class TeacherResponseRateCalculator < ResponseRateCalculator
total_responses.total_teachers
end
end
def raw_response_rate
(average_responses_per_survey_item / total_possible_responses.to_f * 100).round
end
end

View file

@ -43,6 +43,7 @@ class AdminDataLoader
end
def self.create_admin_data_value(row:, score:)
# byebug unless %w[a-vale-i1 a-sust-i3].include? admin_data_item(row:)
AdminDataValue.create!(likert_score: score,
academic_year: AcademicYear.find_by_range(ay(row:)),
school: School.find_by_dese_id(dese_id(row:).to_i),

View file

@ -41,7 +41,7 @@ module Dese
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 (%)',
'African American (%)', 'Asian (%)', 'Hispanic (%)', 'White (%)', 'Native Amertican (%)', 'Native Hawaiian, Pacific Islander (%)',
'Multi-Race,Non-Hispanic (%)', 'Females (%)', 'Males (%)', 'FTE Count']
write_headers(filepath:, headers:)

View file

@ -1,6 +1,6 @@
module Dese
module Scraper
DELAY = 20
DELAY = 20 # The dese site will block you if you hit it too many times in a short period of time
Prerequisites = Struct.new('Prerequisites', :filepath, :url, :selectors, :submit_id, :admin_data_item_id,
:calculation)

View file

@ -0,0 +1,131 @@
# frozen_string_literal: true
require 'csv'
class EnrollmentLoader
def self.load_data(filepath:)
schools = []
enrollments = []
CSV.parse(File.read(filepath), headers: true) do |row|
row = EnrollmentRowValues.new(row:)
next unless row.school.present? && row.academic_year.present?
schools << row.school
enrollments << create_enrollment_entry(row:)
end
# It's possible that instead of updating all columns on duplicate key, we could just update the student columns and leave total_teachers alone. Right now enrollment data loads before staffing data so it works correctly.
Respondent.import enrollments, batch_size: 1000,
on_duplicate_key_update: %i[pk k one two three four five six seven eight nine ten eleven twelve total_students]
Respondent.where.not(school: schools).destroy_all
end
private
def self.create_enrollment_entry(row:)
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year)
respondent.pk = row.pk
respondent.k = row.k
respondent.one = row.one
respondent.two = row.two
respondent.three = row.three
respondent.four = row.four
respondent.five = row.five
respondent.six = row.six
respondent.seven = row.seven
respondent.eight = row.eight
respondent.nine = row.nine
respondent.ten = row.ten
respondent.eleven = row.eleven
respondent.twelve = row.twelve
respondent.total_students = row.total_students
respondent
end
private_class_method :create_enrollment_entry
end
class EnrollmentRowValues
attr_reader :row
def initialize(row:)
@row = row
end
def school
@school ||= begin
dese_id = row['DESE ID'].try(:strip).to_i
School.find_by_dese_id(dese_id)
end
end
def academic_year
@academic_year ||= begin
year = row['Academic Year']
AcademicYear.find_by_range(year)
end
end
def pk
row['PK'] || row['pk']
end
def k
row['K'] || row['k']
end
def one
row['1']
end
def two
row['2']
end
def three
row['3']
end
def four
row['4']
end
def five
row['5']
end
def six
row['6']
end
def seven
row['7']
end
def eight
row['8']
end
def nine
row['9']
end
def ten
row['10']
end
def eleven
row['11']
end
def twelve
row['12']
end
def total_students
row['Total'].gsub(',', '').to_i
end
end

View file

@ -4,11 +4,7 @@ class ResponseRateLoader
def self.reset(schools: School.all, academic_years: AcademicYear.all, subcategories: Subcategory.all)
subcategories.each do |subcategory|
schools.each do |school|
next if test_env? && (school != milford)
academic_years.each do |academic_year|
next if test_env? && (academic_year != test_year)
process_response_rate(subcategory:, school:, academic_year:)
end
end
@ -17,18 +13,6 @@ class ResponseRateLoader
private
def self.milford
School.find_by_slug 'milford-high-school'
end
def self.test_year
AcademicYear.find_by_range '2020-21'
end
def self.rails_env
@rails_env ||= ENV['RAILS_ENV']
end
def self.process_response_rate(subcategory:, school:, academic_year:)
student = StudentResponseRateCalculator.new(subcategory:, school:, academic_year:)
teacher = TeacherResponseRateCalculator.new(subcategory:, school:, academic_year:)
@ -41,13 +25,5 @@ class ResponseRateLoader
meets_teacher_threshold: teacher.meets_teacher_threshold?)
end
def self.test_env?
rails_env == 'test'
end
private_class_method :milford
private_class_method :test_year
private_class_method :rails_env
private_class_method :process_response_rate
private_class_method :test_env?
end

View file

@ -0,0 +1,73 @@
# frozen_string_literal: true
# TODO
require 'csv'
class StaffingLoader
def self.load_data(filepath:)
schools = []
respondents = []
CSV.parse(File.read(filepath), headers: true) do |row|
row = StaffingRowValues.new(row:)
next unless row.school.present? && row.academic_year.present?
schools << row.school
respondents << create_staffing_entry(row:)
end
Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers]
Respondent.where.not(school: schools).destroy_all
end
def self.clone_previous_year_data
years = AcademicYear.order(:range).last(2)
previous_year = years.first
current_year = years.last
respondents = []
School.all.each do |school|
Respondent.where(school:, academic_year: previous_year).each do |respondent|
current_respondent = Respondent.find_or_initialize_by(school:, academic_year: current_year)
current_respondent.total_teachers = respondent.total_teachers
respondents << current_respondent
end
end
Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers]
end
private
def self.create_staffing_entry(row:)
respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year)
respondent.total_teachers = row.fte_count
respondent
end
private_class_method :create_staffing_entry
end
class StaffingRowValues
attr_reader :row
def initialize(row:)
@row = row
end
def school
@school ||= begin
dese_id = row['DESE ID'].strip.to_i
School.find_by_dese_id(dese_id)
end
end
def academic_year
@academic_year ||= begin
year = row['Academic Year']
AcademicYear.find_by_range(year)
end
end
def fte_count
row['FTE Count']
end
end

View file

@ -1,375 +0,0 @@
District,School,DESE ID,Category,Item ID,NonLikert Title,NL_Value,LikertScore,Benchmark,Data Type,Academic Year
Revere,Seacoast High School,02480520,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),31.6,1.58,80,,2016-17
Somerville,Somerville High School,02740505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),85,4.25,80,,2016-17
Attleboro,Attleboro High School,00160505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),91,4.55,80,,2016-17
Revere,Revere High School,02480505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),93.6,4.68,80,,2016-17
Winchester,Winchester High School,03440505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),98,4.9,80,,2016-17
Revere,Seacoast High School,02480520,4-B-ii,a-degr-i3,5-year graduation rate (HS only),42.3,1.990588235,85,,2016-17
Somerville,Somerville High School,02740505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),87.5,4.117647059,85,,2016-17
Attleboro,Attleboro High School,00160505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),88.1,4.145882353,85,,2016-17
Revere,Revere High School,02480505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),96.5,4.541176471,85,,2016-17
Winchester,Winchester High School,03440505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),99,4.658823529,85,,2016-17
Revere,Seacoast High School,02480520,3-A-i,a-reso-i1,Average class size,5.6,4.88,20,,2016-17
Somerville,Somerville High School,02740505,3-A-i,a-reso-i1,Average class size,14,3.2,20,,2016-17
Revere,Revere High School,02480505,3-A-i,a-reso-i1,Average class size,15.7,2.86,20,,2016-17
Somerville,Arthur D. Healey School,02740075,3-A-i,a-reso-i1,Average class size,16.1,2.78,20,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,3-A-i,a-reso-i1,Average class size,16.5,2.7,20,,2016-17
Revere,Lincoln Elementary School,02480025,3-A-i,a-reso-i1,Average class size,17.3,2.54,20,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,3-A-i,a-reso-i1,Average class size,17.8,2.44,20,,2016-17
Winchester,Winchester High School,03440505,3-A-i,a-reso-i1,Average class size,18,2.4,20,,2016-17
Winchester,McCall Middle School,03440305,3-A-i,a-reso-i1,Average class size,18,2.4,20,,2016-17
Winchester,Ambrose Elementary School,03440045,3-A-i,a-reso-i1,Average class size,18,2.4,20,,2016-17
Winchester,Lincoln Elementary School,02480025,3-A-i,a-reso-i1,Average class size,18,2.4,20,,2016-17
Winchester,Muraco Elementary School,03440040,3-A-i,a-reso-i1,Average class size,18,2.4,20,,2016-17
Attleboro,Attleboro High School,00160505,3-A-i,a-reso-i1,Average class size,18.1,2.38,20,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,3-A-i,a-reso-i1,Average class size,18.2,2.36,20,,2016-17
Somerville,Benjamin G. Brown School,02740015,3-A-i,a-reso-i1,Average class size,18.5,2.3,20,,2016-17
Revere,Beachmont Elementary School,02480013,3-A-i,a-reso-i1,Average class size,18.7,2.26,20,,2016-17
Winchester,Lynch Elementary School,03440020,3-A-i,a-reso-i1,Average class size,19,2.2,20,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,3-A-i,a-reso-i1,Average class size,19,2.2,20,,2016-17
Revere,Hill Elementary School,02480035,3-A-i,a-reso-i1,Average class size,19.4,2.12,20,,2016-17
Revere,Garfield Middle School,02480057,3-A-i,a-reso-i1,Average class size,19.5,2.1,20,,2016-17
Somerville,West Somerville Neighborhood School,02740115,3-A-i,a-reso-i1,Average class size,19.9,2.02,20,,2016-17
Revere,Garfield Elementary School,02480056,3-A-i,a-reso-i1,Average class size,20,2,20,,2016-17
Somerville,East Somerville Community School,02740111,3-A-i,a-reso-i1,Average class size,20,2,20,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-i,a-reso-i1,Average class size,20.2,1.96,20,,2016-17
Revere,Rumney Marsh Academy,02480014,3-A-i,a-reso-i1,Average class size,20.3,1.94,20,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-i,a-reso-i1,Average class size,20.5,1.9,20,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-i,a-reso-i1,Average class size,20.8,1.84,20,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,3-A-i,a-reso-i1,Average class size,21.7,1.66,20,,2016-17
Attleboro,Wamsutta Middle School,00160320,3-A-i,a-reso-i1,Average class size,21.8,1.64,20,,2016-17
Revere,Whelan Elementary School,02480003,3-A-i,a-reso-i1,Average class size,21.8,1.64,20,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,3-A-i,a-reso-i1,Average class size,22.4,1.52,20,,2016-17
Revere,Paul Revere Elementary School,02480050,3-A-i,a-reso-i1,Average class size,22.6,1.48,20,,2016-17
Revere,Susan B. Anthony Middle School,02480305,3-A-i,a-reso-i1,Average class size,22.9,1.42,20,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,3-A-i,a-reso-i1,Average class size,23.9,1.22,20,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,3-A-i,a-reso-i1,Average class size,24.3,1.14,20,,2016-17
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i2,Average daily attendance,73,3.244444444,90,,2016-17
Revere,Seacoast High School,02480520,2-C-i,a-vale-i2,Average daily attendance,75,3.333333333,90,,2016-17
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i2,Average daily attendance,88,3.911111111,90,,2016-17
Somerville,Somerville High School,02740505,2-C-i,a-vale-i2,Average daily attendance,93,4.133333333,90,,2016-17
Revere,Revere High School,02480505,2-C-i,a-vale-i2,Average daily attendance,94,4.177777778,90,,2016-17
Somerville,West Somerville Neighborhood School,02740115,2-C-i,a-vale-i2,Average daily attendance,94,4.177777778,90,,2016-17
Revere,Susan B. Anthony Middle School,02480305,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Revere,Whelan Elementary School,02480003,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Revere,Garfield Elementary School,02480056,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Revere,Lincoln Elementary School,02480025,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Somerville,Arthur D. Healey School,02740075,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Winchester,Winchester High School,03440505,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,2-C-i,a-vale-i2,Average daily attendance,95.6,4.248888889,90,,2016-17
Attleboro,Attleboro High School,00160505,2-C-i,a-vale-i2,Average daily attendance,95.8,4.257777778,90,,2016-17
Revere,Garfield Middle School,02480057,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Revere,Rumney Marsh Academy,02480014,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Revere,Beachmont Elementary School,02480013,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Revere,Hill Elementary School,02480035,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Revere,Paul Revere Elementary School,02480050,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Somerville,Benjamin G. Brown School,02740015,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Somerville,East Somerville Community School,02740111,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,,2016-17
Winchester,Lynch Elementary School,03440020,2-C-i,a-vale-i2,Average daily attendance,96.5,4.288888889,90,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,2-C-i,a-vale-i2,Average daily attendance,96.6,4.293333333,90,,2016-17
Winchester,Ambrose Elementary School,03440045,2-C-i,a-vale-i2,Average daily attendance,96.8,4.302222222,90,,2016-17
Winchester,Lincoln Elementary School,02480025,2-C-i,a-vale-i2,Average daily attendance,96.9,4.306666667,90,,2016-17
Winchester,Muraco Elementary School,03440040,2-C-i,a-vale-i2,Average daily attendance,96.9,4.306666667,90,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,2-C-i,a-vale-i2,Average daily attendance,97,4.311111111,90,,2016-17
Attleboro,Wamsutta Middle School,00160320,2-C-i,a-vale-i2,Average daily attendance,97.1,4.315555556,90,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,2-C-i,a-vale-i2,Average daily attendance,97.3,4.324444444,90,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,2-C-i,a-vale-i2,Average daily attendance,97.4,4.328888889,90,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,2-C-i,a-vale-i2,Average daily attendance,97.4,4.328888889,90,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,2-C-i,a-vale-i2,Average daily attendance,97.4,4.328888889,90,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,2-C-i,a-vale-i2,Average daily attendance,97.4,4.328888889,90,,2016-17
Winchester,McCall Middle School,03440305,2-C-i,a-vale-i2,Average daily attendance,97.9,4.351111111,90,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,2-C-i,a-vale-i1,Chronic absence rate,5.06,3.976,10,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,2-C-i,a-vale-i1,Chronic absence rate,5.07,3.972,10,,2016-17
Somerville,East Somerville Community School,02740111,2-C-i,a-vale-i1,Chronic absence rate,5.1,3.96,10,,2016-17
Attleboro,Wamsutta Middle School,00160320,2-C-i,a-vale-i1,Chronic absence rate,5.9,3.64,10,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,2-C-i,a-vale-i1,Chronic absence rate,6,3.6,10,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,2-C-i,a-vale-i1,Chronic absence rate,6.6,3.36,10,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,2-C-i,a-vale-i1,Chronic absence rate,6.9,3.24,10,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,2-C-i,a-vale-i1,Chronic absence rate,7.06,3.176,10,,2016-17
Somerville,Benjamin G. Brown School,02740015,2-C-i,a-vale-i1,Chronic absence rate,7.2,3.12,10,,2016-17
Winchester,Winchester High School,03440505,2-C-i,a-vale-i1,Chronic absence rate,8.4,2.64,10,,2016-17
Winchester,McCall Middle School,03440305,2-C-i,a-vale-i1,Chronic absence rate,8.8,2.48,10,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,2-C-i,a-vale-i1,Chronic absence rate,9.08,2.368,10,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,2-C-i,a-vale-i1,Chronic absence rate,9.2,2.32,10,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,2-C-i,a-vale-i1,Chronic absence rate,9.8,2.08,10,,2016-17
Attleboro,Attleboro High School,00160505,2-C-i,a-vale-i1,Chronic absence rate,10.02,1.992,10,,2016-17
Somerville,Arthur D. Healey School,02740075,2-C-i,a-vale-i1,Chronic absence rate,12.7,0.92,10,,2016-17
Revere,Revere High School,02480505,2-C-i,a-vale-i1,Chronic absence rate,13,0.8,10,,2016-17
Somerville,West Somerville Neighborhood School,02740115,2-C-i,a-vale-i1,Chronic absence rate,13.6,0.56,10,,2016-17
Winchester,Muraco Elementary School,03440040,2-C-i,a-vale-i1,Chronic absence rate,15.5,-0.2,10,,2016-17
Winchester,Lincoln Elementary School,02480025,2-C-i,a-vale-i1,Chronic absence rate,16.4,-0.56,10,,2016-17
Revere,Rumney Marsh Academy,02480014,2-C-i,a-vale-i1,Chronic absence rate,17,-0.8,10,,2016-17
Winchester,Ambrose Elementary School,03440045,2-C-i,a-vale-i1,Chronic absence rate,17.3,-0.92,10,,2016-17
Revere,Beachmont Elementary School,02480013,2-C-i,a-vale-i1,Chronic absence rate,18,-1.2,10,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,2-C-i,a-vale-i1,Chronic absence rate,18.1,-1.24,10,,2016-17
Revere,Garfield Middle School,02480057,2-C-i,a-vale-i1,Chronic absence rate,19,-1.6,10,,2016-17
Revere,Paul Revere Elementary School,02480050,2-C-i,a-vale-i1,Chronic absence rate,19,-1.6,10,,2016-17
Somerville,Somerville High School,02740505,2-C-i,a-vale-i1,Chronic absence rate,20.8,-2.32,10,,2016-17
Winchester,Lynch Elementary School,03440020,2-C-i,a-vale-i1,Chronic absence rate,21.8,-2.72,10,,2016-17
Revere,Garfield Elementary School,02480056,2-C-i,a-vale-i1,Chronic absence rate,23,-3.2,10,,2016-17
Revere,Hill Elementary School,02480035,2-C-i,a-vale-i1,Chronic absence rate,23,-3.2,10,,2016-17
Revere,Susan B. Anthony Middle School,02480305,2-C-i,a-vale-i1,Chronic absence rate,24,-3.6,10,,2016-17
Revere,Whelan Elementary School,02480003,2-C-i,a-vale-i1,Chronic absence rate,25,-4,10,,2016-17
Revere,Lincoln Elementary School,02480025,2-C-i,a-vale-i1,Chronic absence rate,27,-4.8,10,,2016-17
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i1,Chronic absence rate,50,-14,10,,2016-17
Revere,Seacoast High School,02480520,2-C-i,a-vale-i1,Chronic absence rate,68,-21.2,10,,2016-17
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i1,Chronic absence rate,77.9,-25.16,10,,2016-17
Revere,Seacoast High School,02480520,4-D-i,a-cgpr-i1,College enrollment rate (HS only),63,3.841463415,65.6,,2016-17
Attleboro,Attleboro High School,00160505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),69.5,4.237804878,65.6,,2016-17
Revere,Revere High School,02480505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),85,5.182926829,65.6,,2016-17
Winchester,Winchester High School,03440505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),92,5.609756098,65.6,,2016-17
Revere,Seacoast High School,02480520,5-D-ii,a-phya-i1,Medical staff to student ratio,326,4.261333333,750,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,5-D-ii,a-phya-i1,Medical staff to student ratio,368.57,4.034293333,750,,2016-17
Winchester,Muraco Elementary School,03440040,5-D-ii,a-phya-i1,Medical staff to student ratio,404,3.845333333,750,,2016-17
Winchester,Lincoln Elementary School,02480025,5-D-ii,a-phya-i1,Medical staff to student ratio,410,3.813333333,750,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,5-D-ii,a-phya-i1,Medical staff to student ratio,422,3.749333333,750,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,5-D-ii,a-phya-i1,Medical staff to student ratio,423.81,3.73968,750,,2016-17
Revere,Beachmont Elementary School,02480013,5-D-ii,a-phya-i1,Medical staff to student ratio,427,3.722666667,750,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,5-D-ii,a-phya-i1,Medical staff to student ratio,433.33,3.688906667,750,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,5-D-ii,a-phya-i1,Medical staff to student ratio,439.05,3.6584,750,,2016-17
Winchester,Ambrose Elementary School,03440045,5-D-ii,a-phya-i1,Medical staff to student ratio,440,3.653333333,750,,2016-17
Revere,Paul Revere Elementary School,02480050,5-D-ii,a-phya-i1,Medical staff to student ratio,442,3.642666667,750,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,5-D-ii,a-phya-i1,Medical staff to student ratio,446.67,3.61776,750,,2016-17
Revere,Garfield Middle School,02480057,5-D-ii,a-phya-i1,Medical staff to student ratio,500,3.333333333,750,,2016-17
Revere,Susan B. Anthony Middle School,02480305,5-D-ii,a-phya-i1,Medical staff to student ratio,519,3.232,750,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,5-D-ii,a-phya-i1,Medical staff to student ratio,531.43,3.165706667,750,,2016-17
Revere,Rumney Marsh Academy,02480014,5-D-ii,a-phya-i1,Medical staff to student ratio,538,3.130666667,750,,2016-17
Winchester,Lynch Elementary School,03440020,5-D-ii,a-phya-i1,Medical staff to student ratio,546,3.088,750,,2016-17
Attleboro,Wamsutta Middle School,00160320,5-D-ii,a-phya-i1,Medical staff to student ratio,549.52,3.069226667,750,,2016-17
Revere,Lincoln Elementary School,02480025,5-D-ii,a-phya-i1,Medical staff to student ratio,629,2.645333333,750,,2016-17
Revere,Hill Elementary School,02480035,5-D-ii,a-phya-i1,Medical staff to student ratio,636,2.608,750,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,5-D-ii,a-phya-i1,Medical staff to student ratio,640,2.586666667,750,,2016-17
Revere,Whelan Elementary School,02480003,5-D-ii,a-phya-i1,Medical staff to student ratio,689,2.325333333,750,,2016-17
Revere,Garfield Elementary School,02480056,5-D-ii,a-phya-i1,Medical staff to student ratio,770,1.893333333,750,,2016-17
Winchester,Winchester High School,03440505,5-D-ii,a-phya-i1,Medical staff to student ratio,792.5,1.773333333,750,,2016-17
Winchester,McCall Middle School,03440305,5-D-ii,a-phya-i1,Medical staff to student ratio,809.29,1.683786667,750,,2016-17
Revere,Revere High School,02480505,5-D-ii,a-phya-i1,Medical staff to student ratio,897,1.216,750,,2016-17
Attleboro,Attleboro High School,00160505,5-D-ii,a-phya-i1,Medical staff to student ratio,1560.95,-2.325066667,750,,2016-17
Attleboro,Attleboro High School,00160505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),61.9,12.38,20,,2016-17
Revere,Revere High School,02480505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),65,13,20,,2016-17
Winchester,Winchester High School,03440505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),92,18.4,20,,2016-17
Attleboro,Attleboro High School,00160505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),81.8,3.635555556,90,,2016-17
Revere,Seacoast High School,02480520,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),89,3.955555556,90,,2016-17
Winchester,Winchester High School,03440505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),90.6,4.026666667,90,,2016-17
Revere,Revere High School,02480505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),94,4.177777778,90,,2016-17
Attleboro,Attleboro High School,00160505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),31.5,4.2,30,,2016-17
Winchester,Winchester High School,03440505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),42,5.6,30,,2016-17
Revere,Revere High School,02480505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),50,6.666666667,30,,2016-17
Attleboro,Attleboro High School,00160505,4-D-ii,a-cppm-i1,Percent positive work placement (HS only),96.5,4.541176471,85,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),65.9,3.101176471,85,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),72.4,3.407058824,85,,2016-17
Revere,Seacoast High School,02480520,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),80,3.764705882,85,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),82.3,3.872941176,85,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),85.3,4.014117647,85,,2016-17
Revere,Garfield Middle School,02480057,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),86,4.047058824,85,,2016-17
Somerville,Somerville High School,02740505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),88.2,4.150588235,85,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),88.8,4.178823529,85,,2016-17
Revere,Rumney Marsh Academy,02480014,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),89,4.188235294,85,,2016-17
Somerville,West Somerville Neighborhood School,02740115,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),90.3,4.249411765,85,,2016-17
Somerville,Arthur D. Healey School,02740075,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),90.9,4.277647059,85,,2016-17
Revere,Garfield Elementary School,02480056,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),91,4.282352941,85,,2016-17
Winchester,McCall Middle School,03440305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),92,4.329411765,85,,2016-17
Somerville,Benjamin G. Brown School,02740015,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),93,4.376470588,85,,2016-17
Somerville,East Somerville Community School,02740111,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),93.6,4.404705882,85,,2016-17
Revere,Susan B. Anthony Middle School,02480305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),94,4.423529412,85,,2016-17
Revere,Hill Elementary School,02480035,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),94,4.423529412,85,,2016-17
Revere,Lincoln Elementary School,02480025,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),94,4.423529412,85,,2016-17
Revere,Revere High School,02480505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),95,4.470588235,85,,2016-17
Revere,Whelan Elementary School,02480003,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),95,4.470588235,85,,2016-17
Winchester,Winchester High School,03440505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,,2016-17
Winchester,Lincoln Elementary School,02480025,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,,2016-17
Winchester,Muraco Elementary School,03440040,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,,2016-17
Attleboro,Attleboro High School,00160505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Wamsutta Middle School,00160320,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Revere,Beachmont Elementary School,02480013,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,,2016-17
Winchester,Ambrose Elementary School,03440045,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),98,4.611764706,85,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),98,4.611764706,85,,2016-17
Winchester,Lynch Elementary School,03440020,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),99,4.658823529,85,,2016-17
Revere,Paul Revere Elementary School,02480050,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,,2016-17
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i2,Percentage teachers National Board certified,0.03,0.012,10,,2016-17
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i2,Percentage teachers National Board certified,2,0.8,10,,2016-17
Revere,Lincoln Elementary School,02480025,1-A-i,a-exp-i2,Percentage teachers National Board certified,2,0.8,10,,2016-17
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i2,Percentage teachers National Board certified,2.27,0.908,10,,2016-17
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i2,Percentage teachers National Board certified,2.3,0.92,10,,2016-17
Revere,Revere High School,02480505,1-A-i,a-exp-i2,Percentage teachers National Board certified,2.4,0.96,10,,2016-17
Revere,Seacoast High School,02480520,1-A-i,a-exp-i2,Percentage teachers National Board certified,10,4,10,,2016-17
Revere,Beachmont Elementary School,02480013,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,97,4.084210526,95,,2016-17
Revere,Revere High School,02480505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,98,4.126315789,95,,2016-17
Winchester,McCall Middle School,03440305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,99,4.168421053,95,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,99.95,4.208421053,95,,2016-17
Attleboro,Attleboro High School,00160505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Wamsutta Middle School,00160320,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Seacoast High School,02480520,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Rumney Marsh Academy,02480014,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Susan B. Anthony Middle School,02480305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Garfield Elementary School,02480056,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Lincoln Elementary School,02480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Somerville High School,02740505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Benjamin G. Brown School,02740015,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,East Somerville Community School,02740111,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,Arthur D. Healey School,02740075,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Somerville,West Somerville Neighborhood School,02740115,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Winchester High School,03440505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Ambrose Elementary School,03440045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Lincoln Elementary School,02480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Lynch Elementary School,03440020,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Muraco Elementary School,03440040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,,2016-17
Revere,Rumney Marsh Academy,02480014,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,46,2.3,80,,2016-17
Somerville,Arthur D. Healey School,02740075,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,46.2,2.31,80,,2016-17
Somerville,East Somerville Community School,02740111,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,50,2.5,80,,2016-17
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,51,2.55,80,,2016-17
Somerville,West Somerville Neighborhood School,02740115,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,51.5,2.575,80,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,53.3,2.665,80,,2016-17
Somerville,Somerville High School,02740505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,55.8,2.79,80,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,56.3,2.815,80,,2016-17
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,56.3,2.815,80,,2016-17
Somerville,Benjamin G. Brown School,02740015,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,57.1,2.855,80,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,58.3,2.915,80,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,60,3,80,,2016-17
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63,3.15,80,,2016-17
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63,3.15,80,,2016-17
Revere,Susan B. Anthony Middle School,02480305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,64,3.2,80,,2016-17
Revere,Revere High School,02480505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,66,3.3,80,,2016-17
Revere,Beachmont Elementary School,02480013,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,67,3.35,80,,2016-17
Revere,Lincoln Elementary School,02480025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,67,3.35,80,,2016-17
Attleboro,Attleboro High School,00160505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,,2016-17
Revere,Garfield Elementary School,02480056,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,78,3.9,80,,2016-17
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,80,4,80,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,82,4.1,80,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,83,4.15,80,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,83,4.15,80,,2016-17
Revere,Seacoast High School,02480520,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,85,4.25,80,,2016-17
Attleboro,Wamsutta Middle School,00160320,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,86,4.3,80,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,86,4.3,80,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,88,4.4,80,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,94,4.7,80,,2016-17
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i4,Student to art teacher ratio,50,5.6,500,,2016-17
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i4,Student to art teacher ratio,286,3.712,500,,2016-17
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i4,Student to art teacher ratio,300,3.6,500,,2016-17
Winchester,Winchester High School,03440505,3-A-ii,a-sust-i4,Student to art teacher ratio,317,3.464,500,,2016-17
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i4,Student to art teacher ratio,346,3.232,500,,2016-17
Winchester,McCall Middle School,03440305,3-A-ii,a-sust-i4,Student to art teacher ratio,377.67,2.97864,500,,2016-17
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i4,Student to art teacher ratio,384,2.928,500,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i4,Student to art teacher ratio,387,2.904,500,,2016-17
Winchester,Muraco Elementary School,03440040,3-A-ii,a-sust-i4,Student to art teacher ratio,404,2.768,500,,2016-17
Winchester,Lincoln Elementary School,02480025,3-A-ii,a-sust-i4,Student to art teacher ratio,410,2.72,500,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,3-A-ii,a-sust-i4,Student to art teacher ratio,416.08,2.67136,500,,2016-17
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i4,Student to art teacher ratio,418.89,2.64888,500,,2016-17
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i4,Student to art teacher ratio,421.51,2.62792,500,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,3-A-ii,a-sust-i4,Student to art teacher ratio,422,2.624,500,,2016-17
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i4,Student to art teacher ratio,424,2.608,500,,2016-17
Winchester,Ambrose Elementary School,03440045,3-A-ii,a-sust-i4,Student to art teacher ratio,440,2.48,500,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i4,Student to art teacher ratio,445,2.44,500,,2016-17
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i4,Student to art teacher ratio,445.83,2.43336,500,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i4,Student to art teacher ratio,455,2.36,500,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i4,Student to art teacher ratio,461,2.312,500,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i4,Student to art teacher ratio,469,2.248,500,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i4,Student to art teacher ratio,481.25,2.15,500,,2016-17
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i4,Student to art teacher ratio,485,2.12,500,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i4,Student to art teacher ratio,488.73,2.09016,500,,2016-17
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i4,Student to art teacher ratio,491.67,2.06664,500,,2016-17
Winchester,Lynch Elementary School,03440020,3-A-ii,a-sust-i4,Student to art teacher ratio,546,1.632,500,,2016-17
Revere,Garfield Middle School,02480057,3-A-ii,a-sust-i4,Student to art teacher ratio,550,1.6,500,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i4,Student to art teacher ratio,558,1.536,500,,2016-17
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i4,Student to art teacher ratio,577,1.384,500,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i4,Student to art teacher ratio,672,0.624,500,,2016-17
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i4,Student to art teacher ratio,700,0.4,500,,2016-17
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i4,Student to art teacher ratio,762,-0.096,500,,2016-17
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i4,Student to art teacher ratio,1639,-7.112,500,,2016-17
Winchester,Winchester High School,03440505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),0.064,5.995508772,57,,2016-17
Revere,Revere High School,02480505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),36.6,3.431578947,57,,2016-17
Attleboro,Attleboro High School,00160505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),62.04,1.646315789,57,,2016-17
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i1,Student to guidance counselor ratio,33,5.472,250,,2016-17
Winchester,Winchester High School,03440505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,140.89,3.74576,250,,2016-17
Winchester,McCall Middle School,03440305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,141.63,3.73392,250,,2016-17
Revere,Garfield Middle School,02480057,3-A-ii,a-sust-i1,Student to guidance counselor ratio,157,3.488,250,,2016-17
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i1,Student to guidance counselor ratio,160,3.44,250,,2016-17
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,190,2.96,250,,2016-17
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,192.82,2.91488,250,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,197.65,2.8376,250,,2016-17
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i1,Student to guidance counselor ratio,200,2.8,250,,2016-17
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i1,Student to guidance counselor ratio,203.33,2.74672,250,,2016-17
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i1,Student to guidance counselor ratio,203.81,2.73904,250,,2016-17
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i1,Student to guidance counselor ratio,214.55,2.5672,250,,2016-17
Somerville,Somerville High School,02740505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,228.91,2.33744,250,,2016-17
Revere,Revere High School,02480505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,234,2.256,250,,2016-17
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i1,Student to guidance counselor ratio,274.76,1.60384,250,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i1,Student to guidance counselor ratio,307.33,1.08272,250,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,322.5,0.84,250,,2016-17
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i1,Student to guidance counselor ratio,342.73,0.51632,250,,2016-17
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i1,Student to guidance counselor ratio,345.24,0.47616,250,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i1,Student to guidance counselor ratio,360.77,0.22768,250,,2016-17
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i1,Student to guidance counselor ratio,384,-0.144,250,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i1,Student to guidance counselor ratio,420,-0.72,250,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i1,Student to guidance counselor ratio,423.81,-0.78096,250,,2016-17
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i1,Student to guidance counselor ratio,424,-0.784,250,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,3-A-ii,a-sust-i1,Student to guidance counselor ratio,428.18,-0.85088,250,,2016-17
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,485,-1.76,250,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i1,Student to guidance counselor ratio,512.73,-2.20368,250,,2016-17
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i1,Student to guidance counselor ratio,692,-5.072,250,,2016-17
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,700,-5.2,250,,2016-17
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i1,Student to guidance counselor ratio,762,-6.192,250,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,910,-8.56,250,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i1,Student to guidance counselor ratio,1116,-11.856,250,,2016-17
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i3,Student to instructional support staff ratio,4.18,5.614746544,43.4,,2016-17
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i3,Student to instructional support staff ratio,19.3,4.221198157,43.4,,2016-17
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,20.92,4.071889401,43.4,,2016-17
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i3,Student to instructional support staff ratio,23,3.880184332,43.4,,2016-17
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,25,3.695852535,43.4,,2016-17
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i3,Student to instructional support staff ratio,33,2.958525346,43.4,,2016-17
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i3,Student to instructional support staff ratio,38,2.497695853,43.4,,2016-17
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i3,Student to instructional support staff ratio,39.56,2.353917051,43.4,,2016-17
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i3,Student to instructional support staff ratio,41,2.221198157,43.4,,2016-17
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i3,Student to instructional support staff ratio,42.38,2.094009217,43.4,,2016-17
Somerville,John F. Kennedy Elementary School,02740083,3-A-ii,a-sust-i3,Student to instructional support staff ratio,49.58,1.430414747,43.4,,2016-17
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,53,1.115207373,43.4,,2016-17
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i3,Student to instructional support staff ratio,56.34,0.8073732719,43.4,,2016-17
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,63,0.1935483871,43.4,,2016-17
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,64,0.1013824885,43.4,,2016-17
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i3,Student to instructional support staff ratio,65.32,-0.0202764977,43.4,,2016-17
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i3,Student to instructional support staff ratio,69.63,-0.4175115207,43.4,,2016-17
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i3,Student to instructional support staff ratio,71.13,-0.5557603687,43.4,,2016-17
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i3,Student to instructional support staff ratio,76.83,-1.081105991,43.4,,2016-17
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,101.11,-3.318894009,43.4,,2016-17
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i3,Student to instructional support staff ratio,124.21,-5.447926267,43.4,,2016-17
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,163.9,-9.105990783,43.4,,2016-17
Winchester,Lynch Elementary School,03440020,3-A-ii,a-sust-i3,Student to instructional support staff ratio,182,-10.77419355,43.4,,2016-17
Winchester,Muraco Elementary School,03440040,3-A-ii,a-sust-i3,Student to instructional support staff ratio,202,-12.61751152,43.4,,2016-17
Winchester,Lincoln Elementary School,02480025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,205,-12.89400922,43.4,,2016-17
Winchester,Vinson-Owen Elementary School,03440025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,211,-13.44700461,43.4,,2016-17
Winchester,Ambrose Elementary School,03440045,3-A-ii,a-sust-i3,Student to instructional support staff ratio,220,-14.2764977,43.4,,2016-17
Somerville,Somerville High School,02740505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,255.38,-17.53732719,43.4,,2016-17
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i3,Student to instructional support staff ratio,300,-21.64976959,43.4,,2016-17
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i3,Student to instructional support staff ratio,372,-28.28571429,43.4,,2016-17
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i3,Student to instructional support staff ratio,469,-37.22580645,43.4,,2016-17
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i3,Student to instructional support staff ratio,1154,-100.359447,43.4,,2016-17
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,1344,-117.8709677,43.4,,2016-17
Revere,Revere High School,02480505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,1870,-166.3502304,43.4,,2016-17
1 District School DESE ID Category Item ID NonLikert Title NL_Value LikertScore Benchmark Data Type Academic Year
2 Revere Seacoast High School 02480520 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 31.6 1.58 80 2016-17
3 Somerville Somerville High School 02740505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 85 4.25 80 2016-17
4 Attleboro Attleboro High School 00160505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 91 4.55 80 2016-17
5 Revere Revere High School 02480505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 93.6 4.68 80 2016-17
6 Winchester Winchester High School 03440505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 98 4.9 80 2016-17
7 Revere Seacoast High School 02480520 4-B-ii a-degr-i3 5-year graduation rate (HS only) 42.3 1.990588235 85 2016-17
8 Somerville Somerville High School 02740505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 87.5 4.117647059 85 2016-17
9 Attleboro Attleboro High School 00160505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 88.1 4.145882353 85 2016-17
10 Revere Revere High School 02480505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 96.5 4.541176471 85 2016-17
11 Winchester Winchester High School 03440505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 99 4.658823529 85 2016-17
12 Revere Seacoast High School 02480520 3-A-i a-reso-i1 Average class size 5.6 4.88 20 2016-17
13 Somerville Somerville High School 02740505 3-A-i a-reso-i1 Average class size 14 3.2 20 2016-17
14 Revere Revere High School 02480505 3-A-i a-reso-i1 Average class size 15.7 2.86 20 2016-17
15 Somerville Arthur D. Healey School 02740075 3-A-i a-reso-i1 Average class size 16.1 2.78 20 2016-17
16 Attleboro Peter Thacher Elementary School 00160050 3-A-i a-reso-i1 Average class size 16.5 2.7 20 2016-17
17 Revere Lincoln Elementary School 02480025 3-A-i a-reso-i1 Average class size 17.3 2.54 20 2016-17
18 Somerville Winter Hill Community Innovation School 02740120 3-A-i a-reso-i1 Average class size 17.8 2.44 20 2016-17
19 Winchester Winchester High School 03440505 3-A-i a-reso-i1 Average class size 18 2.4 20 2016-17
20 Winchester McCall Middle School 03440305 3-A-i a-reso-i1 Average class size 18 2.4 20 2016-17
21 Winchester Ambrose Elementary School 03440045 3-A-i a-reso-i1 Average class size 18 2.4 20 2016-17
22 Winchester Lincoln Elementary School 02480025 3-A-i a-reso-i1 Average class size 18 2.4 20 2016-17
23 Winchester Muraco Elementary School 03440040 3-A-i a-reso-i1 Average class size 18 2.4 20 2016-17
24 Attleboro Attleboro High School 00160505 3-A-i a-reso-i1 Average class size 18.1 2.38 20 2016-17
25 Somerville John F. Kennedy Elementary School 02740083 3-A-i a-reso-i1 Average class size 18.2 2.36 20 2016-17
26 Somerville Benjamin G. Brown School 02740015 3-A-i a-reso-i1 Average class size 18.5 2.3 20 2016-17
27 Revere Beachmont Elementary School 02480013 3-A-i a-reso-i1 Average class size 18.7 2.26 20 2016-17
28 Winchester Lynch Elementary School 03440020 3-A-i a-reso-i1 Average class size 19 2.2 20 2016-17
29 Winchester Vinson-Owen Elementary School 03440025 3-A-i a-reso-i1 Average class size 19 2.2 20 2016-17
30 Revere Hill Elementary School 02480035 3-A-i a-reso-i1 Average class size 19.4 2.12 20 2016-17
31 Revere Garfield Middle School 02480057 3-A-i a-reso-i1 Average class size 19.5 2.1 20 2016-17
32 Somerville West Somerville Neighborhood School 02740115 3-A-i a-reso-i1 Average class size 19.9 2.02 20 2016-17
33 Revere Garfield Elementary School 02480056 3-A-i a-reso-i1 Average class size 20 2 20 2016-17
34 Somerville East Somerville Community School 02740111 3-A-i a-reso-i1 Average class size 20 2 20 2016-17
35 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-i a-reso-i1 Average class size 20.2 1.96 20 2016-17
36 Revere Rumney Marsh Academy 02480014 3-A-i a-reso-i1 Average class size 20.3 1.94 20 2016-17
37 Attleboro A. Irvin Studley Elementary School 00160001 3-A-i a-reso-i1 Average class size 20.5 1.9 20 2016-17
38 Attleboro Cyril K. Brennan Middle School 00160315 3-A-i a-reso-i1 Average class size 20.8 1.84 20 2016-17
39 Attleboro Thomas Willett Elementary School 00160035 3-A-i a-reso-i1 Average class size 21.7 1.66 20 2016-17
40 Attleboro Wamsutta Middle School 00160320 3-A-i a-reso-i1 Average class size 21.8 1.64 20 2016-17
41 Revere Whelan Elementary School 02480003 3-A-i a-reso-i1 Average class size 21.8 1.64 20 2016-17
42 Attleboro Hyman Fine Elementary School 00160040 3-A-i a-reso-i1 Average class size 22.4 1.52 20 2016-17
43 Revere Paul Revere Elementary School 02480050 3-A-i a-reso-i1 Average class size 22.6 1.48 20 2016-17
44 Revere Susan B. Anthony Middle School 02480305 3-A-i a-reso-i1 Average class size 22.9 1.42 20 2016-17
45 Attleboro Hill-Roberts Elementary School 00160045 3-A-i a-reso-i1 Average class size 23.9 1.22 20 2016-17
46 Attleboro Robert J. Coelho Middle School 00160305 3-A-i a-reso-i1 Average class size 24.3 1.14 20 2016-17
47 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i2 Average daily attendance 73 3.244444444 90 2016-17
48 Revere Seacoast High School 02480520 2-C-i a-vale-i2 Average daily attendance 75 3.333333333 90 2016-17
49 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i2 Average daily attendance 88 3.911111111 90 2016-17
50 Somerville Somerville High School 02740505 2-C-i a-vale-i2 Average daily attendance 93 4.133333333 90 2016-17
51 Revere Revere High School 02480505 2-C-i a-vale-i2 Average daily attendance 94 4.177777778 90 2016-17
52 Somerville West Somerville Neighborhood School 02740115 2-C-i a-vale-i2 Average daily attendance 94 4.177777778 90 2016-17
53 Revere Susan B. Anthony Middle School 02480305 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
54 Revere Whelan Elementary School 02480003 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
55 Revere Garfield Elementary School 02480056 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
56 Revere Lincoln Elementary School 02480025 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
57 Somerville Arthur D. Healey School 02740075 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
58 Somerville John F. Kennedy Elementary School 02740083 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
59 Somerville Winter Hill Community Innovation School 02740120 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
60 Winchester Winchester High School 03440505 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 2016-17
61 Attleboro Cyril K. Brennan Middle School 00160315 2-C-i a-vale-i2 Average daily attendance 95.6 4.248888889 90 2016-17
62 Attleboro Attleboro High School 00160505 2-C-i a-vale-i2 Average daily attendance 95.8 4.257777778 90 2016-17
63 Revere Garfield Middle School 02480057 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
64 Revere Rumney Marsh Academy 02480014 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
65 Revere Beachmont Elementary School 02480013 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
66 Revere Hill Elementary School 02480035 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
67 Revere Paul Revere Elementary School 02480050 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
68 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
69 Somerville Benjamin G. Brown School 02740015 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
70 Somerville East Somerville Community School 02740111 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 2016-17
71 Winchester Lynch Elementary School 03440020 2-C-i a-vale-i2 Average daily attendance 96.5 4.288888889 90 2016-17
72 Winchester Vinson-Owen Elementary School 03440025 2-C-i a-vale-i2 Average daily attendance 96.6 4.293333333 90 2016-17
73 Winchester Ambrose Elementary School 03440045 2-C-i a-vale-i2 Average daily attendance 96.8 4.302222222 90 2016-17
74 Winchester Lincoln Elementary School 02480025 2-C-i a-vale-i2 Average daily attendance 96.9 4.306666667 90 2016-17
75 Winchester Muraco Elementary School 03440040 2-C-i a-vale-i2 Average daily attendance 96.9 4.306666667 90 2016-17
76 Attleboro Hill-Roberts Elementary School 00160045 2-C-i a-vale-i2 Average daily attendance 97 4.311111111 90 2016-17
77 Attleboro Wamsutta Middle School 00160320 2-C-i a-vale-i2 Average daily attendance 97.1 4.315555556 90 2016-17
78 Attleboro Thomas Willett Elementary School 00160035 2-C-i a-vale-i2 Average daily attendance 97.3 4.324444444 90 2016-17
79 Attleboro Robert J. Coelho Middle School 00160305 2-C-i a-vale-i2 Average daily attendance 97.4 4.328888889 90 2016-17
80 Attleboro Hyman Fine Elementary School 00160040 2-C-i a-vale-i2 Average daily attendance 97.4 4.328888889 90 2016-17
81 Attleboro A. Irvin Studley Elementary School 00160001 2-C-i a-vale-i2 Average daily attendance 97.4 4.328888889 90 2016-17
82 Attleboro Peter Thacher Elementary School 00160050 2-C-i a-vale-i2 Average daily attendance 97.4 4.328888889 90 2016-17
83 Winchester McCall Middle School 03440305 2-C-i a-vale-i2 Average daily attendance 97.9 4.351111111 90 2016-17
84 Attleboro Hyman Fine Elementary School 00160040 2-C-i a-vale-i1 Chronic absence rate 5.06 3.976 10 2016-17
85 Attleboro A. Irvin Studley Elementary School 00160001 2-C-i a-vale-i1 Chronic absence rate 5.07 3.972 10 2016-17
86 Somerville East Somerville Community School 02740111 2-C-i a-vale-i1 Chronic absence rate 5.1 3.96 10 2016-17
87 Attleboro Wamsutta Middle School 00160320 2-C-i a-vale-i1 Chronic absence rate 5.9 3.64 10 2016-17
88 Attleboro Robert J. Coelho Middle School 00160305 2-C-i a-vale-i1 Chronic absence rate 6 3.6 10 2016-17
89 Attleboro Peter Thacher Elementary School 00160050 2-C-i a-vale-i1 Chronic absence rate 6.6 3.36 10 2016-17
90 Somerville John F. Kennedy Elementary School 02740083 2-C-i a-vale-i1 Chronic absence rate 6.9 3.24 10 2016-17
91 Attleboro Thomas Willett Elementary School 00160035 2-C-i a-vale-i1 Chronic absence rate 7.06 3.176 10 2016-17
92 Somerville Benjamin G. Brown School 02740015 2-C-i a-vale-i1 Chronic absence rate 7.2 3.12 10 2016-17
93 Winchester Winchester High School 03440505 2-C-i a-vale-i1 Chronic absence rate 8.4 2.64 10 2016-17
94 Winchester McCall Middle School 03440305 2-C-i a-vale-i1 Chronic absence rate 8.8 2.48 10 2016-17
95 Attleboro Cyril K. Brennan Middle School 00160315 2-C-i a-vale-i1 Chronic absence rate 9.08 2.368 10 2016-17
96 Attleboro Hill-Roberts Elementary School 00160045 2-C-i a-vale-i1 Chronic absence rate 9.2 2.32 10 2016-17
97 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 2-C-i a-vale-i1 Chronic absence rate 9.8 2.08 10 2016-17
98 Attleboro Attleboro High School 00160505 2-C-i a-vale-i1 Chronic absence rate 10.02 1.992 10 2016-17
99 Somerville Arthur D. Healey School 02740075 2-C-i a-vale-i1 Chronic absence rate 12.7 0.92 10 2016-17
100 Revere Revere High School 02480505 2-C-i a-vale-i1 Chronic absence rate 13 0.8 10 2016-17
101 Somerville West Somerville Neighborhood School 02740115 2-C-i a-vale-i1 Chronic absence rate 13.6 0.56 10 2016-17
102 Winchester Muraco Elementary School 03440040 2-C-i a-vale-i1 Chronic absence rate 15.5 -0.2 10 2016-17
103 Winchester Lincoln Elementary School 02480025 2-C-i a-vale-i1 Chronic absence rate 16.4 -0.56 10 2016-17
104 Revere Rumney Marsh Academy 02480014 2-C-i a-vale-i1 Chronic absence rate 17 -0.8 10 2016-17
105 Winchester Ambrose Elementary School 03440045 2-C-i a-vale-i1 Chronic absence rate 17.3 -0.92 10 2016-17
106 Revere Beachmont Elementary School 02480013 2-C-i a-vale-i1 Chronic absence rate 18 -1.2 10 2016-17
107 Winchester Vinson-Owen Elementary School 03440025 2-C-i a-vale-i1 Chronic absence rate 18.1 -1.24 10 2016-17
108 Revere Garfield Middle School 02480057 2-C-i a-vale-i1 Chronic absence rate 19 -1.6 10 2016-17
109 Revere Paul Revere Elementary School 02480050 2-C-i a-vale-i1 Chronic absence rate 19 -1.6 10 2016-17
110 Somerville Somerville High School 02740505 2-C-i a-vale-i1 Chronic absence rate 20.8 -2.32 10 2016-17
111 Winchester Lynch Elementary School 03440020 2-C-i a-vale-i1 Chronic absence rate 21.8 -2.72 10 2016-17
112 Revere Garfield Elementary School 02480056 2-C-i a-vale-i1 Chronic absence rate 23 -3.2 10 2016-17
113 Revere Hill Elementary School 02480035 2-C-i a-vale-i1 Chronic absence rate 23 -3.2 10 2016-17
114 Revere Susan B. Anthony Middle School 02480305 2-C-i a-vale-i1 Chronic absence rate 24 -3.6 10 2016-17
115 Revere Whelan Elementary School 02480003 2-C-i a-vale-i1 Chronic absence rate 25 -4 10 2016-17
116 Revere Lincoln Elementary School 02480025 2-C-i a-vale-i1 Chronic absence rate 27 -4.8 10 2016-17
117 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i1 Chronic absence rate 50 -14 10 2016-17
118 Revere Seacoast High School 02480520 2-C-i a-vale-i1 Chronic absence rate 68 -21.2 10 2016-17
119 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i1 Chronic absence rate 77.9 -25.16 10 2016-17
120 Revere Seacoast High School 02480520 4-D-i a-cgpr-i1 College enrollment rate (HS only) 63 3.841463415 65.6 2016-17
121 Attleboro Attleboro High School 00160505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 69.5 4.237804878 65.6 2016-17
122 Revere Revere High School 02480505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 85 5.182926829 65.6 2016-17
123 Winchester Winchester High School 03440505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 92 5.609756098 65.6 2016-17
124 Revere Seacoast High School 02480520 5-D-ii a-phya-i1 Medical staff to student ratio 326 4.261333333 750 2016-17
125 Attleboro Peter Thacher Elementary School 00160050 5-D-ii a-phya-i1 Medical staff to student ratio 368.57 4.034293333 750 2016-17
126 Winchester Muraco Elementary School 03440040 5-D-ii a-phya-i1 Medical staff to student ratio 404 3.845333333 750 2016-17
127 Winchester Lincoln Elementary School 02480025 5-D-ii a-phya-i1 Medical staff to student ratio 410 3.813333333 750 2016-17
128 Winchester Vinson-Owen Elementary School 03440025 5-D-ii a-phya-i1 Medical staff to student ratio 422 3.749333333 750 2016-17
129 Attleboro A. Irvin Studley Elementary School 00160001 5-D-ii a-phya-i1 Medical staff to student ratio 423.81 3.73968 750 2016-17
130 Revere Beachmont Elementary School 02480013 5-D-ii a-phya-i1 Medical staff to student ratio 427 3.722666667 750 2016-17
131 Attleboro Thomas Willett Elementary School 00160035 5-D-ii a-phya-i1 Medical staff to student ratio 433.33 3.688906667 750 2016-17
132 Attleboro Hyman Fine Elementary School 00160040 5-D-ii a-phya-i1 Medical staff to student ratio 439.05 3.6584 750 2016-17
133 Winchester Ambrose Elementary School 03440045 5-D-ii a-phya-i1 Medical staff to student ratio 440 3.653333333 750 2016-17
134 Revere Paul Revere Elementary School 02480050 5-D-ii a-phya-i1 Medical staff to student ratio 442 3.642666667 750 2016-17
135 Attleboro Hill-Roberts Elementary School 00160045 5-D-ii a-phya-i1 Medical staff to student ratio 446.67 3.61776 750 2016-17
136 Revere Garfield Middle School 02480057 5-D-ii a-phya-i1 Medical staff to student ratio 500 3.333333333 750 2016-17
137 Revere Susan B. Anthony Middle School 02480305 5-D-ii a-phya-i1 Medical staff to student ratio 519 3.232 750 2016-17
138 Attleboro Cyril K. Brennan Middle School 00160315 5-D-ii a-phya-i1 Medical staff to student ratio 531.43 3.165706667 750 2016-17
139 Revere Rumney Marsh Academy 02480014 5-D-ii a-phya-i1 Medical staff to student ratio 538 3.130666667 750 2016-17
140 Winchester Lynch Elementary School 03440020 5-D-ii a-phya-i1 Medical staff to student ratio 546 3.088 750 2016-17
141 Attleboro Wamsutta Middle School 00160320 5-D-ii a-phya-i1 Medical staff to student ratio 549.52 3.069226667 750 2016-17
142 Revere Lincoln Elementary School 02480025 5-D-ii a-phya-i1 Medical staff to student ratio 629 2.645333333 750 2016-17
143 Revere Hill Elementary School 02480035 5-D-ii a-phya-i1 Medical staff to student ratio 636 2.608 750 2016-17
144 Attleboro Robert J. Coelho Middle School 00160305 5-D-ii a-phya-i1 Medical staff to student ratio 640 2.586666667 750 2016-17
145 Revere Whelan Elementary School 02480003 5-D-ii a-phya-i1 Medical staff to student ratio 689 2.325333333 750 2016-17
146 Revere Garfield Elementary School 02480056 5-D-ii a-phya-i1 Medical staff to student ratio 770 1.893333333 750 2016-17
147 Winchester Winchester High School 03440505 5-D-ii a-phya-i1 Medical staff to student ratio 792.5 1.773333333 750 2016-17
148 Winchester McCall Middle School 03440305 5-D-ii a-phya-i1 Medical staff to student ratio 809.29 1.683786667 750 2016-17
149 Revere Revere High School 02480505 5-D-ii a-phya-i1 Medical staff to student ratio 897 1.216 750 2016-17
150 Attleboro Attleboro High School 00160505 5-D-ii a-phya-i1 Medical staff to student ratio 1560.95 -2.325066667 750 2016-17
151 Attleboro Attleboro High School 00160505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 61.9 12.38 20 2016-17
152 Revere Revere High School 02480505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 65 13 20 2016-17
153 Winchester Winchester High School 03440505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 92 18.4 20 2016-17
154 Attleboro Attleboro High School 00160505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 81.8 3.635555556 90 2016-17
155 Revere Seacoast High School 02480520 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 89 3.955555556 90 2016-17
156 Winchester Winchester High School 03440505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 90.6 4.026666667 90 2016-17
157 Revere Revere High School 02480505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 94 4.177777778 90 2016-17
158 Attleboro Attleboro High School 00160505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 31.5 4.2 30 2016-17
159 Winchester Winchester High School 03440505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 42 5.6 30 2016-17
160 Revere Revere High School 02480505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 50 6.666666667 30 2016-17
161 Attleboro Attleboro High School 00160505 4-D-ii a-cppm-i1 Percent positive work placement (HS only) 96.5 4.541176471 85 2016-17
162 Somerville Next Wave/Full Circle 02740510 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 65.9 3.101176471 85 2016-17
163 Somerville Next Wave/Full Circle 02740510 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 72.4 3.407058824 85 2016-17
164 Revere Seacoast High School 02480520 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 80 3.764705882 85 2016-17
165 Somerville Winter Hill Community Innovation School 02740120 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 82.3 3.872941176 85 2016-17
166 Somerville John F. Kennedy Elementary School 02740083 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 85.3 4.014117647 85 2016-17
167 Revere Garfield Middle School 02480057 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 86 4.047058824 85 2016-17
168 Somerville Somerville High School 02740505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 88.2 4.150588235 85 2016-17
169 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 88.8 4.178823529 85 2016-17
170 Revere Rumney Marsh Academy 02480014 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 89 4.188235294 85 2016-17
171 Somerville West Somerville Neighborhood School 02740115 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 90.3 4.249411765 85 2016-17
172 Somerville Arthur D. Healey School 02740075 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 90.9 4.277647059 85 2016-17
173 Revere Garfield Elementary School 02480056 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 91 4.282352941 85 2016-17
174 Winchester McCall Middle School 03440305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 92 4.329411765 85 2016-17
175 Somerville Benjamin G. Brown School 02740015 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 93 4.376470588 85 2016-17
176 Somerville East Somerville Community School 02740111 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 93.6 4.404705882 85 2016-17
177 Revere Susan B. Anthony Middle School 02480305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 94 4.423529412 85 2016-17
178 Revere Hill Elementary School 02480035 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 94 4.423529412 85 2016-17
179 Revere Lincoln Elementary School 02480025 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 94 4.423529412 85 2016-17
180 Revere Revere High School 02480505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 95 4.470588235 85 2016-17
181 Revere Whelan Elementary School 02480003 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 95 4.470588235 85 2016-17
182 Winchester Winchester High School 03440505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 2016-17
183 Winchester Lincoln Elementary School 02480025 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 2016-17
184 Winchester Muraco Elementary School 03440040 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 2016-17
185 Attleboro Attleboro High School 00160505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
186 Attleboro Cyril K. Brennan Middle School 00160315 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
187 Attleboro Robert J. Coelho Middle School 00160305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
188 Attleboro Wamsutta Middle School 00160320 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
189 Attleboro Hill-Roberts Elementary School 00160045 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
190 Attleboro Hyman Fine Elementary School 00160040 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
191 Attleboro A. Irvin Studley Elementary School 00160001 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
192 Attleboro Peter Thacher Elementary School 00160050 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
193 Attleboro Thomas Willett Elementary School 00160035 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
194 Revere Beachmont Elementary School 02480013 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 2016-17
195 Winchester Ambrose Elementary School 03440045 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 98 4.611764706 85 2016-17
196 Winchester Vinson-Owen Elementary School 03440025 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 98 4.611764706 85 2016-17
197 Winchester Lynch Elementary School 03440020 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 99 4.658823529 85 2016-17
198 Revere Paul Revere Elementary School 02480050 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 2016-17
199 Revere Whelan Elementary School 02480003 1-A-i a-exp-i2 Percentage teachers National Board certified 0.03 0.012 10 2016-17
200 Revere Hill Elementary School 02480035 1-A-i a-exp-i2 Percentage teachers National Board certified 2 0.8 10 2016-17
201 Revere Lincoln Elementary School 02480025 1-A-i a-exp-i2 Percentage teachers National Board certified 2 0.8 10 2016-17
202 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i2 Percentage teachers National Board certified 2.27 0.908 10 2016-17
203 Revere Garfield Middle School 02480057 1-A-i a-exp-i2 Percentage teachers National Board certified 2.3 0.92 10 2016-17
204 Revere Revere High School 02480505 1-A-i a-exp-i2 Percentage teachers National Board certified 2.4 0.96 10 2016-17
205 Revere Seacoast High School 02480520 1-A-i a-exp-i2 Percentage teachers National Board certified 10 4 10 2016-17
206 Revere Beachmont Elementary School 02480013 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 97 4.084210526 95 2016-17
207 Revere Revere High School 02480505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 98 4.126315789 95 2016-17
208 Winchester McCall Middle School 03440305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 99 4.168421053 95 2016-17
209 Somerville Winter Hill Community Innovation School 02740120 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 99.95 4.208421053 95 2016-17
210 Attleboro Attleboro High School 00160505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
211 Attleboro Cyril K. Brennan Middle School 00160315 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
212 Attleboro Robert J. Coelho Middle School 00160305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
213 Attleboro Wamsutta Middle School 00160320 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
214 Attleboro Hill-Roberts Elementary School 00160045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
215 Attleboro Hyman Fine Elementary School 00160040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
216 Attleboro A. Irvin Studley Elementary School 00160001 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
217 Attleboro Peter Thacher Elementary School 00160050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
218 Attleboro Thomas Willett Elementary School 00160035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
219 Revere Seacoast High School 02480520 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
220 Revere Garfield Middle School 02480057 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
221 Revere Rumney Marsh Academy 02480014 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
222 Revere Susan B. Anthony Middle School 02480305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
223 Revere Whelan Elementary School 02480003 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
224 Revere Garfield Elementary School 02480056 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
225 Revere Hill Elementary School 02480035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
226 Revere Lincoln Elementary School 02480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
227 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
228 Somerville Somerville High School 02740505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
229 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
230 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
231 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
232 Somerville Benjamin G. Brown School 02740015 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
233 Somerville East Somerville Community School 02740111 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
234 Somerville Arthur D. Healey School 02740075 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
235 Somerville John F. Kennedy Elementary School 02740083 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
236 Somerville West Somerville Neighborhood School 02740115 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
237 Winchester Winchester High School 03440505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
238 Winchester Ambrose Elementary School 03440045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
239 Winchester Lincoln Elementary School 02480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
240 Winchester Lynch Elementary School 03440020 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
241 Winchester Muraco Elementary School 03440040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
242 Winchester Vinson-Owen Elementary School 03440025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 2016-17
243 Revere Rumney Marsh Academy 02480014 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 46 2.3 80 2016-17
244 Somerville Arthur D. Healey School 02740075 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 46.2 2.31 80 2016-17
245 Somerville East Somerville Community School 02740111 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 50 2.5 80 2016-17
246 Revere Garfield Middle School 02480057 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 51 2.55 80 2016-17
247 Somerville West Somerville Neighborhood School 02740115 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 51.5 2.575 80 2016-17
248 Somerville John F. Kennedy Elementary School 02740083 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 53.3 2.665 80 2016-17
249 Somerville Somerville High School 02740505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 55.8 2.79 80 2016-17
250 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 56.3 2.815 80 2016-17
251 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 56.3 2.815 80 2016-17
252 Somerville Benjamin G. Brown School 02740015 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 57.1 2.855 80 2016-17
253 Somerville Winter Hill Community Innovation School 02740120 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 58.3 2.915 80 2016-17
254 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 60 3 80 2016-17
255 Revere Hill Elementary School 02480035 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63 3.15 80 2016-17
256 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63 3.15 80 2016-17
257 Revere Susan B. Anthony Middle School 02480305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 64 3.2 80 2016-17
258 Revere Revere High School 02480505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 66 3.3 80 2016-17
259 Revere Beachmont Elementary School 02480013 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 67 3.35 80 2016-17
260 Revere Lincoln Elementary School 02480025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 67 3.35 80 2016-17
261 Attleboro Attleboro High School 00160505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 2016-17
262 Attleboro Hill-Roberts Elementary School 00160045 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 2016-17
263 Revere Garfield Elementary School 02480056 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 2016-17
264 Winchester Vinson-Owen Elementary School 03440025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 78 3.9 80 2016-17
265 Revere Whelan Elementary School 02480003 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 80 4 80 2016-17
266 Attleboro Hyman Fine Elementary School 00160040 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 82 4.1 80 2016-17
267 Attleboro Cyril K. Brennan Middle School 00160315 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 83 4.15 80 2016-17
268 Attleboro Robert J. Coelho Middle School 00160305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 83 4.15 80 2016-17
269 Revere Seacoast High School 02480520 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 85 4.25 80 2016-17
270 Attleboro Wamsutta Middle School 00160320 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 86 4.3 80 2016-17
271 Attleboro Thomas Willett Elementary School 00160035 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 86 4.3 80 2016-17
272 Attleboro A. Irvin Studley Elementary School 00160001 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 88 4.4 80 2016-17
273 Attleboro Peter Thacher Elementary School 00160050 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 94 4.7 80 2016-17
274 Revere Seacoast High School 02480520 3-A-ii a-sust-i4 Student to art teacher ratio 50 5.6 500 2016-17
275 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i4 Student to art teacher ratio 286 3.712 500 2016-17
276 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i4 Student to art teacher ratio 300 3.6 500 2016-17
277 Winchester Winchester High School 03440505 3-A-ii a-sust-i4 Student to art teacher ratio 317 3.464 500 2016-17
278 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i4 Student to art teacher ratio 346 3.232 500 2016-17
279 Winchester McCall Middle School 03440305 3-A-ii a-sust-i4 Student to art teacher ratio 377.67 2.97864 500 2016-17
280 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i4 Student to art teacher ratio 384 2.928 500 2016-17
281 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i4 Student to art teacher ratio 387 2.904 500 2016-17
282 Winchester Muraco Elementary School 03440040 3-A-ii a-sust-i4 Student to art teacher ratio 404 2.768 500 2016-17
283 Winchester Lincoln Elementary School 02480025 3-A-ii a-sust-i4 Student to art teacher ratio 410 2.72 500 2016-17
284 Somerville John F. Kennedy Elementary School 02740083 3-A-ii a-sust-i4 Student to art teacher ratio 416.08 2.67136 500 2016-17
285 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i4 Student to art teacher ratio 418.89 2.64888 500 2016-17
286 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i4 Student to art teacher ratio 421.51 2.62792 500 2016-17
287 Winchester Vinson-Owen Elementary School 03440025 3-A-ii a-sust-i4 Student to art teacher ratio 422 2.624 500 2016-17
288 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i4 Student to art teacher ratio 424 2.608 500 2016-17
289 Winchester Ambrose Elementary School 03440045 3-A-ii a-sust-i4 Student to art teacher ratio 440 2.48 500 2016-17
290 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i4 Student to art teacher ratio 445 2.44 500 2016-17
291 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i4 Student to art teacher ratio 445.83 2.43336 500 2016-17
292 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i4 Student to art teacher ratio 455 2.36 500 2016-17
293 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i4 Student to art teacher ratio 461 2.312 500 2016-17
294 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i4 Student to art teacher ratio 469 2.248 500 2016-17
295 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i4 Student to art teacher ratio 481.25 2.15 500 2016-17
296 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i4 Student to art teacher ratio 485 2.12 500 2016-17
297 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i4 Student to art teacher ratio 488.73 2.09016 500 2016-17
298 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i4 Student to art teacher ratio 491.67 2.06664 500 2016-17
299 Winchester Lynch Elementary School 03440020 3-A-ii a-sust-i4 Student to art teacher ratio 546 1.632 500 2016-17
300 Revere Garfield Middle School 02480057 3-A-ii a-sust-i4 Student to art teacher ratio 550 1.6 500 2016-17
301 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i4 Student to art teacher ratio 558 1.536 500 2016-17
302 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i4 Student to art teacher ratio 577 1.384 500 2016-17
303 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i4 Student to art teacher ratio 672 0.624 500 2016-17
304 Revere Hill Elementary School 02480035 3-A-ii a-sust-i4 Student to art teacher ratio 700 0.4 500 2016-17
305 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i4 Student to art teacher ratio 762 -0.096 500 2016-17
306 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i4 Student to art teacher ratio 1639 -7.112 500 2016-17
307 Winchester Winchester High School 03440505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 0.064 5.995508772 57 2016-17
308 Revere Revere High School 02480505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 36.6 3.431578947 57 2016-17
309 Attleboro Attleboro High School 00160505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 62.04 1.646315789 57 2016-17
310 Revere Seacoast High School 02480520 3-A-ii a-sust-i1 Student to guidance counselor ratio 33 5.472 250 2016-17
311 Winchester Winchester High School 03440505 3-A-ii a-sust-i1 Student to guidance counselor ratio 140.89 3.74576 250 2016-17
312 Winchester McCall Middle School 03440305 3-A-ii a-sust-i1 Student to guidance counselor ratio 141.63 3.73392 250 2016-17
313 Revere Garfield Middle School 02480057 3-A-ii a-sust-i1 Student to guidance counselor ratio 157 3.488 250 2016-17
314 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i1 Student to guidance counselor ratio 160 3.44 250 2016-17
315 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i1 Student to guidance counselor ratio 190 2.96 250 2016-17
316 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i1 Student to guidance counselor ratio 192.82 2.91488 250 2016-17
317 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i1 Student to guidance counselor ratio 197.65 2.8376 250 2016-17
318 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i1 Student to guidance counselor ratio 200 2.8 250 2016-17
319 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i1 Student to guidance counselor ratio 203.33 2.74672 250 2016-17
320 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i1 Student to guidance counselor ratio 203.81 2.73904 250 2016-17
321 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i1 Student to guidance counselor ratio 214.55 2.5672 250 2016-17
322 Somerville Somerville High School 02740505 3-A-ii a-sust-i1 Student to guidance counselor ratio 228.91 2.33744 250 2016-17
323 Revere Revere High School 02480505 3-A-ii a-sust-i1 Student to guidance counselor ratio 234 2.256 250 2016-17
324 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i1 Student to guidance counselor ratio 274.76 1.60384 250 2016-17
325 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i1 Student to guidance counselor ratio 307.33 1.08272 250 2016-17
326 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i1 Student to guidance counselor ratio 322.5 0.84 250 2016-17
327 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i1 Student to guidance counselor ratio 342.73 0.51632 250 2016-17
328 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i1 Student to guidance counselor ratio 345.24 0.47616 250 2016-17
329 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i1 Student to guidance counselor ratio 360.77 0.22768 250 2016-17
330 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i1 Student to guidance counselor ratio 384 -0.144 250 2016-17
331 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i1 Student to guidance counselor ratio 420 -0.72 250 2016-17
332 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i1 Student to guidance counselor ratio 423.81 -0.78096 250 2016-17
333 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i1 Student to guidance counselor ratio 424 -0.784 250 2016-17
334 Somerville John F. Kennedy Elementary School 02740083 3-A-ii a-sust-i1 Student to guidance counselor ratio 428.18 -0.85088 250 2016-17
335 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i1 Student to guidance counselor ratio 485 -1.76 250 2016-17
336 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i1 Student to guidance counselor ratio 512.73 -2.20368 250 2016-17
337 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i1 Student to guidance counselor ratio 692 -5.072 250 2016-17
338 Revere Hill Elementary School 02480035 3-A-ii a-sust-i1 Student to guidance counselor ratio 700 -5.2 250 2016-17
339 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i1 Student to guidance counselor ratio 762 -6.192 250 2016-17
340 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i1 Student to guidance counselor ratio 910 -8.56 250 2016-17
341 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i1 Student to guidance counselor ratio 1116 -11.856 250 2016-17
342 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i3 Student to instructional support staff ratio 4.18 5.614746544 43.4 2016-17
343 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i3 Student to instructional support staff ratio 19.3 4.221198157 43.4 2016-17
344 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i3 Student to instructional support staff ratio 20.92 4.071889401 43.4 2016-17
345 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i3 Student to instructional support staff ratio 23 3.880184332 43.4 2016-17
346 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i3 Student to instructional support staff ratio 25 3.695852535 43.4 2016-17
347 Revere Seacoast High School 02480520 3-A-ii a-sust-i3 Student to instructional support staff ratio 33 2.958525346 43.4 2016-17
348 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i3 Student to instructional support staff ratio 38 2.497695853 43.4 2016-17
349 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i3 Student to instructional support staff ratio 39.56 2.353917051 43.4 2016-17
350 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i3 Student to instructional support staff ratio 41 2.221198157 43.4 2016-17
351 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i3 Student to instructional support staff ratio 42.38 2.094009217 43.4 2016-17
352 Somerville John F. Kennedy Elementary School 02740083 3-A-ii a-sust-i3 Student to instructional support staff ratio 49.58 1.430414747 43.4 2016-17
353 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i3 Student to instructional support staff ratio 53 1.115207373 43.4 2016-17
354 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i3 Student to instructional support staff ratio 56.34 0.8073732719 43.4 2016-17
355 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i3 Student to instructional support staff ratio 63 0.1935483871 43.4 2016-17
356 Revere Hill Elementary School 02480035 3-A-ii a-sust-i3 Student to instructional support staff ratio 64 0.1013824885 43.4 2016-17
357 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i3 Student to instructional support staff ratio 65.32 -0.0202764977 43.4 2016-17
358 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i3 Student to instructional support staff ratio 69.63 -0.4175115207 43.4 2016-17
359 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i3 Student to instructional support staff ratio 71.13 -0.5557603687 43.4 2016-17
360 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i3 Student to instructional support staff ratio 76.83 -1.081105991 43.4 2016-17
361 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i3 Student to instructional support staff ratio 101.11 -3.318894009 43.4 2016-17
362 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i3 Student to instructional support staff ratio 124.21 -5.447926267 43.4 2016-17
363 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i3 Student to instructional support staff ratio 163.9 -9.105990783 43.4 2016-17
364 Winchester Lynch Elementary School 03440020 3-A-ii a-sust-i3 Student to instructional support staff ratio 182 -10.77419355 43.4 2016-17
365 Winchester Muraco Elementary School 03440040 3-A-ii a-sust-i3 Student to instructional support staff ratio 202 -12.61751152 43.4 2016-17
366 Winchester Lincoln Elementary School 02480025 3-A-ii a-sust-i3 Student to instructional support staff ratio 205 -12.89400922 43.4 2016-17
367 Winchester Vinson-Owen Elementary School 03440025 3-A-ii a-sust-i3 Student to instructional support staff ratio 211 -13.44700461 43.4 2016-17
368 Winchester Ambrose Elementary School 03440045 3-A-ii a-sust-i3 Student to instructional support staff ratio 220 -14.2764977 43.4 2016-17
369 Somerville Somerville High School 02740505 3-A-ii a-sust-i3 Student to instructional support staff ratio 255.38 -17.53732719 43.4 2016-17
370 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i3 Student to instructional support staff ratio 300 -21.64976959 43.4 2016-17
371 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i3 Student to instructional support staff ratio 372 -28.28571429 43.4 2016-17
372 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i3 Student to instructional support staff ratio 469 -37.22580645 43.4 2016-17
373 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i3 Student to instructional support staff ratio 1154 -100.359447 43.4 2016-17
374 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i3 Student to instructional support staff ratio 1344 -117.8709677 43.4 2016-17
375 Revere Revere High School 02480505 3-A-ii a-sust-i3 Student to instructional support staff ratio 1870 -166.3502304 43.4 2016-17

View file

@ -1,417 +0,0 @@
District,School,DESE ID,Category,Item ID,NonLikert Title,NL_Value,LikertScore,Benchmark,Data Type,Academic Year
Revere,Seacoast High School,02480520,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),22.2,1.11,80,%,2017-18
Somerville,Next Wave/Full Circle,02740510,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),33,1.65,80,%,2017-18
Somerville,Somerville High School,02740505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),87.9,4.395,80,%,2017-18
Attleboro,Attleboro High School,00160505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),93.3,4.665,80,%,2017-18
Revere,Revere High School,02480505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),96.9,4.845,80,%,2017-18
Winchester,Winchester High School,03440505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),99.3,4.965,80,%,2017-18
Somerville,Next Wave/Full Circle,02740510,4-B-ii,a-degr-i3,5-year graduation rate (HS only),33,1.552941176,85,%,2017-18
Revere,Seacoast High School,02480520,4-B-ii,a-degr-i3,5-year graduation rate (HS only),35.1,1.651764706,85,%,2017-18
Somerville,Somerville High School,02740505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),88.9,4.183529412,85,%,2017-18
Attleboro,Attleboro High School,00160505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),92,4.329411765,85,%,2017-18
Revere,Revere High School,02480505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),95.1,4.475294118,85,%,2017-18
Winchester,Winchester High School,03440505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),98,4.611764706,85,%,2017-18
Somerville,Next Wave/Full Circle,02740510,3-A-i,a-reso-i1,Average class size,5,5,20,,2017-18
Revere,Seacoast High School,02480520,3-A-i,a-reso-i1,Average class size,6.7,4.66,20,,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,3-A-i,a-reso-i1,Average class size,13.6,3.28,20,,2017-18
Somerville,Somerville High School,02740505,3-A-i,a-reso-i1,Average class size,14.5,3.1,20,,2017-18
Somerville,Arthur D. Healey School,02740075,3-A-i,a-reso-i1,Average class size,15.1,2.98,20,,2017-18
Winchester,Winchester High School,03440505,3-A-i,a-reso-i1,Average class size,16.2,2.76,20,,2017-18
Revere,Revere High School,02480505,3-A-i,a-reso-i1,Average class size,16.5,2.7,20,,2017-18
Revere,Beachmont Elementary School,02480013,3-A-i,a-reso-i1,Average class size,16.7,2.66,20,,2017-18
Revere,Garfield Middle School,02480057,3-A-i,a-reso-i1,Average class size,18.4,2.32,20,,2017-18
Revere,Lincoln Elementary School,02480025,3-A-i,a-reso-i1,Average class size,18.4,2.32,20,,2017-18
Somerville,John F. Kennedy Elementary School,02740083,3-A-i,a-reso-i1,Average class size,18.4,2.32,20,,2017-18
Winchester,Lynch Elementary School,03440020,3-A-i,a-reso-i1,Average class size,18.6,2.28,20,,2017-18
Somerville,Winter Hill Community Innovation School,02740120,3-A-i,a-reso-i1,Average class size,18.8,2.24,20,,2017-18
Winchester,Lincoln Elementary School,02480025,3-A-i,a-reso-i1,Average class size,18.8,2.24,20,,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-i,a-reso-i1,Average class size,19.2,2.16,20,,2017-18
Somerville,Benjamin G. Brown School,02740015,3-A-i,a-reso-i1,Average class size,19.3,2.14,20,,2017-18
Revere,Garfield Elementary School,02480056,3-A-i,a-reso-i1,Average class size,19.4,2.12,20,,2017-18
Winchester,Muraco Elementary School,03440040,3-A-i,a-reso-i1,Average class size,19.4,2.12,20,,2017-18
Winchester,Ambrose Elementary School,03440045,3-A-i,a-reso-i1,Average class size,19.5,2.1,20,,2017-18
Somerville,East Somerville Community School,02740111,3-A-i,a-reso-i1,Average class size,19.8,2.04,20,,2017-18
Revere,Rumney Marsh Academy,02480014,3-A-i,a-reso-i1,Average class size,19.9,2.02,20,,2017-18
Somerville,West Somerville Neighborhood School,02740115,3-A-i,a-reso-i1,Average class size,20.2,1.96,20,,2017-18
Winchester,Vinson-Owen Elementary School,03440025,3-A-i,a-reso-i1,Average class size,20.5,1.9,20,,2017-18
Revere,Hill Elementary School,02480035,3-A-i,a-reso-i1,Average class size,21.3,1.74,20,,2017-18
Attleboro,Attleboro High School,00160505,3-A-i,a-reso-i1,Average class size,21.5,1.7,20,,2017-18
Revere,Susan B. Anthony Middle School,02480305,3-A-i,a-reso-i1,Average class size,22.3,1.54,20,,2017-18
Revere,Whelan Elementary School,02480003,3-A-i,a-reso-i1,Average class size,22.3,1.54,20,,2017-18
Attleboro,Thomas Willett Elementary School,00160035,3-A-i,a-reso-i1,Average class size,22.8,1.44,20,,2017-18
Revere,Paul Revere Elementary School,02480050,3-A-i,a-reso-i1,Average class size,22.8,1.44,20,,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-i,a-reso-i1,Average class size,23,1.4,20,,2017-18
Winchester,McCall Middle School,03440305,3-A-i,a-reso-i1,Average class size,23,1.4,20,,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-i,a-reso-i1,Average class size,23.3,1.34,20,,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,3-A-i,a-reso-i1,Average class size,24.3,1.14,20,,2017-18
Attleboro,Peter Thacher Elementary School,00160050,3-A-i,a-reso-i1,Average class size,25,1,20,,2017-18
Attleboro,Wamsutta Middle School,00160320,3-A-i,a-reso-i1,Average class size,25.2,0.96,20,,2017-18
Attleboro,Hyman Fine Elementary School,00160040,3-A-i,a-reso-i1,Average class size,26,0.8,20,,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,3-A-i,a-reso-i1,Average class size,27.4,0.52,20,,2017-18
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i2,Average daily attendance,71,3.155555556,90,%,2017-18
Revere,Seacoast High School,02480520,2-C-i,a-vale-i2,Average daily attendance,73.7,3.275555556,90,%,2017-18
Revere,Garfield Elementary School,02480056,2-C-i,a-vale-i2,Average daily attendance,90,4,90,%,2017-18
Revere,Lincoln Elementary School,02480025,2-C-i,a-vale-i2,Average daily attendance,90,4,90,%,2017-18
Somerville,Somerville High School,02740505,2-C-i,a-vale-i2,Average daily attendance,92.3,4.102222222,90,%,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,2-C-i,a-vale-i2,Average daily attendance,92.3,4.102222222,90,%,2017-18
Attleboro,Attleboro High School,00160505,2-C-i,a-vale-i2,Average daily attendance,93.5,4.155555556,90,%,2017-18
Revere,Rumney Marsh Academy,02480014,2-C-i,a-vale-i2,Average daily attendance,94.1,4.182222222,90,%,2017-18
Revere,Revere High School,02480505,2-C-i,a-vale-i2,Average daily attendance,94.3,4.191111111,90,%,2017-18
Somerville,West Somerville Neighborhood School,02740115,2-C-i,a-vale-i2,Average daily attendance,94.6,4.204444444,90,%,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2017-18
Attleboro,Peter Thacher Elementary School,00160050,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2017-18
Somerville,Arthur D. Healey School,02740075,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2017-18
Somerville,John F. Kennedy Elementary School,02740083,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2017-18
Somerville,Winter Hill Community Innovation School,02740120,2-C-i,a-vale-i2,Average daily attendance,95.1,4.226666667,90,%,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,2-C-i,a-vale-i2,Average daily attendance,95.2,4.231111111,90,%,2017-18
Revere,Whelan Elementary School,02480003,2-C-i,a-vale-i2,Average daily attendance,95.3,4.235555556,90,%,2017-18
Revere,Garfield Middle School,02480057,2-C-i,a-vale-i2,Average daily attendance,95.4,4.24,90,%,2017-18
Winchester,Winchester High School,03440505,2-C-i,a-vale-i2,Average daily attendance,95.4,4.24,90,%,2017-18
Attleboro,Thomas Willett Elementary School,00160035,2-C-i,a-vale-i2,Average daily attendance,95.5,4.244444444,90,%,2017-18
Somerville,Benjamin G. Brown School,02740015,2-C-i,a-vale-i2,Average daily attendance,95.5,4.244444444,90,%,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,2-C-i,a-vale-i2,Average daily attendance,95.6,4.248888889,90,%,2017-18
Attleboro,Wamsutta Middle School,00160320,2-C-i,a-vale-i2,Average daily attendance,95.6,4.248888889,90,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,2-C-i,a-vale-i2,Average daily attendance,95.6,4.248888889,90,%,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,2-C-i,a-vale-i2,Average daily attendance,95.7,4.253333333,90,%,2017-18
Attleboro,Hyman Fine Elementary School,00160040,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2017-18
Winchester,Muraco Elementary School,03440040,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2017-18
Somerville,East Somerville Community School,02740111,2-C-i,a-vale-i2,Average daily attendance,96.1,4.271111111,90,%,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,2-C-i,a-vale-i2,Average daily attendance,96.3,4.28,90,%,2017-18
Winchester,Lincoln Elementary School,02480025,2-C-i,a-vale-i2,Average daily attendance,96.3,4.28,90,%,2017-18
Winchester,Lynch Elementary School,03440020,2-C-i,a-vale-i2,Average daily attendance,96.4,4.284444444,90,%,2017-18
Winchester,Vinson-Owen Elementary School,03440025,2-C-i,a-vale-i2,Average daily attendance,96.4,4.284444444,90,%,2017-18
Winchester,Ambrose Elementary School,03440045,2-C-i,a-vale-i2,Average daily attendance,96.5,4.288888889,90,%,2017-18
Winchester,McCall Middle School,03440305,2-C-i,a-vale-i2,Average daily attendance,96.7,4.297777778,90,%,2017-18
Revere,Hill Elementary School,02480035,2-C-i,a-vale-i2,Average daily attendance,100,4.444444444,90,%,2017-18
Revere,Paul Revere Elementary School,02480050,2-C-i,a-vale-i1,Chronic absence rate,1.06,5.576,10,%,2017-18
Revere,Beachmont Elementary School,02480013,2-C-i,a-vale-i1,Chronic absence rate,1.1,5.56,10,%,2017-18
Winchester,Ambrose Elementary School,03440045,2-C-i,a-vale-i1,Chronic absence rate,1.6,5.36,10,%,2017-18
Revere,Hill Elementary School,02480035,2-C-i,a-vale-i1,Chronic absence rate,1.69,5.324,10,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,2-C-i,a-vale-i1,Chronic absence rate,2.1,5.16,10,%,2017-18
Revere,Whelan Elementary School,02480003,2-C-i,a-vale-i1,Chronic absence rate,2.12,5.152,10,%,2017-18
Revere,Lincoln Elementary School,02480025,2-C-i,a-vale-i1,Chronic absence rate,2.73,4.908,10,%,2017-18
Winchester,Lincoln Elementary School,02480025,2-C-i,a-vale-i1,Chronic absence rate,2.9,4.84,10,%,2017-18
Revere,Garfield Elementary School,02480056,2-C-i,a-vale-i1,Chronic absence rate,3,4.8,10,%,2017-18
Winchester,Vinson-Owen Elementary School,03440025,2-C-i,a-vale-i1,Chronic absence rate,3.3,4.68,10,%,2017-18
Revere,Garfield Middle School,02480057,2-C-i,a-vale-i1,Chronic absence rate,3.4,4.64,10,%,2017-18
Winchester,McCall Middle School,03440305,2-C-i,a-vale-i1,Chronic absence rate,3.4,4.64,10,%,2017-18
Winchester,Lynch Elementary School,03440020,2-C-i,a-vale-i1,Chronic absence rate,4.4,4.24,10,%,2017-18
Winchester,Muraco Elementary School,03440040,2-C-i,a-vale-i1,Chronic absence rate,5.1,3.96,10,%,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,2-C-i,a-vale-i1,Chronic absence rate,5.6,3.76,10,%,2017-18
Attleboro,Hyman Fine Elementary School,00160040,2-C-i,a-vale-i1,Chronic absence rate,5.7,3.72,10,%,2017-18
Revere,Revere High School,02480505,2-C-i,a-vale-i1,Chronic absence rate,6.1,3.56,10,%,2017-18
Somerville,Benjamin G. Brown School,02740015,2-C-i,a-vale-i1,Chronic absence rate,6.7,3.32,10,%,2017-18
Attleboro,Wamsutta Middle School,00160320,2-C-i,a-vale-i1,Chronic absence rate,7.8,2.88,10,%,2017-18
Somerville,East Somerville Community School,02740111,2-C-i,a-vale-i1,Chronic absence rate,8,2.8,10,%,2017-18
Somerville,John F. Kennedy Elementary School,02740083,2-C-i,a-vale-i1,Chronic absence rate,8.2,2.72,10,%,2017-18
Attleboro,Thomas Willett Elementary School,00160035,2-C-i,a-vale-i1,Chronic absence rate,9.4,2.24,10,%,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,2-C-i,a-vale-i1,Chronic absence rate,9.6,2.16,10,%,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,2-C-i,a-vale-i1,Chronic absence rate,9.6,2.16,10,%,2017-18
Winchester,Winchester High School,03440505,2-C-i,a-vale-i1,Chronic absence rate,9.7,2.12,10,%,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,2-C-i,a-vale-i1,Chronic absence rate,11.5,1.4,10,%,2017-18
Somerville,Winter Hill Community Innovation School,02740120,2-C-i,a-vale-i1,Chronic absence rate,11.8,1.28,10,%,2017-18
Somerville,Arthur D. Healey School,02740075,2-C-i,a-vale-i1,Chronic absence rate,12.3,1.08,10,%,2017-18
Attleboro,Peter Thacher Elementary School,00160050,2-C-i,a-vale-i1,Chronic absence rate,12.5,1,10,%,2017-18
Somerville,West Somerville Neighborhood School,02740115,2-C-i,a-vale-i1,Chronic absence rate,13.8,0.48,10,%,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,2-C-i,a-vale-i1,Chronic absence rate,15.5,-0.2,10,%,2017-18
Attleboro,Attleboro High School,00160505,2-C-i,a-vale-i1,Chronic absence rate,17.1,-0.84,10,%,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,2-C-i,a-vale-i1,Chronic absence rate,24.7,-3.88,10,%,2017-18
Somerville,Somerville High School,02740505,2-C-i,a-vale-i1,Chronic absence rate,25.3,-4.12,10,%,2017-18
Revere,Seacoast High School,02480520,2-C-i,a-vale-i1,Chronic absence rate,52.4,-14.96,10,%,2017-18
Somerville,Next Wave/Full Circle,02740510,2-C-i,a-vale-i1,Chronic absence rate,78,-25.2,10,%,2017-18
Somerville,Next Wave/Full Circle,02740510,4-D-i,a-cgpr-i1,College enrollment rate (HS only),13,0.7926829268,65.6,%,2017-18
Somerville,Somerville High School,02740505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),57,3.475609756,65.6,%,2017-18
Revere,Revere High School,02480505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),74,4.512195122,65.6,%,2017-18
Winchester,Winchester High School,03440505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),89.1,5.432926829,65.6,%,2017-18
Attleboro,Attleboro High School,00160505,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.2,0.4,2,hours,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,Arthur D. Healey School,02740075,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,West Somerville Neighborhood School,02740115,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,Winter Hill Community Innovation School,02740120,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,East Somerville Community School,02740111,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,Benjamin G. Brown School,02740015,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.8,1.6,2,hours,2017-18
Winchester,Ambrose Elementary School,03440045,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.9,1.8,2,hours,2017-18
Winchester,Lincoln Elementary School,02480025,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.9,1.8,2,hours,2017-18
Winchester,Lynch Elementary School,03440020,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.9,1.8,2,hours,2017-18
Winchester,Muraco Elementary School,03440040,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.9,1.8,2,hours,2017-18
Winchester,Vinson-Owen Elementary School,03440025,5-C-i,a-picp-i1,Hours of arts instruction per student per week,0.9,1.8,2,hours,2017-18
Somerville,Next Wave/Full Circle,02740510,5-C-i,a-picp-i1,Hours of arts instruction per student per week,1,2,2,hours,2017-18
Revere,Garfield Elementary School,02480056,5-C-i,a-picp-i1,Hours of arts instruction per student per week,1.2,2.4,2,hours,2017-18
Revere,Beachmont Elementary School,02480013,5-C-i,a-picp-i1,Hours of arts instruction per student per week,1.3,2.6,2,hours,2017-18
Revere,Whelan Elementary School,02480003,5-C-i,a-picp-i1,Hours of arts instruction per student per week,1.5,3,2,hours,2017-18
Attleboro,Hyman Fine Elementary School,00160040,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2,4,2,hours,2017-18
Attleboro,Peter Thacher Elementary School,00160050,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2,4,2,hours,2017-18
Revere,Garfield Middle School,02480057,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2,4,2,hours,2017-18
Revere,Rumney Marsh Academy,02480014,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2,4,2,hours,2017-18
Revere,Hill Elementary School,02480035,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2,4,2,hours,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2.3,4.6,2,hours,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2.5,5,2,hours,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2.5,5,2,hours,2017-18
Attleboro,Wamsutta Middle School,00160320,5-D-ii,a-picp-i1,Hours of arts instruction per student per week,2.5,5,2,hours,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2.5,5,2,hours,2017-18
Attleboro,Thomas Willett Elementary School,00160035,5-C-i,a-picp-i1,Hours of arts instruction per student per week,2.5,5,2,hours,2017-18
Revere,Susan B. Anthony Middle School,02480305,5-C-i,a-picp-i1,Hours of arts instruction per student per week,3,6,2,hours,2017-18
Revere,Paul Revere Elementary School,02480050,5-C-i,a-picp-i1,Hours of arts instruction per student per week,3.3,6.6,2,hours,2017-18
Revere,Seacoast High School,02480520,5-C-i,a-picp-i1,Hours of arts instruction per student per week,5,10,2,hours,2017-18
Revere,Lincoln Elementary School,02480025,5-C-i,a-picp-i1,Hours of arts instruction per student per week,5,10,2,hours,2017-18
Revere,Revere High School,02480505,5-C-i,a-picp-i1,Hours of arts instruction per student per week,6.66,13.32,2,hours,2017-18
Somerville,Next Wave/Full Circle,02740510,5-D-ii,a-phya-i1,Medical staff to student ratio,67,5.642666667,750,,2017-18
Attleboro,Peter Thacher Elementary School,00160050,5-D-ii,a-phya-i1,Medical staff to student ratio,216,4.848,750,,2017-18
Somerville,John F. Kennedy Elementary School,02740083,5-D-ii,a-phya-i1,Medical staff to student ratio,228,4.784,750,,2017-18
Somerville,Winter Hill Community Innovation School,02740120,5-D-ii,a-phya-i1,Medical staff to student ratio,229.5,4.776,750,,2017-18
Somerville,Benjamin G. Brown School,02740015,5-D-ii,a-phya-i1,Medical staff to student ratio,231,4.768,750,,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,5-D-ii,a-phya-i1,Medical staff to student ratio,292,4.442666667,750,,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,5-D-ii,a-phya-i1,Medical staff to student ratio,297,4.416,750,,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,5-D-ii,a-phya-i1,Medical staff to student ratio,314,4.325333333,750,,2017-18
Somerville,West Somerville Neighborhood School,02740115,5-D-ii,a-phya-i1,Medical staff to student ratio,371,4.021333333,750,,2017-18
Winchester,Muraco Elementary School,03440040,5-D-ii,a-phya-i1,Medical staff to student ratio,381,3.968,750,,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,5-D-ii,a-phya-i1,Medical staff to student ratio,384,3.952,750,,2017-18
Winchester,Lincoln Elementary School,02480025,5-D-ii,a-phya-i1,Medical staff to student ratio,403,3.850666667,750,,2017-18
Revere,Seacoast High School,02480520,5-D-ii,a-phya-i1,Medical staff to student ratio,410,3.813333333,750,,2017-18
Winchester,Ambrose Elementary School,03440045,5-D-ii,a-phya-i1,Medical staff to student ratio,421,3.754666667,750,,2017-18
Attleboro,Thomas Willett Elementary School,00160035,5-D-ii,a-phya-i1,Medical staff to student ratio,429,3.712,750,,2017-18
Somerville,Arthur D. Healey School,02740075,5-D-ii,a-phya-i1,Medical staff to student ratio,451,3.594666667,750,,2017-18
Winchester,Vinson-Owen Elementary School,03440025,5-D-ii,a-phya-i1,Medical staff to student ratio,455,3.573333333,750,,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,5-D-ii,a-phya-i1,Medical staff to student ratio,461,3.541333333,750,,2017-18
Revere,Beachmont Elementary School,02480013,5-D-ii,a-phya-i1,Medical staff to student ratio,467.5,3.506666667,750,,2017-18
Revere,Paul Revere Elementary School,02480050,5-D-ii,a-phya-i1,Medical staff to student ratio,472,3.482666667,750,,2017-18
Attleboro,Hyman Fine Elementary School,00160040,5-D-ii,a-phya-i1,Medical staff to student ratio,477,3.456,750,,2017-18
Winchester,Lynch Elementary School,03440020,5-D-ii,a-phya-i1,Medical staff to student ratio,480,3.44,750,,2017-18
Revere,Garfield Middle School,02480057,5-D-ii,a-phya-i1,Medical staff to student ratio,538,3.130666667,750,,2017-18
Winchester,McCall Middle School,03440305,5-D-ii,a-phya-i1,Medical staff to student ratio,555,3.04,750,,2017-18
Attleboro,Wamsutta Middle School,00160320,5-D-ii,a-phya-i1,Medical staff to student ratio,569,2.965333333,750,,2017-18
Revere,Susan B. Anthony Middle School,02480305,5-D-ii,a-phya-i1,Medical staff to student ratio,570,2.96,750,,2017-18
Revere,Rumney Marsh Academy,02480014,5-D-ii,a-phya-i1,Medical staff to student ratio,597,2.816,750,,2017-18
Somerville,Somerville High School,02740505,5-D-ii,a-phya-i1,Medical staff to student ratio,607.5,2.76,750,,2017-18
Attleboro,Attleboro High School,00160505,5-D-ii,a-phya-i1,Medical staff to student ratio,646.9,2.549866667,750,,2017-18
Revere,Revere High School,02480505,5-D-ii,a-phya-i1,Medical staff to student ratio,663.7,2.460266667,750,,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,5-D-ii,a-phya-i1,Medical staff to student ratio,678,2.384,750,,2017-18
Winchester,Winchester High School,03440505,5-D-ii,a-phya-i1,Medical staff to student ratio,688,2.330666667,750,,2017-18
Revere,Lincoln Elementary School,02480025,5-D-ii,a-phya-i1,Medical staff to student ratio,695,2.293333333,750,,2017-18
Revere,Hill Elementary School,02480035,5-D-ii,a-phya-i1,Medical staff to student ratio,712,2.202666667,750,,2017-18
Somerville,East Somerville Community School,02740111,5-D-ii,a-phya-i1,Medical staff to student ratio,720,2.16,750,,2017-18
Revere,Whelan Elementary School,02480003,5-D-ii,a-phya-i1,Medical staff to student ratio,753,1.984,750,,2017-18
Revere,Garfield Elementary School,02480056,5-D-ii,a-phya-i1,Medical staff to student ratio,768,1.904,750,,2017-18
Revere,Revere High School,02480505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),48,9.6,20,%,2017-18
Somerville,Somerville High School,02740505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),60,12,20,%,2017-18
Somerville,Somerville High School,02740505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),56.7,2.52,90,%,2017-18
Winchester,Winchester High School,03440505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),89,3.955555556,90,%,2017-18
Revere,Revere High School,02480505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),100,4.444444444,90,%,2017-18
Revere,Seacoast High School,02480520,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),100,4.444444444,90,%,2017-18
Revere,Revere High School,02480505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),16.3,2.173333333,30,%,2017-18
Somerville,Somerville High School,02740505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),44,5.866666667,30,%,2017-18
Winchester,Winchester High School,03440505,4-D-ii,a-cppm-i1,Percent positive work placement (HS only),10,0.4705882353,85,%,2017-18
Somerville,Somerville High School,02740505,4-D-ii,a-cppm-i1,Percent positive work placement (HS only),98,4.611764706,85,%,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),70,3.294117647,85,%,2017-18
Somerville,Next Wave/Full Circle,02740510,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),72,3.388235294,85,%,2017-18
Somerville,East Somerville Community School,02740111,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),73,3.435294118,85,%,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),80,3.764705882,85,%,2017-18
Somerville,John F. Kennedy Elementary School,02740083,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),80.5,3.788235294,85,%,2017-18
Somerville,Somerville High School,02740505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),81.7,3.844705882,85,%,2017-18
Somerville,Arthur D. Healey School,02740075,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),83.3,3.92,85,%,2017-18
Somerville,West Somerville Neighborhood School,02740115,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),83.3,3.92,85,%,2017-18
Somerville,Benjamin G. Brown School,02740015,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),85,4,85,%,2017-18
Revere,Rumney Marsh Academy,02480014,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),90,4.235294118,85,%,2017-18
Somerville,Winter Hill Community Innovation School,02740120,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),90.7,4.268235294,85,%,2017-18
Winchester,McCall Middle School,03440305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),92.6,4.357647059,85,%,2017-18
Revere,Seacoast High School,02480520,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),93,4.376470588,85,%,2017-18
Revere,Revere High School,02480505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),95,4.470588235,85,%,2017-18
Revere,Lincoln Elementary School,02480025,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),95,4.470588235,85,%,2017-18
Revere,Garfield Middle School,02480057,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,%,2017-18
Winchester,Ambrose Elementary School,03440045,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,%,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97.2,4.574117647,85,%,2017-18
Attleboro,Peter Thacher Elementary School,00160050,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),97.6,4.592941176,85,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),98,4.611764706,85,%,2017-18
Revere,Beachmont Elementary School,02480013,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),98,4.611764706,85,%,2017-18
Revere,Paul Revere Elementary School,02480050,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),98,4.611764706,85,%,2017-18
Attleboro,Attleboro High School,00160505,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,Wamsutta Middle School,00160320,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,Hyman Fine Elementary School,00160040,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Attleboro,Thomas Willett Elementary School,00160035,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Revere,Garfield Elementary School,02480056,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Revere,Hill Elementary School,02480035,1-B-i,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2017-18
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i2,Percentage teachers National Board certified,1.6,0.64,10,%,2017-18
Revere,Rumney Marsh Academy,02480014,1-A-i,a-exp-i2,Percentage teachers National Board certified,1.7,0.68,10,%,2017-18
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i2,Percentage teachers National Board certified,2,0.8,10,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,1-A-i,a-exp-i2,Percentage teachers National Board certified,2,0.8,10,%,2017-18
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i2,Percentage teachers National Board certified,2.2,0.88,10,%,2017-18
Revere,Revere High School,02480505,1-A-i,a-exp-i2,Percentage teachers National Board certified,2.7,1.08,10,%,2017-18
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i2,Percentage teachers National Board certified,4,1.6,10,%,2017-18
Revere,Seacoast High School,02480520,1-A-i,a-exp-i2,Percentage teachers National Board certified,12,4.8,10,%,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,95,4,95,%,2017-18
Somerville,Arthur D. Healey School,02740075,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,97,4.084210526,95,%,2017-18
Revere,Revere High School,02480505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,97.7,4.113684211,95,%,2017-18
Attleboro,Attleboro High School,00160505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,97.8,4.117894737,95,%,2017-18
Somerville,Somerville High School,02740505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,98,4.126315789,95,%,2017-18
Somerville,Winter Hill Community Innovation School,02740120,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,98,4.126315789,95,%,2017-18
Somerville,East Somerville Community School,02740111,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,98,4.126315789,95,%,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Wamsutta Middle School,00160320,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Hyman Fine Elementary School,00160040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Peter Thacher Elementary School,00160050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Attleboro,Thomas Willett Elementary School,00160035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Seacoast High School,02480520,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Rumney Marsh Academy,02480014,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Beachmont Elementary School,02480013,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Garfield Elementary School,02480056,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Lincoln Elementary School,02480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Somerville,John F. Kennedy Elementary School,02740083,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Somerville,West Somerville Neighborhood School,02740115,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Somerville,Benjamin G. Brown School,02740015,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Winchester High School,03440505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,McCall Middle School,03440305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Ambrose Elementary School,03440045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Lincoln Elementary School,02480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Lynch Elementary School,03440020,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Muraco Elementary School,03440040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Winchester,Vinson-Owen Elementary School,03440025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,4.210526316,95,%,2017-18
Revere,Seacoast High School,02480520,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,43,2.15,80,%,2017-18
Revere,Garfield Middle School,02480057,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,45,2.25,80,%,2017-18
Somerville,Arthur D. Healey School,02740075,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,45.9,2.295,80,%,2017-18
Revere,Rumney Marsh Academy,02480014,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,46,2.3,80,%,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,48.3,2.415,80,%,2017-18
Somerville,East Somerville Community School,02740111,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,51,2.55,80,%,2017-18
Revere,Paul Revere Elementary School,02480050,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,57,2.85,80,%,2017-18
Somerville,John F. Kennedy Elementary School,02740083,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,59.4,2.97,80,%,2017-18
Revere,Beachmont Elementary School,02480013,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,62.5,3.125,80,%,2017-18
Revere,Susan B. Anthony Middle School,02480305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63,3.15,80,%,2017-18
Attleboro,Attleboro High School,00160505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63.3,3.165,80,%,2017-18
Somerville,Somerville High School,02740505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63.9,3.195,80,%,2017-18
Revere,Lincoln Elementary School,02480025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,64,3.2,80,%,2017-18
Revere,Revere High School,02480505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,66,3.3,80,%,2017-18
Somerville,West Somerville Neighborhood School,02740115,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,69.6,3.48,80,%,2017-18
Somerville,Next Wave/Full Circle,02740510,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,70,3.5,80,%,2017-18
Revere,Whelan Elementary School,02480003,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,%,2017-18
Revere,Garfield Elementary School,02480056,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,%,2017-18
Somerville,Winter Hill Community Innovation School,02740120,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71.4,3.57,80,%,2017-18
Somerville,Benjamin G. Brown School,02740015,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,72,3.6,80,%,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,72.5,3.625,80,%,2017-18
Revere,Hill Elementary School,02480035,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,73,3.65,80,%,2017-18
Attleboro,Hyman Fine Elementary School,00160040,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,75,3.75,80,%,2017-18
Attleboro,Peter Thacher Elementary School,00160050,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,75.6,3.78,80,%,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,76.3,3.815,80,%,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,77.8,3.89,80,%,2017-18
Attleboro,Thomas Willett Elementary School,00160035,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,80,4,80,%,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,82.6,4.13,80,%,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,86.2,4.31,80,%,2017-18
Attleboro,Wamsutta Middle School,00160320,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,91.2,4.56,80,%,2017-18
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i4,Student to art teacher ratio,134,4.928,500,,2017-18
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i4,Student to art teacher ratio,164.9,4.6808,500,,2017-18
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i4,Student to art teacher ratio,175.4,4.5968,500,,2017-18
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i4,Student to art teacher ratio,187,4.504,500,,2017-18
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i4,Student to art teacher ratio,189.7,4.4824,500,,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i4,Student to art teacher ratio,192,4.464,500,,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i4,Student to art teacher ratio,198,4.416,500,,2017-18
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i4,Student to art teacher ratio,214.5,4.284,500,,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i4,Student to art teacher ratio,226,4.192,500,,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i4,Student to art teacher ratio,230.5,4.156,500,,2017-18
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i4,Student to art teacher ratio,236,4.112,500,,2017-18
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i4,Student to art teacher ratio,238.5,4.092,500,,2017-18
Revere,Garfield Middle School,02480057,3-A-ii,a-sust-i4,Student to art teacher ratio,269,3.848,500,,2017-18
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i4,Student to art teacher ratio,298.5,3.612,500,,2017-18
Somerville,Somerville High School,02740505,3-A-ii,a-sust-i4,Student to art teacher ratio,303.8,3.5696,500,,2017-18
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i4,Student to art teacher ratio,324,3.408,500,,2017-18
Winchester,Winchester High School,03440505,3-A-ii,a-sust-i4,Student to art teacher ratio,344,3.248,500,,2017-18
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i4,Student to art teacher ratio,347.5,3.22,500,,2017-18
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i4,Student to art teacher ratio,356,3.152,500,,2017-18
Winchester,McCall Middle School,03440305,3-A-ii,a-sust-i4,Student to art teacher ratio,370,3.04,500,,2017-18
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i4,Student to art teacher ratio,376.5,2.988,500,,2017-18
Winchester,Muraco Elementary School,03440040,3-A-ii,a-sust-i4,Student to art teacher ratio,381,2.952,500,,2017-18
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i4,Student to art teacher ratio,384,2.928,500,,2017-18
Winchester,Lincoln Elementary School,02480025,3-A-ii,a-sust-i4,Student to art teacher ratio,403,2.776,500,,2017-18
Winchester,Ambrose Elementary School,03440045,3-A-ii,a-sust-i4,Student to art teacher ratio,421,2.632,500,,2017-18
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i4,Student to art teacher ratio,451,2.392,500,,2017-18
Winchester,Vinson-Owen Elementary School,03440025,3-A-ii,a-sust-i4,Student to art teacher ratio,455,2.36,500,,2017-18
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i4,Student to art teacher ratio,459,2.328,500,,2017-18
Revere,Revere High School,02480505,3-A-ii,a-sust-i4,Student to art teacher ratio,459.5,2.324,500,,2017-18
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i4,Student to art teacher ratio,462,2.304,500,,2017-18
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i4,Student to art teacher ratio,480,2.16,500,,2017-18
Winchester,Lynch Elementary School,03440020,3-A-ii,a-sust-i4,Student to art teacher ratio,480,2.16,500,,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i4,Student to art teacher ratio,486.7,2.1064,500,,2017-18
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i4,Student to art teacher ratio,494.7,2.0424,500,,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,3-A-ii,a-sust-i4,Student to art teacher ratio,628,0.976,500,,2017-18
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i4,Student to art teacher ratio,820,-0.56,500,,2017-18
Revere,Seacoast High School,02480520,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),5.5,5.614035088,57,,2017-18
Somerville,Somerville High School,02740505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),14.6,4.975438596,57,,2017-18
Revere,Revere High School,02480505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),36.9,3.410526316,57,,2017-18
Attleboro,Attleboro High School,00160505,3-B-iII,a-cocu-i1,Student to co-curricular activities ratio (HS only),56.1,2.063157895,57,,2017-18
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i1,Student to guidance counselor ratio,22.3,5.6432,250,,2017-18
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i1,Student to guidance counselor ratio,27.3,5.5632,250,,2017-18
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i1,Student to guidance counselor ratio,90.2,4.5568,250,,2017-18
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i1,Student to guidance counselor ratio,92.8,4.5152,250,,2017-18
Somerville,Somerville High School,02740505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,121.5,4.056,250,,2017-18
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i1,Student to guidance counselor ratio,130.9,3.9056,250,,2017-18
Winchester,McCall Middle School,03440305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,139,3.776,250,,2017-18
Revere,Revere High School,02480505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,142.2,3.7248,250,,2017-18
Winchester,Winchester High School,03440505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,153,3.552,250,,2017-18
Revere,Garfield Middle School,02480057,3-A-ii,a-sust-i1,Student to guidance counselor ratio,153.7,3.5408,250,,2017-18
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,190,2.96,250,,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i1,Student to guidance counselor ratio,192,2.928,250,,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,3-A-ii,a-sust-i1,Student to guidance counselor ratio,196.3,2.8592,250,,2017-18
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i1,Student to guidance counselor ratio,199,2.816,250,,2017-18
Winchester,Ambrose Elementary School,03440045,3-A-ii,a-sust-i1,Student to guidance counselor ratio,210,2.64,250,,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,226,2.384,250,,2017-18
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i1,Student to guidance counselor ratio,229.5,2.328,250,,2017-18
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i1,Student to guidance counselor ratio,231,2.304,250,,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i1,Student to guidance counselor ratio,292,1.328,250,,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i1,Student to guidance counselor ratio,307.3,1.0832,250,,2017-18
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i1,Student to guidance counselor ratio,318,0.912,250,,2017-18
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,324,0.816,250,,2017-18
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,373.8,0.0192,250,,2017-18
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i1,Student to guidance counselor ratio,374,0.016,250,,2017-18
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i1,Student to guidance counselor ratio,376.5,-0.024,250,,2017-18
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i1,Student to guidance counselor ratio,379.3,-0.0688,250,,2017-18
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i1,Student to guidance counselor ratio,384,-0.144,250,,2017-18
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,429,-0.864,250,,2017-18
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,472,-1.552,250,,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i1,Student to guidance counselor ratio,594,-3.504,250,,2017-18
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i1,Student to guidance counselor ratio,695,-5.12,250,,2017-18
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,712,-5.392,250,,2017-18
Somerville,Michael E. Capuano Early Childhood Center,02740005,3-A-ii,a-sust-i3,Student to instructional support staff ratio,8.3,5.235023041,43.4,,2017-18
Somerville,Winter Hill Community Innovation School,02740120,3-A-ii,a-sust-i3,Student to instructional support staff ratio,21.9,3.98156682,43.4,,2017-18
Revere,Seacoast High School,02480520,3-A-ii,a-sust-i3,Student to instructional support staff ratio,27.3,3.483870968,43.4,,2017-18
Somerville,Dr. Albert F. Argenziano School at Lincoln Park,02740087,3-A-ii,a-sust-i3,Student to instructional support staff ratio,36.5,2.6359447,43.4,,2017-18
Revere,Garfield Elementary School,02480056,3-A-ii,a-sust-i3,Student to instructional support staff ratio,40.4,2.276497696,43.4,,2017-18
Revere,Beachmont Elementary School,02480013,3-A-ii,a-sust-i3,Student to instructional support staff ratio,41.6,2.165898618,43.4,,2017-18
Revere,Paul Revere Elementary School,02480050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,47.2,1.649769585,43.4,,2017-18
Somerville,East Somerville Community School,02740111,3-A-ii,a-sust-i3,Student to instructional support staff ratio,48,1.576036866,43.4,,2017-18
Revere,Whelan Elementary School,02480003,3-A-ii,a-sust-i3,Student to instructional support staff ratio,50.2,1.373271889,43.4,,2017-18
Revere,Rumney Marsh Academy,02480014,3-A-ii,a-sust-i3,Student to instructional support staff ratio,54.3,0.9953917051,43.4,,2017-18
Somerville,West Somerville Neighborhood School,02740115,3-A-ii,a-sust-i3,Student to instructional support staff ratio,61.8,0.3041474654,43.4,,2017-18
Revere,Lincoln Elementary School,02480025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,63.2,0.1751152074,43.4,,2017-18
Revere,Hill Elementary School,02480035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,64.7,0.03686635945,43.4,,2017-18
Somerville,Next Wave/Full Circle,02740510,3-A-ii,a-sust-i3,Student to instructional support staff ratio,67,-0.1751152074,43.4,,2017-18
Revere,Garfield Middle School,02480057,3-A-ii,a-sust-i3,Student to instructional support staff ratio,67.3,-0.202764977,43.4,,2017-18
Revere,Susan B. Anthony Middle School,02480305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,71.3,-0.5714285714,43.4,,2017-18
Somerville,Arthur D. Healey School,02740075,3-A-ii,a-sust-i3,Student to instructional support staff ratio,90.2,-2.313364055,43.4,,2017-18
Revere,Revere High School,02480505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,99.6,-3.179723502,43.4,,2017-18
Somerville,Benjamin G. Brown School,02740015,3-A-ii,a-sust-i3,Student to instructional support staff ratio,115.5,-4.64516129,43.4,,2017-18
Attleboro,Attleboro High School,00160505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,128.4,-5.834101382,43.4,,2017-18
Somerville,Somerville High School,02740505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,151.9,-8,43.4,,2017-18
Attleboro,A. Irvin Studley Elementary School,00160001,3-A-ii,a-sust-i3,Student to instructional support staff ratio,174.5,-10.08294931,43.4,,2017-18
Attleboro,Robert J. Coelho Middle School,00160305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,216.6,-13.96313364,43.4,,2017-18
Attleboro,Peter Thacher Elementary School,00160050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,249.2,-16.96774194,43.4,,2017-18
Attleboro,Hill-Roberts Elementary School,00160045,3-A-ii,a-sust-i3,Student to instructional support staff ratio,271.2,-18.99539171,43.4,,2017-18
Attleboro,Hyman Fine Elementary School,00160040,3-A-ii,a-sust-i3,Student to instructional support staff ratio,280.6,-19.86175115,43.4,,2017-18
Attleboro,Wamsutta Middle School,00160320,3-A-ii,a-sust-i3,Student to instructional support staff ratio,347,-25.98156682,43.4,,2017-18
Attleboro,Thomas Willett Elementary School,00160035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,357.5,-26.94930876,43.4,,2017-18
Attleboro,Cyril K. Brennan Middle School,00160315,3-A-ii,a-sust-i3,Student to instructional support staff ratio,525.7,-42.4516129,43.4,,2017-18
Somerville,Next Wave/Full Circle,02740510,3-B-i,a-curv-i6,Student to number of electives ratio (completely free choice) (HS only),1.2,3.6,2,,2017-18
Revere,Seacoast High School,02480520,3-B-i,a-curv-i6,Student to number of electives ratio (completely free choice) (HS only),6.8,-7.6,2,,2017-18
Attleboro,Attleboro High School,00160505,3-B-i,a-curv-i6,Student to number of electives ratio (completely free choice) (HS only),9.6,-13.2,2,,2017-18
Revere,Revere High School,02480505,3-B-i,a-curv-i6,Student to number of electives ratio (completely free choice) (HS only),17.2,-28.4,2,,2017-18
Somerville,Somerville High School,02740505,3-B-i,a-curv-i6,Student to number of electives ratio (completely free choice) (HS only),19.9,-33.8,2,,2017-18
1 District School DESE ID Category Item ID NonLikert Title NL_Value LikertScore Benchmark Data Type Academic Year
2 Revere Seacoast High School 02480520 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 22.2 1.11 80 % 2017-18
3 Somerville Next Wave/Full Circle 02740510 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 33 1.65 80 % 2017-18
4 Somerville Somerville High School 02740505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 87.9 4.395 80 % 2017-18
5 Attleboro Attleboro High School 00160505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 93.3 4.665 80 % 2017-18
6 Revere Revere High School 02480505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 96.9 4.845 80 % 2017-18
7 Winchester Winchester High School 03440505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 99.3 4.965 80 % 2017-18
8 Somerville Next Wave/Full Circle 02740510 4-B-ii a-degr-i3 5-year graduation rate (HS only) 33 1.552941176 85 % 2017-18
9 Revere Seacoast High School 02480520 4-B-ii a-degr-i3 5-year graduation rate (HS only) 35.1 1.651764706 85 % 2017-18
10 Somerville Somerville High School 02740505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 88.9 4.183529412 85 % 2017-18
11 Attleboro Attleboro High School 00160505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 92 4.329411765 85 % 2017-18
12 Revere Revere High School 02480505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 95.1 4.475294118 85 % 2017-18
13 Winchester Winchester High School 03440505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 98 4.611764706 85 % 2017-18
14 Somerville Next Wave/Full Circle 02740510 3-A-i a-reso-i1 Average class size 5 5 20 2017-18
15 Revere Seacoast High School 02480520 3-A-i a-reso-i1 Average class size 6.7 4.66 20 2017-18
16 Somerville Michael E. Capuano Early Childhood Center 02740005 3-A-i a-reso-i1 Average class size 13.6 3.28 20 2017-18
17 Somerville Somerville High School 02740505 3-A-i a-reso-i1 Average class size 14.5 3.1 20 2017-18
18 Somerville Arthur D. Healey School 02740075 3-A-i a-reso-i1 Average class size 15.1 2.98 20 2017-18
19 Winchester Winchester High School 03440505 3-A-i a-reso-i1 Average class size 16.2 2.76 20 2017-18
20 Revere Revere High School 02480505 3-A-i a-reso-i1 Average class size 16.5 2.7 20 2017-18
21 Revere Beachmont Elementary School 02480013 3-A-i a-reso-i1 Average class size 16.7 2.66 20 2017-18
22 Revere Garfield Middle School 02480057 3-A-i a-reso-i1 Average class size 18.4 2.32 20 2017-18
23 Revere Lincoln Elementary School 02480025 3-A-i a-reso-i1 Average class size 18.4 2.32 20 2017-18
24 Somerville John F. Kennedy Elementary School 02740083 3-A-i a-reso-i1 Average class size 18.4 2.32 20 2017-18
25 Winchester Lynch Elementary School 03440020 3-A-i a-reso-i1 Average class size 18.6 2.28 20 2017-18
26 Somerville Winter Hill Community Innovation School 02740120 3-A-i a-reso-i1 Average class size 18.8 2.24 20 2017-18
27 Winchester Lincoln Elementary School 02480025 3-A-i a-reso-i1 Average class size 18.8 2.24 20 2017-18
28 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-i a-reso-i1 Average class size 19.2 2.16 20 2017-18
29 Somerville Benjamin G. Brown School 02740015 3-A-i a-reso-i1 Average class size 19.3 2.14 20 2017-18
30 Revere Garfield Elementary School 02480056 3-A-i a-reso-i1 Average class size 19.4 2.12 20 2017-18
31 Winchester Muraco Elementary School 03440040 3-A-i a-reso-i1 Average class size 19.4 2.12 20 2017-18
32 Winchester Ambrose Elementary School 03440045 3-A-i a-reso-i1 Average class size 19.5 2.1 20 2017-18
33 Somerville East Somerville Community School 02740111 3-A-i a-reso-i1 Average class size 19.8 2.04 20 2017-18
34 Revere Rumney Marsh Academy 02480014 3-A-i a-reso-i1 Average class size 19.9 2.02 20 2017-18
35 Somerville West Somerville Neighborhood School 02740115 3-A-i a-reso-i1 Average class size 20.2 1.96 20 2017-18
36 Winchester Vinson-Owen Elementary School 03440025 3-A-i a-reso-i1 Average class size 20.5 1.9 20 2017-18
37 Revere Hill Elementary School 02480035 3-A-i a-reso-i1 Average class size 21.3 1.74 20 2017-18
38 Attleboro Attleboro High School 00160505 3-A-i a-reso-i1 Average class size 21.5 1.7 20 2017-18
39 Revere Susan B. Anthony Middle School 02480305 3-A-i a-reso-i1 Average class size 22.3 1.54 20 2017-18
40 Revere Whelan Elementary School 02480003 3-A-i a-reso-i1 Average class size 22.3 1.54 20 2017-18
41 Attleboro Thomas Willett Elementary School 00160035 3-A-i a-reso-i1 Average class size 22.8 1.44 20 2017-18
42 Revere Paul Revere Elementary School 02480050 3-A-i a-reso-i1 Average class size 22.8 1.44 20 2017-18
43 Attleboro A. Irvin Studley Elementary School 00160001 3-A-i a-reso-i1 Average class size 23 1.4 20 2017-18
44 Winchester McCall Middle School 03440305 3-A-i a-reso-i1 Average class size 23 1.4 20 2017-18
45 Attleboro Cyril K. Brennan Middle School 00160315 3-A-i a-reso-i1 Average class size 23.3 1.34 20 2017-18
46 Attleboro Hill-Roberts Elementary School 00160045 3-A-i a-reso-i1 Average class size 24.3 1.14 20 2017-18
47 Attleboro Peter Thacher Elementary School 00160050 3-A-i a-reso-i1 Average class size 25 1 20 2017-18
48 Attleboro Wamsutta Middle School 00160320 3-A-i a-reso-i1 Average class size 25.2 0.96 20 2017-18
49 Attleboro Hyman Fine Elementary School 00160040 3-A-i a-reso-i1 Average class size 26 0.8 20 2017-18
50 Attleboro Robert J. Coelho Middle School 00160305 3-A-i a-reso-i1 Average class size 27.4 0.52 20 2017-18
51 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i2 Average daily attendance 71 3.155555556 90 % 2017-18
52 Revere Seacoast High School 02480520 2-C-i a-vale-i2 Average daily attendance 73.7 3.275555556 90 % 2017-18
53 Revere Garfield Elementary School 02480056 2-C-i a-vale-i2 Average daily attendance 90 4 90 % 2017-18
54 Revere Lincoln Elementary School 02480025 2-C-i a-vale-i2 Average daily attendance 90 4 90 % 2017-18
55 Somerville Somerville High School 02740505 2-C-i a-vale-i2 Average daily attendance 92.3 4.102222222 90 % 2017-18
56 Somerville Michael E. Capuano Early Childhood Center 02740005 2-C-i a-vale-i2 Average daily attendance 92.3 4.102222222 90 % 2017-18
57 Attleboro Attleboro High School 00160505 2-C-i a-vale-i2 Average daily attendance 93.5 4.155555556 90 % 2017-18
58 Revere Rumney Marsh Academy 02480014 2-C-i a-vale-i2 Average daily attendance 94.1 4.182222222 90 % 2017-18
59 Revere Revere High School 02480505 2-C-i a-vale-i2 Average daily attendance 94.3 4.191111111 90 % 2017-18
60 Somerville West Somerville Neighborhood School 02740115 2-C-i a-vale-i2 Average daily attendance 94.6 4.204444444 90 % 2017-18
61 Attleboro Cyril K. Brennan Middle School 00160315 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2017-18
62 Attleboro Peter Thacher Elementary School 00160050 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2017-18
63 Somerville Arthur D. Healey School 02740075 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2017-18
64 Somerville John F. Kennedy Elementary School 02740083 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2017-18
65 Somerville Winter Hill Community Innovation School 02740120 2-C-i a-vale-i2 Average daily attendance 95.1 4.226666667 90 % 2017-18
66 Attleboro Hill-Roberts Elementary School 00160045 2-C-i a-vale-i2 Average daily attendance 95.2 4.231111111 90 % 2017-18
67 Revere Whelan Elementary School 02480003 2-C-i a-vale-i2 Average daily attendance 95.3 4.235555556 90 % 2017-18
68 Revere Garfield Middle School 02480057 2-C-i a-vale-i2 Average daily attendance 95.4 4.24 90 % 2017-18
69 Winchester Winchester High School 03440505 2-C-i a-vale-i2 Average daily attendance 95.4 4.24 90 % 2017-18
70 Attleboro Thomas Willett Elementary School 00160035 2-C-i a-vale-i2 Average daily attendance 95.5 4.244444444 90 % 2017-18
71 Somerville Benjamin G. Brown School 02740015 2-C-i a-vale-i2 Average daily attendance 95.5 4.244444444 90 % 2017-18
72 Attleboro Robert J. Coelho Middle School 00160305 2-C-i a-vale-i2 Average daily attendance 95.6 4.248888889 90 % 2017-18
73 Attleboro Wamsutta Middle School 00160320 2-C-i a-vale-i2 Average daily attendance 95.6 4.248888889 90 % 2017-18
74 Revere Susan B. Anthony Middle School 02480305 2-C-i a-vale-i2 Average daily attendance 95.6 4.248888889 90 % 2017-18
75 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 2-C-i a-vale-i2 Average daily attendance 95.7 4.253333333 90 % 2017-18
76 Attleboro Hyman Fine Elementary School 00160040 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2017-18
77 Winchester Muraco Elementary School 03440040 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2017-18
78 Somerville East Somerville Community School 02740111 2-C-i a-vale-i2 Average daily attendance 96.1 4.271111111 90 % 2017-18
79 Attleboro A. Irvin Studley Elementary School 00160001 2-C-i a-vale-i2 Average daily attendance 96.3 4.28 90 % 2017-18
80 Winchester Lincoln Elementary School 02480025 2-C-i a-vale-i2 Average daily attendance 96.3 4.28 90 % 2017-18
81 Winchester Lynch Elementary School 03440020 2-C-i a-vale-i2 Average daily attendance 96.4 4.284444444 90 % 2017-18
82 Winchester Vinson-Owen Elementary School 03440025 2-C-i a-vale-i2 Average daily attendance 96.4 4.284444444 90 % 2017-18
83 Winchester Ambrose Elementary School 03440045 2-C-i a-vale-i2 Average daily attendance 96.5 4.288888889 90 % 2017-18
84 Winchester McCall Middle School 03440305 2-C-i a-vale-i2 Average daily attendance 96.7 4.297777778 90 % 2017-18
85 Revere Hill Elementary School 02480035 2-C-i a-vale-i2 Average daily attendance 100 4.444444444 90 % 2017-18
86 Revere Paul Revere Elementary School 02480050 2-C-i a-vale-i1 Chronic absence rate 1.06 5.576 10 % 2017-18
87 Revere Beachmont Elementary School 02480013 2-C-i a-vale-i1 Chronic absence rate 1.1 5.56 10 % 2017-18
88 Winchester Ambrose Elementary School 03440045 2-C-i a-vale-i1 Chronic absence rate 1.6 5.36 10 % 2017-18
89 Revere Hill Elementary School 02480035 2-C-i a-vale-i1 Chronic absence rate 1.69 5.324 10 % 2017-18
90 Revere Susan B. Anthony Middle School 02480305 2-C-i a-vale-i1 Chronic absence rate 2.1 5.16 10 % 2017-18
91 Revere Whelan Elementary School 02480003 2-C-i a-vale-i1 Chronic absence rate 2.12 5.152 10 % 2017-18
92 Revere Lincoln Elementary School 02480025 2-C-i a-vale-i1 Chronic absence rate 2.73 4.908 10 % 2017-18
93 Winchester Lincoln Elementary School 02480025 2-C-i a-vale-i1 Chronic absence rate 2.9 4.84 10 % 2017-18
94 Revere Garfield Elementary School 02480056 2-C-i a-vale-i1 Chronic absence rate 3 4.8 10 % 2017-18
95 Winchester Vinson-Owen Elementary School 03440025 2-C-i a-vale-i1 Chronic absence rate 3.3 4.68 10 % 2017-18
96 Revere Garfield Middle School 02480057 2-C-i a-vale-i1 Chronic absence rate 3.4 4.64 10 % 2017-18
97 Winchester McCall Middle School 03440305 2-C-i a-vale-i1 Chronic absence rate 3.4 4.64 10 % 2017-18
98 Winchester Lynch Elementary School 03440020 2-C-i a-vale-i1 Chronic absence rate 4.4 4.24 10 % 2017-18
99 Winchester Muraco Elementary School 03440040 2-C-i a-vale-i1 Chronic absence rate 5.1 3.96 10 % 2017-18
100 Attleboro A. Irvin Studley Elementary School 00160001 2-C-i a-vale-i1 Chronic absence rate 5.6 3.76 10 % 2017-18
101 Attleboro Hyman Fine Elementary School 00160040 2-C-i a-vale-i1 Chronic absence rate 5.7 3.72 10 % 2017-18
102 Revere Revere High School 02480505 2-C-i a-vale-i1 Chronic absence rate 6.1 3.56 10 % 2017-18
103 Somerville Benjamin G. Brown School 02740015 2-C-i a-vale-i1 Chronic absence rate 6.7 3.32 10 % 2017-18
104 Attleboro Wamsutta Middle School 00160320 2-C-i a-vale-i1 Chronic absence rate 7.8 2.88 10 % 2017-18
105 Somerville East Somerville Community School 02740111 2-C-i a-vale-i1 Chronic absence rate 8 2.8 10 % 2017-18
106 Somerville John F. Kennedy Elementary School 02740083 2-C-i a-vale-i1 Chronic absence rate 8.2 2.72 10 % 2017-18
107 Attleboro Thomas Willett Elementary School 00160035 2-C-i a-vale-i1 Chronic absence rate 9.4 2.24 10 % 2017-18
108 Attleboro Robert J. Coelho Middle School 00160305 2-C-i a-vale-i1 Chronic absence rate 9.6 2.16 10 % 2017-18
109 Attleboro Hill-Roberts Elementary School 00160045 2-C-i a-vale-i1 Chronic absence rate 9.6 2.16 10 % 2017-18
110 Winchester Winchester High School 03440505 2-C-i a-vale-i1 Chronic absence rate 9.7 2.12 10 % 2017-18
111 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 2-C-i a-vale-i1 Chronic absence rate 11.5 1.4 10 % 2017-18
112 Somerville Winter Hill Community Innovation School 02740120 2-C-i a-vale-i1 Chronic absence rate 11.8 1.28 10 % 2017-18
113 Somerville Arthur D. Healey School 02740075 2-C-i a-vale-i1 Chronic absence rate 12.3 1.08 10 % 2017-18
114 Attleboro Peter Thacher Elementary School 00160050 2-C-i a-vale-i1 Chronic absence rate 12.5 1 10 % 2017-18
115 Somerville West Somerville Neighborhood School 02740115 2-C-i a-vale-i1 Chronic absence rate 13.8 0.48 10 % 2017-18
116 Attleboro Cyril K. Brennan Middle School 00160315 2-C-i a-vale-i1 Chronic absence rate 15.5 -0.2 10 % 2017-18
117 Attleboro Attleboro High School 00160505 2-C-i a-vale-i1 Chronic absence rate 17.1 -0.84 10 % 2017-18
118 Somerville Michael E. Capuano Early Childhood Center 02740005 2-C-i a-vale-i1 Chronic absence rate 24.7 -3.88 10 % 2017-18
119 Somerville Somerville High School 02740505 2-C-i a-vale-i1 Chronic absence rate 25.3 -4.12 10 % 2017-18
120 Revere Seacoast High School 02480520 2-C-i a-vale-i1 Chronic absence rate 52.4 -14.96 10 % 2017-18
121 Somerville Next Wave/Full Circle 02740510 2-C-i a-vale-i1 Chronic absence rate 78 -25.2 10 % 2017-18
122 Somerville Next Wave/Full Circle 02740510 4-D-i a-cgpr-i1 College enrollment rate (HS only) 13 0.7926829268 65.6 % 2017-18
123 Somerville Somerville High School 02740505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 57 3.475609756 65.6 % 2017-18
124 Revere Revere High School 02480505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 74 4.512195122 65.6 % 2017-18
125 Winchester Winchester High School 03440505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 89.1 5.432926829 65.6 % 2017-18
126 Attleboro Attleboro High School 00160505 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.2 0.4 2 hours 2017-18
127 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
128 Somerville Arthur D. Healey School 02740075 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
129 Somerville West Somerville Neighborhood School 02740115 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
130 Somerville Winter Hill Community Innovation School 02740120 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
131 Somerville East Somerville Community School 02740111 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
132 Somerville Benjamin G. Brown School 02740015 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
133 Somerville Michael E. Capuano Early Childhood Center 02740005 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.8 1.6 2 hours 2017-18
134 Winchester Ambrose Elementary School 03440045 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.9 1.8 2 hours 2017-18
135 Winchester Lincoln Elementary School 02480025 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.9 1.8 2 hours 2017-18
136 Winchester Lynch Elementary School 03440020 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.9 1.8 2 hours 2017-18
137 Winchester Muraco Elementary School 03440040 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.9 1.8 2 hours 2017-18
138 Winchester Vinson-Owen Elementary School 03440025 5-C-i a-picp-i1 Hours of arts instruction per student per week 0.9 1.8 2 hours 2017-18
139 Somerville Next Wave/Full Circle 02740510 5-C-i a-picp-i1 Hours of arts instruction per student per week 1 2 2 hours 2017-18
140 Revere Garfield Elementary School 02480056 5-C-i a-picp-i1 Hours of arts instruction per student per week 1.2 2.4 2 hours 2017-18
141 Revere Beachmont Elementary School 02480013 5-C-i a-picp-i1 Hours of arts instruction per student per week 1.3 2.6 2 hours 2017-18
142 Revere Whelan Elementary School 02480003 5-C-i a-picp-i1 Hours of arts instruction per student per week 1.5 3 2 hours 2017-18
143 Attleboro Hyman Fine Elementary School 00160040 5-C-i a-picp-i1 Hours of arts instruction per student per week 2 4 2 hours 2017-18
144 Attleboro Peter Thacher Elementary School 00160050 5-C-i a-picp-i1 Hours of arts instruction per student per week 2 4 2 hours 2017-18
145 Revere Garfield Middle School 02480057 5-C-i a-picp-i1 Hours of arts instruction per student per week 2 4 2 hours 2017-18
146 Revere Rumney Marsh Academy 02480014 5-C-i a-picp-i1 Hours of arts instruction per student per week 2 4 2 hours 2017-18
147 Revere Hill Elementary School 02480035 5-C-i a-picp-i1 Hours of arts instruction per student per week 2 4 2 hours 2017-18
148 Attleboro A. Irvin Studley Elementary School 00160001 5-C-i a-picp-i1 Hours of arts instruction per student per week 2.3 4.6 2 hours 2017-18
149 Attleboro Cyril K. Brennan Middle School 00160315 5-C-i a-picp-i1 Hours of arts instruction per student per week 2.5 5 2 hours 2017-18
150 Attleboro Robert J. Coelho Middle School 00160305 5-C-i a-picp-i1 Hours of arts instruction per student per week 2.5 5 2 hours 2017-18
151 Attleboro Wamsutta Middle School 00160320 5-D-ii a-picp-i1 Hours of arts instruction per student per week 2.5 5 2 hours 2017-18
152 Attleboro Hill-Roberts Elementary School 00160045 5-C-i a-picp-i1 Hours of arts instruction per student per week 2.5 5 2 hours 2017-18
153 Attleboro Thomas Willett Elementary School 00160035 5-C-i a-picp-i1 Hours of arts instruction per student per week 2.5 5 2 hours 2017-18
154 Revere Susan B. Anthony Middle School 02480305 5-C-i a-picp-i1 Hours of arts instruction per student per week 3 6 2 hours 2017-18
155 Revere Paul Revere Elementary School 02480050 5-C-i a-picp-i1 Hours of arts instruction per student per week 3.3 6.6 2 hours 2017-18
156 Revere Seacoast High School 02480520 5-C-i a-picp-i1 Hours of arts instruction per student per week 5 10 2 hours 2017-18
157 Revere Lincoln Elementary School 02480025 5-C-i a-picp-i1 Hours of arts instruction per student per week 5 10 2 hours 2017-18
158 Revere Revere High School 02480505 5-C-i a-picp-i1 Hours of arts instruction per student per week 6.66 13.32 2 hours 2017-18
159 Somerville Next Wave/Full Circle 02740510 5-D-ii a-phya-i1 Medical staff to student ratio 67 5.642666667 750 2017-18
160 Attleboro Peter Thacher Elementary School 00160050 5-D-ii a-phya-i1 Medical staff to student ratio 216 4.848 750 2017-18
161 Somerville John F. Kennedy Elementary School 02740083 5-D-ii a-phya-i1 Medical staff to student ratio 228 4.784 750 2017-18
162 Somerville Winter Hill Community Innovation School 02740120 5-D-ii a-phya-i1 Medical staff to student ratio 229.5 4.776 750 2017-18
163 Somerville Benjamin G. Brown School 02740015 5-D-ii a-phya-i1 Medical staff to student ratio 231 4.768 750 2017-18
164 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 5-D-ii a-phya-i1 Medical staff to student ratio 292 4.442666667 750 2017-18
165 Attleboro Cyril K. Brennan Middle School 00160315 5-D-ii a-phya-i1 Medical staff to student ratio 297 4.416 750 2017-18
166 Somerville Michael E. Capuano Early Childhood Center 02740005 5-D-ii a-phya-i1 Medical staff to student ratio 314 4.325333333 750 2017-18
167 Somerville West Somerville Neighborhood School 02740115 5-D-ii a-phya-i1 Medical staff to student ratio 371 4.021333333 750 2017-18
168 Winchester Muraco Elementary School 03440040 5-D-ii a-phya-i1 Medical staff to student ratio 381 3.968 750 2017-18
169 Attleboro A. Irvin Studley Elementary School 00160001 5-D-ii a-phya-i1 Medical staff to student ratio 384 3.952 750 2017-18
170 Winchester Lincoln Elementary School 02480025 5-D-ii a-phya-i1 Medical staff to student ratio 403 3.850666667 750 2017-18
171 Revere Seacoast High School 02480520 5-D-ii a-phya-i1 Medical staff to student ratio 410 3.813333333 750 2017-18
172 Winchester Ambrose Elementary School 03440045 5-D-ii a-phya-i1 Medical staff to student ratio 421 3.754666667 750 2017-18
173 Attleboro Thomas Willett Elementary School 00160035 5-D-ii a-phya-i1 Medical staff to student ratio 429 3.712 750 2017-18
174 Somerville Arthur D. Healey School 02740075 5-D-ii a-phya-i1 Medical staff to student ratio 451 3.594666667 750 2017-18
175 Winchester Vinson-Owen Elementary School 03440025 5-D-ii a-phya-i1 Medical staff to student ratio 455 3.573333333 750 2017-18
176 Attleboro Hill-Roberts Elementary School 00160045 5-D-ii a-phya-i1 Medical staff to student ratio 461 3.541333333 750 2017-18
177 Revere Beachmont Elementary School 02480013 5-D-ii a-phya-i1 Medical staff to student ratio 467.5 3.506666667 750 2017-18
178 Revere Paul Revere Elementary School 02480050 5-D-ii a-phya-i1 Medical staff to student ratio 472 3.482666667 750 2017-18
179 Attleboro Hyman Fine Elementary School 00160040 5-D-ii a-phya-i1 Medical staff to student ratio 477 3.456 750 2017-18
180 Winchester Lynch Elementary School 03440020 5-D-ii a-phya-i1 Medical staff to student ratio 480 3.44 750 2017-18
181 Revere Garfield Middle School 02480057 5-D-ii a-phya-i1 Medical staff to student ratio 538 3.130666667 750 2017-18
182 Winchester McCall Middle School 03440305 5-D-ii a-phya-i1 Medical staff to student ratio 555 3.04 750 2017-18
183 Attleboro Wamsutta Middle School 00160320 5-D-ii a-phya-i1 Medical staff to student ratio 569 2.965333333 750 2017-18
184 Revere Susan B. Anthony Middle School 02480305 5-D-ii a-phya-i1 Medical staff to student ratio 570 2.96 750 2017-18
185 Revere Rumney Marsh Academy 02480014 5-D-ii a-phya-i1 Medical staff to student ratio 597 2.816 750 2017-18
186 Somerville Somerville High School 02740505 5-D-ii a-phya-i1 Medical staff to student ratio 607.5 2.76 750 2017-18
187 Attleboro Attleboro High School 00160505 5-D-ii a-phya-i1 Medical staff to student ratio 646.9 2.549866667 750 2017-18
188 Revere Revere High School 02480505 5-D-ii a-phya-i1 Medical staff to student ratio 663.7 2.460266667 750 2017-18
189 Attleboro Robert J. Coelho Middle School 00160305 5-D-ii a-phya-i1 Medical staff to student ratio 678 2.384 750 2017-18
190 Winchester Winchester High School 03440505 5-D-ii a-phya-i1 Medical staff to student ratio 688 2.330666667 750 2017-18
191 Revere Lincoln Elementary School 02480025 5-D-ii a-phya-i1 Medical staff to student ratio 695 2.293333333 750 2017-18
192 Revere Hill Elementary School 02480035 5-D-ii a-phya-i1 Medical staff to student ratio 712 2.202666667 750 2017-18
193 Somerville East Somerville Community School 02740111 5-D-ii a-phya-i1 Medical staff to student ratio 720 2.16 750 2017-18
194 Revere Whelan Elementary School 02480003 5-D-ii a-phya-i1 Medical staff to student ratio 753 1.984 750 2017-18
195 Revere Garfield Elementary School 02480056 5-D-ii a-phya-i1 Medical staff to student ratio 768 1.904 750 2017-18
196 Revere Revere High School 02480505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 48 9.6 20 % 2017-18
197 Somerville Somerville High School 02740505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 60 12 20 % 2017-18
198 Somerville Somerville High School 02740505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 56.7 2.52 90 % 2017-18
199 Winchester Winchester High School 03440505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 89 3.955555556 90 % 2017-18
200 Revere Revere High School 02480505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 100 4.444444444 90 % 2017-18
201 Revere Seacoast High School 02480520 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 100 4.444444444 90 % 2017-18
202 Revere Revere High School 02480505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 16.3 2.173333333 30 % 2017-18
203 Somerville Somerville High School 02740505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 44 5.866666667 30 % 2017-18
204 Winchester Winchester High School 03440505 4-D-ii a-cppm-i1 Percent positive work placement (HS only) 10 0.4705882353 85 % 2017-18
205 Somerville Somerville High School 02740505 4-D-ii a-cppm-i1 Percent positive work placement (HS only) 98 4.611764706 85 % 2017-18
206 Somerville Michael E. Capuano Early Childhood Center 02740005 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 70 3.294117647 85 % 2017-18
207 Somerville Next Wave/Full Circle 02740510 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 72 3.388235294 85 % 2017-18
208 Somerville East Somerville Community School 02740111 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 73 3.435294118 85 % 2017-18
209 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 80 3.764705882 85 % 2017-18
210 Somerville John F. Kennedy Elementary School 02740083 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 80.5 3.788235294 85 % 2017-18
211 Somerville Somerville High School 02740505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 81.7 3.844705882 85 % 2017-18
212 Somerville Arthur D. Healey School 02740075 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 83.3 3.92 85 % 2017-18
213 Somerville West Somerville Neighborhood School 02740115 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 83.3 3.92 85 % 2017-18
214 Somerville Benjamin G. Brown School 02740015 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 85 4 85 % 2017-18
215 Revere Rumney Marsh Academy 02480014 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 90 4.235294118 85 % 2017-18
216 Somerville Winter Hill Community Innovation School 02740120 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 90.7 4.268235294 85 % 2017-18
217 Winchester McCall Middle School 03440305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 92.6 4.357647059 85 % 2017-18
218 Revere Seacoast High School 02480520 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 93 4.376470588 85 % 2017-18
219 Revere Revere High School 02480505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 95 4.470588235 85 % 2017-18
220 Revere Lincoln Elementary School 02480025 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 95 4.470588235 85 % 2017-18
221 Revere Garfield Middle School 02480057 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 % 2017-18
222 Winchester Ambrose Elementary School 03440045 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 % 2017-18
223 Attleboro Cyril K. Brennan Middle School 00160315 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97.2 4.574117647 85 % 2017-18
224 Attleboro Peter Thacher Elementary School 00160050 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 97.6 4.592941176 85 % 2017-18
225 Revere Susan B. Anthony Middle School 02480305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 98 4.611764706 85 % 2017-18
226 Revere Beachmont Elementary School 02480013 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 98 4.611764706 85 % 2017-18
227 Revere Paul Revere Elementary School 02480050 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 98 4.611764706 85 % 2017-18
228 Attleboro Attleboro High School 00160505 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
229 Attleboro Robert J. Coelho Middle School 00160305 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
230 Attleboro Wamsutta Middle School 00160320 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
231 Attleboro Hill-Roberts Elementary School 00160045 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
232 Attleboro Hyman Fine Elementary School 00160040 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
233 Attleboro A. Irvin Studley Elementary School 00160001 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
234 Attleboro Thomas Willett Elementary School 00160035 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
235 Revere Garfield Elementary School 02480056 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
236 Revere Hill Elementary School 02480035 1-B-i a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2017-18
237 Revere Whelan Elementary School 02480003 1-A-i a-exp-i2 Percentage teachers National Board certified 1.6 0.64 10 % 2017-18
238 Revere Rumney Marsh Academy 02480014 1-A-i a-exp-i2 Percentage teachers National Board certified 1.7 0.68 10 % 2017-18
239 Revere Garfield Middle School 02480057 1-A-i a-exp-i2 Percentage teachers National Board certified 2 0.8 10 % 2017-18
240 Revere Susan B. Anthony Middle School 02480305 1-A-i a-exp-i2 Percentage teachers National Board certified 2 0.8 10 % 2017-18
241 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i2 Percentage teachers National Board certified 2.2 0.88 10 % 2017-18
242 Revere Revere High School 02480505 1-A-i a-exp-i2 Percentage teachers National Board certified 2.7 1.08 10 % 2017-18
243 Revere Hill Elementary School 02480035 1-A-i a-exp-i2 Percentage teachers National Board certified 4 1.6 10 % 2017-18
244 Revere Seacoast High School 02480520 1-A-i a-exp-i2 Percentage teachers National Board certified 12 4.8 10 % 2017-18
245 Somerville Michael E. Capuano Early Childhood Center 02740005 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 95 4 95 % 2017-18
246 Somerville Arthur D. Healey School 02740075 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 97 4.084210526 95 % 2017-18
247 Revere Revere High School 02480505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 97.7 4.113684211 95 % 2017-18
248 Attleboro Attleboro High School 00160505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 97.8 4.117894737 95 % 2017-18
249 Somerville Somerville High School 02740505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 98 4.126315789 95 % 2017-18
250 Somerville Winter Hill Community Innovation School 02740120 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 98 4.126315789 95 % 2017-18
251 Somerville East Somerville Community School 02740111 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 98 4.126315789 95 % 2017-18
252 Attleboro Cyril K. Brennan Middle School 00160315 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
253 Attleboro Robert J. Coelho Middle School 00160305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
254 Attleboro Wamsutta Middle School 00160320 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
255 Attleboro Hill-Roberts Elementary School 00160045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
256 Attleboro Hyman Fine Elementary School 00160040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
257 Attleboro A. Irvin Studley Elementary School 00160001 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
258 Attleboro Peter Thacher Elementary School 00160050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
259 Attleboro Thomas Willett Elementary School 00160035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
260 Revere Seacoast High School 02480520 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
261 Revere Garfield Middle School 02480057 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
262 Revere Rumney Marsh Academy 02480014 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
263 Revere Susan B. Anthony Middle School 02480305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
264 Revere Whelan Elementary School 02480003 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
265 Revere Beachmont Elementary School 02480013 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
266 Revere Garfield Elementary School 02480056 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
267 Revere Hill Elementary School 02480035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
268 Revere Lincoln Elementary School 02480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
269 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
270 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
271 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
272 Somerville John F. Kennedy Elementary School 02740083 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
273 Somerville West Somerville Neighborhood School 02740115 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
274 Somerville Benjamin G. Brown School 02740015 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
275 Winchester Winchester High School 03440505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
276 Winchester McCall Middle School 03440305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
277 Winchester Ambrose Elementary School 03440045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
278 Winchester Lincoln Elementary School 02480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
279 Winchester Lynch Elementary School 03440020 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
280 Winchester Muraco Elementary School 03440040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
281 Winchester Vinson-Owen Elementary School 03440025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 4.210526316 95 % 2017-18
282 Revere Seacoast High School 02480520 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 43 2.15 80 % 2017-18
283 Revere Garfield Middle School 02480057 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 45 2.25 80 % 2017-18
284 Somerville Arthur D. Healey School 02740075 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 45.9 2.295 80 % 2017-18
285 Revere Rumney Marsh Academy 02480014 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 46 2.3 80 % 2017-18
286 Attleboro Hill-Roberts Elementary School 00160045 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 48.3 2.415 80 % 2017-18
287 Somerville East Somerville Community School 02740111 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 51 2.55 80 % 2017-18
288 Revere Paul Revere Elementary School 02480050 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 57 2.85 80 % 2017-18
289 Somerville John F. Kennedy Elementary School 02740083 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 59.4 2.97 80 % 2017-18
290 Revere Beachmont Elementary School 02480013 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 62.5 3.125 80 % 2017-18
291 Revere Susan B. Anthony Middle School 02480305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63 3.15 80 % 2017-18
292 Attleboro Attleboro High School 00160505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63.3 3.165 80 % 2017-18
293 Somerville Somerville High School 02740505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63.9 3.195 80 % 2017-18
294 Revere Lincoln Elementary School 02480025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 64 3.2 80 % 2017-18
295 Revere Revere High School 02480505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 66 3.3 80 % 2017-18
296 Somerville West Somerville Neighborhood School 02740115 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 69.6 3.48 80 % 2017-18
297 Somerville Next Wave/Full Circle 02740510 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 70 3.5 80 % 2017-18
298 Revere Whelan Elementary School 02480003 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 % 2017-18
299 Revere Garfield Elementary School 02480056 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 % 2017-18
300 Somerville Winter Hill Community Innovation School 02740120 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71.4 3.57 80 % 2017-18
301 Somerville Benjamin G. Brown School 02740015 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 72 3.6 80 % 2017-18
302 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 72.5 3.625 80 % 2017-18
303 Revere Hill Elementary School 02480035 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 73 3.65 80 % 2017-18
304 Attleboro Hyman Fine Elementary School 00160040 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 75 3.75 80 % 2017-18
305 Attleboro Peter Thacher Elementary School 00160050 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 75.6 3.78 80 % 2017-18
306 Attleboro Robert J. Coelho Middle School 00160305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 76.3 3.815 80 % 2017-18
307 Attleboro Cyril K. Brennan Middle School 00160315 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 77.8 3.89 80 % 2017-18
308 Attleboro Thomas Willett Elementary School 00160035 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 80 4 80 % 2017-18
309 Somerville Michael E. Capuano Early Childhood Center 02740005 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 82.6 4.13 80 % 2017-18
310 Attleboro A. Irvin Studley Elementary School 00160001 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 86.2 4.31 80 % 2017-18
311 Attleboro Wamsutta Middle School 00160320 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 91.2 4.56 80 % 2017-18
312 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i4 Student to art teacher ratio 134 4.928 500 2017-18
313 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i4 Student to art teacher ratio 164.9 4.6808 500 2017-18
314 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i4 Student to art teacher ratio 175.4 4.5968 500 2017-18
315 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i4 Student to art teacher ratio 187 4.504 500 2017-18
316 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i4 Student to art teacher ratio 189.7 4.4824 500 2017-18
317 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i4 Student to art teacher ratio 192 4.464 500 2017-18
318 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i4 Student to art teacher ratio 198 4.416 500 2017-18
319 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i4 Student to art teacher ratio 214.5 4.284 500 2017-18
320 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i4 Student to art teacher ratio 226 4.192 500 2017-18
321 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i4 Student to art teacher ratio 230.5 4.156 500 2017-18
322 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i4 Student to art teacher ratio 236 4.112 500 2017-18
323 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i4 Student to art teacher ratio 238.5 4.092 500 2017-18
324 Revere Garfield Middle School 02480057 3-A-ii a-sust-i4 Student to art teacher ratio 269 3.848 500 2017-18
325 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i4 Student to art teacher ratio 298.5 3.612 500 2017-18
326 Somerville Somerville High School 02740505 3-A-ii a-sust-i4 Student to art teacher ratio 303.8 3.5696 500 2017-18
327 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i4 Student to art teacher ratio 324 3.408 500 2017-18
328 Winchester Winchester High School 03440505 3-A-ii a-sust-i4 Student to art teacher ratio 344 3.248 500 2017-18
329 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i4 Student to art teacher ratio 347.5 3.22 500 2017-18
330 Revere Hill Elementary School 02480035 3-A-ii a-sust-i4 Student to art teacher ratio 356 3.152 500 2017-18
331 Winchester McCall Middle School 03440305 3-A-ii a-sust-i4 Student to art teacher ratio 370 3.04 500 2017-18
332 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i4 Student to art teacher ratio 376.5 2.988 500 2017-18
333 Winchester Muraco Elementary School 03440040 3-A-ii a-sust-i4 Student to art teacher ratio 381 2.952 500 2017-18
334 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i4 Student to art teacher ratio 384 2.928 500 2017-18
335 Winchester Lincoln Elementary School 02480025 3-A-ii a-sust-i4 Student to art teacher ratio 403 2.776 500 2017-18
336 Winchester Ambrose Elementary School 03440045 3-A-ii a-sust-i4 Student to art teacher ratio 421 2.632 500 2017-18
337 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i4 Student to art teacher ratio 451 2.392 500 2017-18
338 Winchester Vinson-Owen Elementary School 03440025 3-A-ii a-sust-i4 Student to art teacher ratio 455 2.36 500 2017-18
339 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i4 Student to art teacher ratio 459 2.328 500 2017-18
340 Revere Revere High School 02480505 3-A-ii a-sust-i4 Student to art teacher ratio 459.5 2.324 500 2017-18
341 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i4 Student to art teacher ratio 462 2.304 500 2017-18
342 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i4 Student to art teacher ratio 480 2.16 500 2017-18
343 Winchester Lynch Elementary School 03440020 3-A-ii a-sust-i4 Student to art teacher ratio 480 2.16 500 2017-18
344 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i4 Student to art teacher ratio 486.7 2.1064 500 2017-18
345 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i4 Student to art teacher ratio 494.7 2.0424 500 2017-18
346 Somerville Michael E. Capuano Early Childhood Center 02740005 3-A-ii a-sust-i4 Student to art teacher ratio 628 0.976 500 2017-18
347 Revere Seacoast High School 02480520 3-A-ii a-sust-i4 Student to art teacher ratio 820 -0.56 500 2017-18
348 Revere Seacoast High School 02480520 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 5.5 5.614035088 57 2017-18
349 Somerville Somerville High School 02740505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 14.6 4.975438596 57 2017-18
350 Revere Revere High School 02480505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 36.9 3.410526316 57 2017-18
351 Attleboro Attleboro High School 00160505 3-B-iII a-cocu-i1 Student to co-curricular activities ratio (HS only) 56.1 2.063157895 57 2017-18
352 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i1 Student to guidance counselor ratio 22.3 5.6432 250 2017-18
353 Revere Seacoast High School 02480520 3-A-ii a-sust-i1 Student to guidance counselor ratio 27.3 5.5632 250 2017-18
354 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i1 Student to guidance counselor ratio 90.2 4.5568 250 2017-18
355 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i1 Student to guidance counselor ratio 92.8 4.5152 250 2017-18
356 Somerville Somerville High School 02740505 3-A-ii a-sust-i1 Student to guidance counselor ratio 121.5 4.056 250 2017-18
357 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i1 Student to guidance counselor ratio 130.9 3.9056 250 2017-18
358 Winchester McCall Middle School 03440305 3-A-ii a-sust-i1 Student to guidance counselor ratio 139 3.776 250 2017-18
359 Revere Revere High School 02480505 3-A-ii a-sust-i1 Student to guidance counselor ratio 142.2 3.7248 250 2017-18
360 Winchester Winchester High School 03440505 3-A-ii a-sust-i1 Student to guidance counselor ratio 153 3.552 250 2017-18
361 Revere Garfield Middle School 02480057 3-A-ii a-sust-i1 Student to guidance counselor ratio 153.7 3.5408 250 2017-18
362 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i1 Student to guidance counselor ratio 190 2.96 250 2017-18
363 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i1 Student to guidance counselor ratio 192 2.928 250 2017-18
364 Somerville Michael E. Capuano Early Childhood Center 02740005 3-A-ii a-sust-i1 Student to guidance counselor ratio 196.3 2.8592 250 2017-18
365 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i1 Student to guidance counselor ratio 199 2.816 250 2017-18
366 Winchester Ambrose Elementary School 03440045 3-A-ii a-sust-i1 Student to guidance counselor ratio 210 2.64 250 2017-18
367 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i1 Student to guidance counselor ratio 226 2.384 250 2017-18
368 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i1 Student to guidance counselor ratio 229.5 2.328 250 2017-18
369 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i1 Student to guidance counselor ratio 231 2.304 250 2017-18
370 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i1 Student to guidance counselor ratio 292 1.328 250 2017-18
371 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i1 Student to guidance counselor ratio 307.3 1.0832 250 2017-18
372 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i1 Student to guidance counselor ratio 318 0.912 250 2017-18
373 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i1 Student to guidance counselor ratio 324 0.816 250 2017-18
374 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i1 Student to guidance counselor ratio 373.8 0.0192 250 2017-18
375 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i1 Student to guidance counselor ratio 374 0.016 250 2017-18
376 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i1 Student to guidance counselor ratio 376.5 -0.024 250 2017-18
377 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i1 Student to guidance counselor ratio 379.3 -0.0688 250 2017-18
378 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i1 Student to guidance counselor ratio 384 -0.144 250 2017-18
379 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i1 Student to guidance counselor ratio 429 -0.864 250 2017-18
380 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i1 Student to guidance counselor ratio 472 -1.552 250 2017-18
381 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i1 Student to guidance counselor ratio 594 -3.504 250 2017-18
382 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i1 Student to guidance counselor ratio 695 -5.12 250 2017-18
383 Revere Hill Elementary School 02480035 3-A-ii a-sust-i1 Student to guidance counselor ratio 712 -5.392 250 2017-18
384 Somerville Michael E. Capuano Early Childhood Center 02740005 3-A-ii a-sust-i3 Student to instructional support staff ratio 8.3 5.235023041 43.4 2017-18
385 Somerville Winter Hill Community Innovation School 02740120 3-A-ii a-sust-i3 Student to instructional support staff ratio 21.9 3.98156682 43.4 2017-18
386 Revere Seacoast High School 02480520 3-A-ii a-sust-i3 Student to instructional support staff ratio 27.3 3.483870968 43.4 2017-18
387 Somerville Dr. Albert F. Argenziano School at Lincoln Park 02740087 3-A-ii a-sust-i3 Student to instructional support staff ratio 36.5 2.6359447 43.4 2017-18
388 Revere Garfield Elementary School 02480056 3-A-ii a-sust-i3 Student to instructional support staff ratio 40.4 2.276497696 43.4 2017-18
389 Revere Beachmont Elementary School 02480013 3-A-ii a-sust-i3 Student to instructional support staff ratio 41.6 2.165898618 43.4 2017-18
390 Revere Paul Revere Elementary School 02480050 3-A-ii a-sust-i3 Student to instructional support staff ratio 47.2 1.649769585 43.4 2017-18
391 Somerville East Somerville Community School 02740111 3-A-ii a-sust-i3 Student to instructional support staff ratio 48 1.576036866 43.4 2017-18
392 Revere Whelan Elementary School 02480003 3-A-ii a-sust-i3 Student to instructional support staff ratio 50.2 1.373271889 43.4 2017-18
393 Revere Rumney Marsh Academy 02480014 3-A-ii a-sust-i3 Student to instructional support staff ratio 54.3 0.9953917051 43.4 2017-18
394 Somerville West Somerville Neighborhood School 02740115 3-A-ii a-sust-i3 Student to instructional support staff ratio 61.8 0.3041474654 43.4 2017-18
395 Revere Lincoln Elementary School 02480025 3-A-ii a-sust-i3 Student to instructional support staff ratio 63.2 0.1751152074 43.4 2017-18
396 Revere Hill Elementary School 02480035 3-A-ii a-sust-i3 Student to instructional support staff ratio 64.7 0.03686635945 43.4 2017-18
397 Somerville Next Wave/Full Circle 02740510 3-A-ii a-sust-i3 Student to instructional support staff ratio 67 -0.1751152074 43.4 2017-18
398 Revere Garfield Middle School 02480057 3-A-ii a-sust-i3 Student to instructional support staff ratio 67.3 -0.202764977 43.4 2017-18
399 Revere Susan B. Anthony Middle School 02480305 3-A-ii a-sust-i3 Student to instructional support staff ratio 71.3 -0.5714285714 43.4 2017-18
400 Somerville Arthur D. Healey School 02740075 3-A-ii a-sust-i3 Student to instructional support staff ratio 90.2 -2.313364055 43.4 2017-18
401 Revere Revere High School 02480505 3-A-ii a-sust-i3 Student to instructional support staff ratio 99.6 -3.179723502 43.4 2017-18
402 Somerville Benjamin G. Brown School 02740015 3-A-ii a-sust-i3 Student to instructional support staff ratio 115.5 -4.64516129 43.4 2017-18
403 Attleboro Attleboro High School 00160505 3-A-ii a-sust-i3 Student to instructional support staff ratio 128.4 -5.834101382 43.4 2017-18
404 Somerville Somerville High School 02740505 3-A-ii a-sust-i3 Student to instructional support staff ratio 151.9 -8 43.4 2017-18
405 Attleboro A. Irvin Studley Elementary School 00160001 3-A-ii a-sust-i3 Student to instructional support staff ratio 174.5 -10.08294931 43.4 2017-18
406 Attleboro Robert J. Coelho Middle School 00160305 3-A-ii a-sust-i3 Student to instructional support staff ratio 216.6 -13.96313364 43.4 2017-18
407 Attleboro Peter Thacher Elementary School 00160050 3-A-ii a-sust-i3 Student to instructional support staff ratio 249.2 -16.96774194 43.4 2017-18
408 Attleboro Hill-Roberts Elementary School 00160045 3-A-ii a-sust-i3 Student to instructional support staff ratio 271.2 -18.99539171 43.4 2017-18
409 Attleboro Hyman Fine Elementary School 00160040 3-A-ii a-sust-i3 Student to instructional support staff ratio 280.6 -19.86175115 43.4 2017-18
410 Attleboro Wamsutta Middle School 00160320 3-A-ii a-sust-i3 Student to instructional support staff ratio 347 -25.98156682 43.4 2017-18
411 Attleboro Thomas Willett Elementary School 00160035 3-A-ii a-sust-i3 Student to instructional support staff ratio 357.5 -26.94930876 43.4 2017-18
412 Attleboro Cyril K. Brennan Middle School 00160315 3-A-ii a-sust-i3 Student to instructional support staff ratio 525.7 -42.4516129 43.4 2017-18
413 Somerville Next Wave/Full Circle 02740510 3-B-i a-curv-i6 Student to number of electives ratio (completely free choice) (HS only) 1.2 3.6 2 2017-18
414 Revere Seacoast High School 02480520 3-B-i a-curv-i6 Student to number of electives ratio (completely free choice) (HS only) 6.8 -7.6 2 2017-18
415 Attleboro Attleboro High School 00160505 3-B-i a-curv-i6 Student to number of electives ratio (completely free choice) (HS only) 9.6 -13.2 2 2017-18
416 Revere Revere High School 02480505 3-B-i a-curv-i6 Student to number of electives ratio (completely free choice) (HS only) 17.2 -28.4 2 2017-18
417 Somerville Somerville High School 02740505 3-B-i a-curv-i6 Student to number of electives ratio (completely free choice) (HS only) 19.9 -33.8 2 2017-18

View file

@ -1,316 +0,0 @@
District,School,DESE ID,Category,Item ID,NonLikert Title,NL_Value,LikertScore,Benchmark,Data Type,Academic Year
Attleboro,Attleboro High School,160505,2-C-i,a-vale-i1,Chronic absence rate,19.7,3.03,10,%,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,2-C-i,a-vale-i1,Chronic absence rate,9.6,4.04,10,%,2018-19
Attleboro,Robert J. Coelho Middle School,160305,2-C-i,a-vale-i1,Chronic absence rate,11,3.9,10,%,2018-19
Attleboro,Hyman Fine Elementary School,160040,2-C-i,a-vale-i1,Chronic absence rate,3.4,4.66,10,%,2018-19
Attleboro,Hill-Roberts Elementary School,160045,2-C-i,a-vale-i1,Chronic absence rate,8.2,4.18,10,%,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,2-C-i,a-vale-i1,Chronic absence rate,8.1,4.19,10,%,2018-19
Attleboro,Peter Thacher Elementary School,160050,2-C-i,a-vale-i1,Chronic absence rate,13,3.7,10,%,2018-19
Attleboro,Wamsutta Middle School,160320,2-C-i,a-vale-i1,Chronic absence rate,8.7,4.13,10,%,2018-19
Attleboro,Thomas Willett Elementary School,160035,2-C-i,a-vale-i1,Chronic absence rate,6,4.4,10,%,2018-19
Milford,Brookside Elementary School,1850065,2-C-i,a-vale-i1,Chronic absence rate,12.1,3.79,10,%,2018-19
Milford,Memorial Elementary School,1850010,2-C-i,a-vale-i1,Chronic absence rate,11.5,3.85,10,%,2018-19
Milford,Milford High School,1850505,2-C-i,a-vale-i1,Chronic absence rate,21.9,2.81,10,%,2018-19
Milford,Shining Star Early Childhood Center,1850075,2-C-i,a-vale-i1,Chronic absence rate,30.5,1.95,10,%,2018-19
Milford,Stacy Middle School,1850305,2-C-i,a-vale-i1,Chronic absence rate,12.7,3.73,10,%,2018-19
Milford,Woodland Elementary School,1850090,2-C-i,a-vale-i1,Chronic absence rate,6.8,4.32,10,%,2018-19
Revere,Beachmont Elementary School,2480013,2-C-i,a-vale-i1,Chronic absence rate,4.2,4.58,10,%,2018-19
Revere,Garfield Elementary School,2480056,2-C-i,a-vale-i1,Chronic absence rate,9.3,4.07,10,%,2018-19
Revere,Garfield Middle School,2480057,2-C-i,a-vale-i1,Chronic absence rate,8.5,4.15,10,%,2018-19
Revere,Hill Elementary School,2480035,2-C-i,a-vale-i1,Chronic absence rate,3.3,4.67,10,%,2018-19
Revere,Lincoln Elementary School,2480025,2-C-i,a-vale-i1,Chronic absence rate,7.9,4.21,10,%,2018-19
Revere,Paul Revere Elementary School,2480050,2-C-i,a-vale-i1,Chronic absence rate,10.1,3.99,10,%,2018-19
Revere,Revere High School,2480505,2-C-i,a-vale-i1,Chronic absence rate,13.8,3.62,10,%,2018-19
Revere,Rumney Marsh Academy,2480014,2-C-i,a-vale-i1,Chronic absence rate,5,4.5,10,%,2018-19
Revere,SeaCoast High School,2480520,2-C-i,a-vale-i1,Chronic absence rate,76.9,0,10,%,2018-19
Revere,Susan B. Anthony Middle School,2480305,2-C-i,a-vale-i1,Chronic absence rate,8.1,4.19,10,%,2018-19
Revere,Whelan Elementary School,2480003,2-C-i,a-vale-i1,Chronic absence rate,5.9,4.41,10,%,2018-19
Winchester,Ambrose Elementary School,3440045,2-C-i,a-vale-i1,Chronic absence rate,3.8,4.62,10,%,2018-19
Winchester,Lincoln Elementary School,2480025,2-C-i,a-vale-i1,Chronic absence rate,1.6,4.84,10,%,2018-19
Winchester,Lynch Elementary School,3440020,2-C-i,a-vale-i1,Chronic absence rate,4,4.6,10,%,2018-19
Winchester,McCall Middle School,3440305,2-C-i,a-vale-i1,Chronic absence rate,4.2,4.58,10,%,2018-19
Winchester,Muraco Elementary School,3440040,2-C-i,a-vale-i1,Chronic absence rate,3.1,4.69,10,%,2018-19
Winchester,Vinson-Owen Elementary School,3440025,2-C-i,a-vale-i1,Chronic absence rate,4.2,4.58,10,%,2018-19
Winchester,Winchester High School,3440505,2-C-i,a-vale-i1,Chronic absence rate,7.2,4.28,10,%,2018-19
Attleboro,Attleboro High School,160505,3-A-i,a-reso-i1,Average class size,20.6,3.94,20,,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,3-A-i,a-reso-i1,Average class size,24.4,3.56,20,,2018-19
Attleboro,Robert J. Coelho Middle School,160305,3-A-i,a-reso-i1,Average class size,27,3.3,20,,2018-19
Attleboro,Hyman Fine Elementary School,160040,3-A-i,a-reso-i1,Average class size,25.1,3.49,20,,2018-19
Attleboro,Hill-Roberts Elementary School,160045,3-A-i,a-reso-i1,Average class size,24,3.6,20,,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,3-A-i,a-reso-i1,Average class size,13.7,4.63,20,,2018-19
Attleboro,Peter Thacher Elementary School,160050,3-A-i,a-reso-i1,Average class size,11.8,4.82,20,,2018-19
Attleboro,Wamsutta Middle School,160320,3-A-i,a-reso-i1,Average class size,25.1,3.49,20,,2018-19
Attleboro,Thomas Willett Elementary School,160035,3-A-i,a-reso-i1,Average class size,13.9,4.61,20,,2018-19
Milford,Brookside Elementary School,1850065,3-A-i,a-reso-i1,Average class size,18.8,4.12,20,,2018-19
Milford,Memorial Elementary School,1850010,3-A-i,a-reso-i1,Average class size,20.3,3.97,20,,2018-19
Milford,Milford High School,1850505,3-A-i,a-reso-i1,Average class size,18.5,4.15,20,,2018-19
Milford,Shining Star Early Childhood Center,1850075,3-A-i,a-reso-i1,Average class size,16,4.4,20,,2018-19
Milford,Stacy Middle School,1850305,3-A-i,a-reso-i1,Average class size,22,3.8,20,,2018-19
Milford,Woodland Elementary School,1850090,3-A-i,a-reso-i1,Average class size,22.5,3.75,20,,2018-19
Revere,Beachmont Elementary School,2480013,3-A-i,a-reso-i1,Average class size,17,4.3,20,,2018-19
Revere,Garfield Elementary School,2480056,3-A-i,a-reso-i1,Average class size,19,4.1,20,,2018-19
Revere,Garfield Middle School,2480057,3-A-i,a-reso-i1,Average class size,21,3.9,20,,2018-19
Revere,Hill Elementary School,2480035,3-A-i,a-reso-i1,Average class size,19,4.1,20,,2018-19
Revere,Lincoln Elementary School,2480025,3-A-i,a-reso-i1,Average class size,19,4.1,20,,2018-19
Revere,Paul Revere Elementary School,2480050,3-A-i,a-reso-i1,Average class size,21,3.9,20,,2018-19
Revere,Revere High School,2480505,3-A-i,a-reso-i1,Average class size,16.8,4.32,20,,2018-19
Revere,Rumney Marsh Academy,2480014,3-A-i,a-reso-i1,Average class size,21,3.9,20,,2018-19
Revere,SeaCoast High School,2480520,3-A-i,a-reso-i1,Average class size,7,5,20,,2018-19
Revere,Susan B. Anthony Middle School,2480305,3-A-i,a-reso-i1,Average class size,23,3.7,20,,2018-19
Revere,Whelan Elementary School,2480003,3-A-i,a-reso-i1,Average class size,24,3.6,20,,2018-19
Winchester,Ambrose Elementary School,3440045,3-A-i,a-reso-i1,Average class size,19.7,4.03,20,,2018-19
Winchester,Lincoln Elementary School,2480025,3-A-i,a-reso-i1,Average class size,19.2,4.08,20,,2018-19
Winchester,Lynch Elementary School,3440020,3-A-i,a-reso-i1,Average class size,19.4,4.06,20,,2018-19
Winchester,McCall Middle School,3440305,3-A-i,a-reso-i1,Average class size,22.6,3.74,20,,2018-19
Winchester,Muraco Elementary School,3440040,3-A-i,a-reso-i1,Average class size,17.9,4.21,20,,2018-19
Winchester,Vinson-Owen Elementary School,3440025,3-A-i,a-reso-i1,Average class size,20.4,3.96,20,,2018-19
Winchester,Winchester High School,3440505,3-A-i,a-reso-i1,Average class size,17,4.3,20,,2018-19
Attleboro,Attleboro High School,160505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),53,5,20,%,2018-19
Milford,Milford High School,1850505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),58.5,5,20,%,2018-19
Revere,Revere High School,2480505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),50,5,20,%,2018-19
Winchester,Winchester High School,3440505,3-B-i,a-curv-i3,Percent AP test takers scoring 3 or higher (HS only),90.5,5,20,%,2018-19
Attleboro,Attleboro High School,160505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),21.82130584,2.909507445,30,%,2018-19
Milford,Milford High School,1850505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),45.23,5,30,%,2018-19
Revere,Revere High School,2480505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),18,2.4,30,%,2018-19
Revere,SeaCoast High School,2480520,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),0,0,30,%,2018-19
Winchester,Winchester High School,3440505,3-B-i,a-curv-i2,Percent juniors and seniors enrolled in one AP (HS only),23,3.066666667,30,%,2018-19
Attleboro,Attleboro High School,160505,3-B-i,a-cure-i1,Percent students of color enrolled in advanced coursework,32.9,3.615384615,36.4,%,2018-19
Revere,Revere High School,2480505,3-B-i,a-cure-i1,Percent students of color enrolled in advanced coursework,12.3,1.351648352,36.4,%,2018-19
Revere,SeaCoast High School,2480520,3-B-i,a-cure-i1,Percent students of color enrolled in advanced coursework,0,0,36.4,%,2018-19
Winchester,Winchester High School,3440505,3-B-i,a-cure-i1,Percent students of color enrolled in advanced coursework,31,3.406593407,36.4,%,2018-19
Attleboro,Attleboro High School,160505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,15.28896673,1.409121358,43.4,,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,3-A-ii,a-sust-i3,Student to instructional support staff ratio,16.97142857,1.564186965,43.4,,2018-19
Attleboro,Robert J. Coelho Middle School,160305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,19.14705882,1.764705882,43.4,,2018-19
Attleboro,Hyman Fine Elementary School,160040,3-A-ii,a-sust-i3,Student to instructional support staff ratio,16.46428571,1.517445688,43.4,,2018-19
Attleboro,Hill-Roberts Elementary School,160045,3-A-ii,a-sust-i3,Student to instructional support staff ratio,15.65517241,1.442873033,43.4,,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,3-A-ii,a-sust-i3,Student to instructional support staff ratio,13.65517241,1.258541236,43.4,,2018-19
Attleboro,Peter Thacher Elementary School,160050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,11.80555556,1.088069637,43.4,,2018-19
Attleboro,Wamsutta Middle School,160320,3-A-ii,a-sust-i3,Student to instructional support staff ratio,17,1.566820276,43.4,,2018-19
Attleboro,Thomas Willett Elementary School,160035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,13.93103448,1.283966312,43.4,,2018-19
Milford,Brookside Elementary School,1850065,3-A-ii,a-sust-i3,Student to instructional support staff ratio,14.1506647,1.304208728,43.4,,2018-19
Milford,Memorial Elementary School,1850010,3-A-ii,a-sust-i3,Student to instructional support staff ratio,16.60311958,1.530241436,43.4,,2018-19
Milford,Milford High School,1850505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,46.38888889,4.27547363,43.4,,2018-19
Milford,Shining Star Early Childhood Center,1850075,3-A-ii,a-sust-i3,Student to instructional support staff ratio,5.482388974,0.505289306,43.4,,2018-19
Milford,Stacy Middle School,1850305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,32.74691358,3.018148717,43.4,,2018-19
Milford,Woodland Elementary School,1850090,3-A-ii,a-sust-i3,Student to instructional support staff ratio,22.85714286,2.106649112,43.4,,2018-19
Revere,Beachmont Elementary School,2480013,3-A-ii,a-sust-i3,Student to instructional support staff ratio,38,3.502304147,43.4,,2018-19
Revere,Garfield Elementary School,2480056,3-A-ii,a-sust-i3,Student to instructional support staff ratio,39.57894737,3.647829251,43.4,,2018-19
Revere,Garfield Middle School,2480057,3-A-ii,a-sust-i3,Student to instructional support staff ratio,71.75,5,43.4,,2018-19
Revere,Hill Elementary School,2480035,3-A-ii,a-sust-i3,Student to instructional support staff ratio,65.81818182,5,43.4,,2018-19
Revere,Lincoln Elementary School,2480025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,59,5,43.4,,2018-19
Revere,Paul Revere Elementary School,2480050,3-A-ii,a-sust-i3,Student to instructional support staff ratio,46.3,4.267281106,43.4,,2018-19
Revere,Revere High School,2480505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,75.25925926,5,43.4,,2018-19
Revere,Rumney Marsh Academy,2480014,3-A-ii,a-sust-i3,Student to instructional support staff ratio,56.36363636,5,43.4,,2018-19
Revere,SeaCoast High School,2480520,3-A-ii,a-sust-i3,Student to instructional support staff ratio,30.33333333,2.795698924,43.4,,2018-19
Revere,Susan B. Anthony Middle School,2480305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,76.875,5,43.4,,2018-19
Revere,Whelan Elementary School,2480003,3-A-ii,a-sust-i3,Student to instructional support staff ratio,23.63636364,2.178466695,43.4,,2018-19
Winchester,Ambrose Elementary School,3440045,3-A-ii,a-sust-i3,Student to instructional support staff ratio,65.66666667,5,43.4,,2018-19
Winchester,Lincoln Elementary School,2480025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,86.2,5,43.4,,2018-19
Winchester,Lynch Elementary School,3440020,3-A-ii,a-sust-i3,Student to instructional support staff ratio,60.875,5,43.4,,2018-19
Winchester,McCall Middle School,3440305,3-A-ii,a-sust-i3,Student to instructional support staff ratio,276,5,43.4,,2018-19
Winchester,Muraco Elementary School,3440040,3-A-ii,a-sust-i3,Student to instructional support staff ratio,94,5,43.4,,2018-19
Winchester,Vinson-Owen Elementary School,3440025,3-A-ii,a-sust-i3,Student to instructional support staff ratio,83.4,5,43.4,,2018-19
Winchester,Winchester High School,3440505,3-A-ii,a-sust-i3,Student to instructional support staff ratio,135.9,5,43.4,,2018-19
Milford,Milford High School,1850505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),69,4.207317073,65.6,%,2018-19
Revere,Revere High School,2480505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),69,4.207317073,65.6,%,2018-19
Revere,SeaCoast High School,2480520,4-D-i,a-cgpr-i1,College enrollment rate (HS only),31.9,1.945121951,65.6,%,2018-19
Winchester,Winchester High School,3440505,4-D-i,a-cgpr-i1,College enrollment rate (HS only),90.5,5,65.6,%,2018-19
Milford,Milford High School,1850505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),91.4,4.57,80,%,2018-19
Revere,Revere High School,2480505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),92.8,4.64,80,%,2018-19
Revere,SeaCoast High School,2480520,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),29.5,1.475,80,%,2018-19
Winchester,Winchester High School,3440505,4-B-ii,a-degr-i1,4-year on-time graduation rate (HS only),94.9,4.745,80,%,2018-19
Milford,Brookside Elementary School,1850065,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,90,4.5,80,%,2018-19
Milford,Memorial Elementary School,1850010,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,92,4.6,80,%,2018-19
Milford,Milford High School,1850505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,82,4.1,80,%,2018-19
Milford,Shining Star Early Childhood Center,1850075,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,80,4,80,%,2018-19
Milford,Stacy Middle School,1850305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,89,4.45,80,%,2018-19
Milford,Woodland Elementary School,1850090,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,85,4.25,80,%,2018-19
Revere,Beachmont Elementary School,2480013,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,75,3.75,80,%,2018-19
Revere,Garfield Middle School,2480057,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,47,2.35,80,%,2018-19
Revere,Hill Elementary School,2480035,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,76,3.8,80,%,2018-19
Revere,Lincoln Elementary School,2480025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,68,3.4,80,%,2018-19
Revere,Paul Revere Elementary School,2480050,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,63,3.15,80,%,2018-19
Revere,Revere High School,2480505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,61,3.05,80,%,2018-19
Revere,Rumney Marsh Academy,2480014,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,49,2.45,80,%,2018-19
Revere,SeaCoast High School,2480520,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,0.41,0.0205,80,%,2018-19
Revere,Susan B. Anthony Middle School,2480305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,67,3.35,80,%,2018-19
Revere,Whelan Elementary School,2480003,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,82,4.1,80,%,2018-19
Winchester,Ambrose Elementary School,3440045,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,82,4.1,80,%,2018-19
Winchester,Lincoln Elementary School,2480025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,66.6,3.33,80,%,2018-19
Winchester,Lynch Elementary School,3440020,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,60,3,80,%,2018-19
Winchester,McCall Middle School,3440305,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,71,3.55,80,%,2018-19
Winchester,Muraco Elementary School,3440040,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,69,3.45,80,%,2018-19
Winchester,Vinson-Owen Elementary School,3440025,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,84,4.2,80,%,2018-19
Winchester,Winchester High School,3440505,1-A-i,a-exp-i1,Percentage teachers with 5+ years of experience,92,4.6,80,%,2018-19
Milford,Milford High School,1850505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),93.3,4.390588235,85,%,2018-19
Revere,Revere High School,2480505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),90.4,4.254117647,85,%,2018-19
Revere,SeaCoast High School,2480520,4-B-ii,a-degr-i3,5-year graduation rate (HS only),27.8,1.308235294,85,%,2018-19
Winchester,Winchester High School,3440505,4-B-ii,a-degr-i3,5-year graduation rate (HS only),99.3,4.672941176,85,%,2018-19
Attleboro,Attleboro High School,160505,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),90.6,4.263529412,85,%,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2018-19
Attleboro,Hyman Fine Elementary School,160040,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),92.9,4.371764706,85,%,2018-19
Attleboro,Hill-Roberts Elementary School,160045,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),89.3,4.202352941,85,%,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),93.5,4.4,85,%,2018-19
Attleboro,Peter Thacher Elementary School,160050,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),83.3,3.92,85,%,2018-19
Attleboro,Wamsutta Middle School,160320,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),91.2,4.291764706,85,%,2018-19
Attleboro,Thomas Willett Elementary School,160035,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2018-19
Milford,Brookside Elementary School,1850065,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),97.5,4.588235294,85,%,2018-19
Milford,Memorial Elementary School,1850010,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),97.5,4.588235294,85,%,2018-19
Milford,Milford High School,1850505,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),96.8,4.555294118,85,%,2018-19
Milford,Shining Star Early Childhood Center,1850075,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2018-19
Milford,Stacy Middle School,1850305,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),96.2,4.527058824,85,%,2018-19
Milford,Woodland Elementary School,1850090,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),94.8,4.461176471,85,%,2018-19
Revere,Beachmont Elementary School,2480013,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2018-19
Revere,Garfield Middle School,2480057,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,%,2018-19
Revere,Hill Elementary School,2480035,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),100,4.705882353,85,%,2018-19
Revere,Lincoln Elementary School,2480025,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),96,4.517647059,85,%,2018-19
Revere,Paul Revere Elementary School,2480050,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,%,2018-19
Revere,Revere High School,2480505,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),92,4.329411765,85,%,2018-19
Revere,Rumney Marsh Academy,2480014,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),85,4,85,%,2018-19
Revere,SeaCoast High School,2480520,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),90,4.235294118,85,%,2018-19
Revere,Susan B. Anthony Middle School,2480305,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),85,4,85,%,2018-19
Revere,Whelan Elementary School,2480003,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),97,4.564705882,85,%,2018-19
Winchester,Ambrose Elementary School,3440045,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),92.3,4.343529412,85,%,2018-19
Winchester,Lincoln Elementary School,2480025,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),84.8,3.990588235,85,%,2018-19
Winchester,Lynch Elementary School,3440020,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),82.4,3.877647059,85,%,2018-19
Winchester,McCall Middle School,3440305,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),79.3,3.731764706,85,%,2018-19
Winchester,Muraco Elementary School,3440040,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),88.6,4.169411765,85,%,2018-19
Winchester,Vinson-Owen Elementary School,3440025,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),91.9,4.324705882,85,%,2018-19
Winchester,Winchester High School,3440505,1-A-iii,a-pcom-i1,Percent teacher returning (excluding retirement),90.3,4.249411765,85,%,2018-19
Attleboro,Attleboro High School,160505,2-C-i,a-vale-i2,Average daily attendance,93.2,4.142222222,90,%,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,2-C-i,a-vale-i2,Average daily attendance,95.1,4.226666667,90,%,2018-19
Attleboro,Robert J. Coelho Middle School,160305,2-C-i,a-vale-i2,Average daily attendance,95.7,4.253333333,90,%,2018-19
Attleboro,Hyman Fine Elementary School,160040,2-C-i,a-vale-i2,Average daily attendance,96.2,4.275555556,90,%,2018-19
Attleboro,Hill-Roberts Elementary School,160045,2-C-i,a-vale-i2,Average daily attendance,95.4,4.24,90,%,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,2-C-i,a-vale-i2,Average daily attendance,95.5,4.244444444,90,%,2018-19
Attleboro,Peter Thacher Elementary School,160050,2-C-i,a-vale-i2,Average daily attendance,94.9,4.217777778,90,%,2018-19
Attleboro,Wamsutta Middle School,160320,2-C-i,a-vale-i2,Average daily attendance,95.7,4.253333333,90,%,2018-19
Attleboro,Thomas Willett Elementary School,160035,2-C-i,a-vale-i2,Average daily attendance,95.4,4.24,90,%,2018-19
Milford,Brookside Elementary School,1850065,2-C-i,a-vale-i2,Average daily attendance,94.9,4.217777778,90,%,2018-19
Milford,Memorial Elementary School,1850010,2-C-i,a-vale-i2,Average daily attendance,94.9,4.217777778,90,%,2018-19
Milford,Milford High School,1850505,2-C-i,a-vale-i2,Average daily attendance,92.9,4.128888889,90,%,2018-19
Milford,Shining Star Early Childhood Center,1850075,2-C-i,a-vale-i2,Average daily attendance,91.3,4.057777778,90,%,2018-19
Milford,Stacy Middle School,1850305,2-C-i,a-vale-i2,Average daily attendance,94.8,4.213333333,90,%,2018-19
Milford,Woodland Elementary School,1850090,2-C-i,a-vale-i2,Average daily attendance,95.8,4.257777778,90,%,2018-19
Revere,Beachmont Elementary School,2480013,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Revere,Garfield Elementary School,2480056,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2018-19
Revere,Garfield Middle School,2480057,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Revere,Hill Elementary School,2480035,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Revere,Lincoln Elementary School,2480025,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2018-19
Revere,Paul Revere Elementary School,2480050,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2018-19
Revere,Revere High School,2480505,2-C-i,a-vale-i2,Average daily attendance,94,4.177777778,90,%,2018-19
Revere,Rumney Marsh Academy,2480014,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Revere,SeaCoast High School,2480520,2-C-i,a-vale-i2,Average daily attendance,75,3.333333333,90,%,2018-19
Revere,Susan B. Anthony Middle School,2480305,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Revere,Whelan Elementary School,2480003,2-C-i,a-vale-i2,Average daily attendance,95,4.222222222,90,%,2018-19
Winchester,Ambrose Elementary School,3440045,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Winchester,Lincoln Elementary School,2480025,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Winchester,Lynch Elementary School,3440020,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Winchester,McCall Middle School,3440305,2-C-i,a-vale-i2,Average daily attendance,96.2,4.275555556,90,%,2018-19
Winchester,Muraco Elementary School,3440040,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Winchester,Vinson-Owen Elementary School,3440025,2-C-i,a-vale-i2,Average daily attendance,96,4.266666667,90,%,2018-19
Winchester,Winchester High School,3440505,2-C-i,a-vale-i2,Average daily attendance,95.7,4.253333333,90,%,2018-19
Attleboro,Attleboro High School,160505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),87.4,3.884444444,90,%,2018-19
Milford,Milford High School,1850505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),99.6,5,90,%,2018-19
Revere,Revere High School,2480505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),100,5,90,%,2018-19
Revere,SeaCoast High School,2480520,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),100,5,90,%,2018-19
Winchester,Winchester High School,3440505,3-B-i,a-curv-i1,Percent graduates completing MassCORE (HS only),87.3,3.88,90,%,2018-19
Attleboro,Attleboro High School,160505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,98.2,4.134736842,95,%,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Robert J. Coelho Middle School,160305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Hyman Fine Elementary School,160040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Hill-Roberts Elementary School,160045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Peter Thacher Elementary School,160050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Wamsutta Middle School,160320,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Thomas Willett Elementary School,160035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Brookside Elementary School,1850065,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Memorial Elementary School,1850010,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Milford High School,1850505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Shining Star Early Childhood Center,1850075,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Stacy Middle School,1850305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Milford,Woodland Elementary School,1850090,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Beachmont Elementary School,2480013,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Garfield Elementary School,2480056,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Garfield Middle School,2480057,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Hill Elementary School,2480035,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Lincoln Elementary School,2480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Paul Revere Elementary School,2480050,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Revere High School,2480505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,95.54,4.022736842,95,%,2018-19
Revere,Rumney Marsh Academy,2480014,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,SeaCoast High School,2480520,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Revere,Susan B. Anthony Middle School,2480305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,97.69,4.113263158,95,%,2018-19
Revere,Whelan Elementary School,2480003,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Ambrose Elementary School,3440045,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Lincoln Elementary School,2480025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Lynch Elementary School,3440020,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,McCall Middle School,3440305,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Muraco Elementary School,3440040,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Vinson-Owen Elementary School,3440025,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Winchester,Winchester High School,3440505,1-A-i,a-exp-i3,Percentage teachers teaching in area of licensure,100,5,95,%,2018-19
Attleboro,Attleboro High School,160505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,249.4285714,4.1,250,,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Robert J. Coelho Middle School,160305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Hyman Fine Elementary School,160040,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Hill-Roberts Elementary School,160045,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Peter Thacher Elementary School,160050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Wamsutta Middle School,160320,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Attleboro,Thomas Willett Elementary School,160035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Milford,Brookside Elementary School,1850065,3-A-ii,a-sust-i1,Student to guidance counselor ratio,479,1.71,250,,2018-19
Milford,Memorial Elementary School,1850010,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Milford,Milford High School,1850505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,194.8333333,4.55,250,,2018-19
Milford,Shining Star Early Childhood Center,1850075,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Milford,Stacy Middle School,1850305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,353.6666667,2.96,250,,2018-19
Milford,Woodland Elementary School,1850090,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Revere,Beachmont Elementary School,2480013,3-A-ii,a-sust-i1,Student to guidance counselor ratio,342,3.08,250,,2018-19
Revere,Garfield Elementary School,2480056,3-A-ii,a-sust-i1,Student to guidance counselor ratio,376,2.74,250,,2018-19
Revere,Garfield Middle School,2480057,3-A-ii,a-sust-i1,Student to guidance counselor ratio,574,0.76,250,,2018-19
Revere,Hill Elementary School,2480035,3-A-ii,a-sust-i1,Student to guidance counselor ratio,724,0,250,,2018-19
Revere,Lincoln Elementary School,2480025,3-A-ii,a-sust-i1,Student to guidance counselor ratio,649,0,250,,2018-19
Revere,Paul Revere Elementary School,2480050,3-A-ii,a-sust-i1,Student to guidance counselor ratio,463,1.87,250,,2018-19
Revere,Revere High School,2480505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,225.7777778,4.24,250,,2018-19
Revere,Rumney Marsh Academy,2480014,3-A-ii,a-sust-i1,Student to guidance counselor ratio,310,3.4,250,,2018-19
Revere,SeaCoast High School,2480520,3-A-ii,a-sust-i1,Student to guidance counselor ratio,91,5,250,,2018-19
Revere,Susan B. Anthony Middle School,2480305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,307.5,3.42,250,,2018-19
Revere,Whelan Elementary School,2480003,3-A-ii,a-sust-i1,Student to guidance counselor ratio,780,0,250,,2018-19
Winchester,Ambrose Elementary School,3440045,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Winchester,Lincoln Elementary School,2480025,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Winchester,Lynch Elementary School,3440020,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Winchester,McCall Middle School,3440305,3-A-ii,a-sust-i1,Student to guidance counselor ratio,220.8,4.29,250,,2018-19
Winchester,Muraco Elementary School,3440040,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Winchester,Vinson-Owen Elementary School,3440025,3-A-ii,a-sust-i1,Student to guidance counselor ratio,0,0,250,,2018-19
Winchester,Winchester High School,3440505,3-A-ii,a-sust-i1,Student to guidance counselor ratio,271.8,3.78,250,,2018-19
Attleboro,Attleboro High School,160505,5-D-ii,a-phya-i1,Medical staff to student ratio,582,3.104,750,,2018-19
Attleboro,Cyril K. Brennan Middle School,160315,5-D-ii,a-phya-i1,Medical staff to student ratio,594,3.168,750,,2018-19
Attleboro,Robert J. Coelho Middle School,160305,5-D-ii,a-phya-i1,Medical staff to student ratio,651,3.472,750,,2018-19
Attleboro,Hyman Fine Elementary School,160040,5-D-ii,a-phya-i1,Medical staff to student ratio,461,2.458666667,750,,2018-19
Attleboro,Hill-Roberts Elementary School,160045,5-D-ii,a-phya-i1,Medical staff to student ratio,454,2.421333333,750,,2018-19
Attleboro,A. Irvin Studley Elementary School,160001,5-D-ii,a-phya-i1,Medical staff to student ratio,396,2.112,750,,2018-19
Attleboro,Peter Thacher Elementary School,160050,5-D-ii,a-phya-i1,Medical staff to student ratio,141.6666667,0.755555556,750,,2018-19
Attleboro,Wamsutta Middle School,160320,5-D-ii,a-phya-i1,Medical staff to student ratio,578,3.082666667,750,,2018-19
Attleboro,Thomas Willett Elementary School,160035,5-D-ii,a-phya-i1,Medical staff to student ratio,404,2.154666667,750,,2018-19
Milford,Brookside Elementary School,1850065,5-D-ii,a-phya-i1,Medical staff to student ratio,479,2.554666667,750,,2018-19
Milford,Memorial Elementary School,1850010,5-D-ii,a-phya-i1,Medical staff to student ratio,479,2.554666667,750,,2018-19
Milford,Milford High School,1850505,5-D-ii,a-phya-i1,Medical staff to student ratio,584.5,3.117333333,750,,2018-19
Milford,Shining Star Early Childhood Center,1850075,5-D-ii,a-phya-i1,Medical staff to student ratio,119.3333333,0.636444444,750,,2018-19
Milford,Stacy Middle School,1850305,5-D-ii,a-phya-i1,Medical staff to student ratio,530.5,2.829333333,750,,2018-19
Milford,Woodland Elementary School,1850090,5-D-ii,a-phya-i1,Medical staff to student ratio,508,2.709333333,750,,2018-19
Revere,Beachmont Elementary School,2480013,5-D-ii,a-phya-i1,Medical staff to student ratio,342,1.824,750,,2018-19
Revere,Garfield Elementary School,2480056,5-D-ii,a-phya-i1,Medical staff to student ratio,752,4.010666667,750,,2018-19
Revere,Garfield Middle School,2480057,5-D-ii,a-phya-i1,Medical staff to student ratio,574,3.061333333,750,,2018-19
Revere,Hill Elementary School,2480035,5-D-ii,a-phya-i1,Medical staff to student ratio,724,3.861333333,750,,2018-19
Revere,Lincoln Elementary School,2480025,5-D-ii,a-phya-i1,Medical staff to student ratio,649,3.461333333,750,,2018-19
Revere,Paul Revere Elementary School,2480050,5-D-ii,a-phya-i1,Medical staff to student ratio,463,2.469333333,750,,2018-19
Revere,Revere High School,2480505,5-D-ii,a-phya-i1,Medical staff to student ratio,677.3333333,3.612444444,750,,2018-19
Revere,Rumney Marsh Academy,2480014,5-D-ii,a-phya-i1,Medical staff to student ratio,620,3.306666667,750,,2018-19
Revere,SeaCoast High School,2480520,5-D-ii,a-phya-i1,Medical staff to student ratio,91,0.485333333,750,,2018-19
Revere,Susan B. Anthony Middle School,2480305,5-D-ii,a-phya-i1,Medical staff to student ratio,615,3.28,750,,2018-19
Revere,Whelan Elementary School,2480003,5-D-ii,a-phya-i1,Medical staff to student ratio,780,4.16,750,,2018-19
Winchester,Ambrose Elementary School,3440045,5-D-ii,a-phya-i1,Medical staff to student ratio,394,2.101333333,750,,2018-19
Winchester,Lincoln Elementary School,2480025,5-D-ii,a-phya-i1,Medical staff to student ratio,431,2.298666667,750,,2018-19
Winchester,Lynch Elementary School,3440020,5-D-ii,a-phya-i1,Medical staff to student ratio,487,2.597333333,750,,2018-19
Winchester,McCall Middle School,3440305,5-D-ii,a-phya-i1,Medical staff to student ratio,552,2.944,750,,2018-19
Winchester,Muraco Elementary School,3440040,5-D-ii,a-phya-i1,Medical staff to student ratio,376,2.005333333,750,,2018-19
Winchester,Vinson-Owen Elementary School,3440025,5-D-ii,a-phya-i1,Medical staff to student ratio,417,2.224,750,,2018-19
Winchester,Winchester High School,3440505,5-D-ii,a-phya-i1,Medical staff to student ratio,339.75,1.812,750,,2018-19
1 District School DESE ID Category Item ID NonLikert Title NL_Value LikertScore Benchmark Data Type Academic Year
2 Attleboro Attleboro High School 160505 2-C-i a-vale-i1 Chronic absence rate 19.7 3.03 10 % 2018-19
3 Attleboro Cyril K. Brennan Middle School 160315 2-C-i a-vale-i1 Chronic absence rate 9.6 4.04 10 % 2018-19
4 Attleboro Robert J. Coelho Middle School 160305 2-C-i a-vale-i1 Chronic absence rate 11 3.9 10 % 2018-19
5 Attleboro Hyman Fine Elementary School 160040 2-C-i a-vale-i1 Chronic absence rate 3.4 4.66 10 % 2018-19
6 Attleboro Hill-Roberts Elementary School 160045 2-C-i a-vale-i1 Chronic absence rate 8.2 4.18 10 % 2018-19
7 Attleboro A. Irvin Studley Elementary School 160001 2-C-i a-vale-i1 Chronic absence rate 8.1 4.19 10 % 2018-19
8 Attleboro Peter Thacher Elementary School 160050 2-C-i a-vale-i1 Chronic absence rate 13 3.7 10 % 2018-19
9 Attleboro Wamsutta Middle School 160320 2-C-i a-vale-i1 Chronic absence rate 8.7 4.13 10 % 2018-19
10 Attleboro Thomas Willett Elementary School 160035 2-C-i a-vale-i1 Chronic absence rate 6 4.4 10 % 2018-19
11 Milford Brookside Elementary School 1850065 2-C-i a-vale-i1 Chronic absence rate 12.1 3.79 10 % 2018-19
12 Milford Memorial Elementary School 1850010 2-C-i a-vale-i1 Chronic absence rate 11.5 3.85 10 % 2018-19
13 Milford Milford High School 1850505 2-C-i a-vale-i1 Chronic absence rate 21.9 2.81 10 % 2018-19
14 Milford Shining Star Early Childhood Center 1850075 2-C-i a-vale-i1 Chronic absence rate 30.5 1.95 10 % 2018-19
15 Milford Stacy Middle School 1850305 2-C-i a-vale-i1 Chronic absence rate 12.7 3.73 10 % 2018-19
16 Milford Woodland Elementary School 1850090 2-C-i a-vale-i1 Chronic absence rate 6.8 4.32 10 % 2018-19
17 Revere Beachmont Elementary School 2480013 2-C-i a-vale-i1 Chronic absence rate 4.2 4.58 10 % 2018-19
18 Revere Garfield Elementary School 2480056 2-C-i a-vale-i1 Chronic absence rate 9.3 4.07 10 % 2018-19
19 Revere Garfield Middle School 2480057 2-C-i a-vale-i1 Chronic absence rate 8.5 4.15 10 % 2018-19
20 Revere Hill Elementary School 2480035 2-C-i a-vale-i1 Chronic absence rate 3.3 4.67 10 % 2018-19
21 Revere Lincoln Elementary School 2480025 2-C-i a-vale-i1 Chronic absence rate 7.9 4.21 10 % 2018-19
22 Revere Paul Revere Elementary School 2480050 2-C-i a-vale-i1 Chronic absence rate 10.1 3.99 10 % 2018-19
23 Revere Revere High School 2480505 2-C-i a-vale-i1 Chronic absence rate 13.8 3.62 10 % 2018-19
24 Revere Rumney Marsh Academy 2480014 2-C-i a-vale-i1 Chronic absence rate 5 4.5 10 % 2018-19
25 Revere SeaCoast High School 2480520 2-C-i a-vale-i1 Chronic absence rate 76.9 0 10 % 2018-19
26 Revere Susan B. Anthony Middle School 2480305 2-C-i a-vale-i1 Chronic absence rate 8.1 4.19 10 % 2018-19
27 Revere Whelan Elementary School 2480003 2-C-i a-vale-i1 Chronic absence rate 5.9 4.41 10 % 2018-19
28 Winchester Ambrose Elementary School 3440045 2-C-i a-vale-i1 Chronic absence rate 3.8 4.62 10 % 2018-19
29 Winchester Lincoln Elementary School 2480025 2-C-i a-vale-i1 Chronic absence rate 1.6 4.84 10 % 2018-19
30 Winchester Lynch Elementary School 3440020 2-C-i a-vale-i1 Chronic absence rate 4 4.6 10 % 2018-19
31 Winchester McCall Middle School 3440305 2-C-i a-vale-i1 Chronic absence rate 4.2 4.58 10 % 2018-19
32 Winchester Muraco Elementary School 3440040 2-C-i a-vale-i1 Chronic absence rate 3.1 4.69 10 % 2018-19
33 Winchester Vinson-Owen Elementary School 3440025 2-C-i a-vale-i1 Chronic absence rate 4.2 4.58 10 % 2018-19
34 Winchester Winchester High School 3440505 2-C-i a-vale-i1 Chronic absence rate 7.2 4.28 10 % 2018-19
35 Attleboro Attleboro High School 160505 3-A-i a-reso-i1 Average class size 20.6 3.94 20 2018-19
36 Attleboro Cyril K. Brennan Middle School 160315 3-A-i a-reso-i1 Average class size 24.4 3.56 20 2018-19
37 Attleboro Robert J. Coelho Middle School 160305 3-A-i a-reso-i1 Average class size 27 3.3 20 2018-19
38 Attleboro Hyman Fine Elementary School 160040 3-A-i a-reso-i1 Average class size 25.1 3.49 20 2018-19
39 Attleboro Hill-Roberts Elementary School 160045 3-A-i a-reso-i1 Average class size 24 3.6 20 2018-19
40 Attleboro A. Irvin Studley Elementary School 160001 3-A-i a-reso-i1 Average class size 13.7 4.63 20 2018-19
41 Attleboro Peter Thacher Elementary School 160050 3-A-i a-reso-i1 Average class size 11.8 4.82 20 2018-19
42 Attleboro Wamsutta Middle School 160320 3-A-i a-reso-i1 Average class size 25.1 3.49 20 2018-19
43 Attleboro Thomas Willett Elementary School 160035 3-A-i a-reso-i1 Average class size 13.9 4.61 20 2018-19
44 Milford Brookside Elementary School 1850065 3-A-i a-reso-i1 Average class size 18.8 4.12 20 2018-19
45 Milford Memorial Elementary School 1850010 3-A-i a-reso-i1 Average class size 20.3 3.97 20 2018-19
46 Milford Milford High School 1850505 3-A-i a-reso-i1 Average class size 18.5 4.15 20 2018-19
47 Milford Shining Star Early Childhood Center 1850075 3-A-i a-reso-i1 Average class size 16 4.4 20 2018-19
48 Milford Stacy Middle School 1850305 3-A-i a-reso-i1 Average class size 22 3.8 20 2018-19
49 Milford Woodland Elementary School 1850090 3-A-i a-reso-i1 Average class size 22.5 3.75 20 2018-19
50 Revere Beachmont Elementary School 2480013 3-A-i a-reso-i1 Average class size 17 4.3 20 2018-19
51 Revere Garfield Elementary School 2480056 3-A-i a-reso-i1 Average class size 19 4.1 20 2018-19
52 Revere Garfield Middle School 2480057 3-A-i a-reso-i1 Average class size 21 3.9 20 2018-19
53 Revere Hill Elementary School 2480035 3-A-i a-reso-i1 Average class size 19 4.1 20 2018-19
54 Revere Lincoln Elementary School 2480025 3-A-i a-reso-i1 Average class size 19 4.1 20 2018-19
55 Revere Paul Revere Elementary School 2480050 3-A-i a-reso-i1 Average class size 21 3.9 20 2018-19
56 Revere Revere High School 2480505 3-A-i a-reso-i1 Average class size 16.8 4.32 20 2018-19
57 Revere Rumney Marsh Academy 2480014 3-A-i a-reso-i1 Average class size 21 3.9 20 2018-19
58 Revere SeaCoast High School 2480520 3-A-i a-reso-i1 Average class size 7 5 20 2018-19
59 Revere Susan B. Anthony Middle School 2480305 3-A-i a-reso-i1 Average class size 23 3.7 20 2018-19
60 Revere Whelan Elementary School 2480003 3-A-i a-reso-i1 Average class size 24 3.6 20 2018-19
61 Winchester Ambrose Elementary School 3440045 3-A-i a-reso-i1 Average class size 19.7 4.03 20 2018-19
62 Winchester Lincoln Elementary School 2480025 3-A-i a-reso-i1 Average class size 19.2 4.08 20 2018-19
63 Winchester Lynch Elementary School 3440020 3-A-i a-reso-i1 Average class size 19.4 4.06 20 2018-19
64 Winchester McCall Middle School 3440305 3-A-i a-reso-i1 Average class size 22.6 3.74 20 2018-19
65 Winchester Muraco Elementary School 3440040 3-A-i a-reso-i1 Average class size 17.9 4.21 20 2018-19
66 Winchester Vinson-Owen Elementary School 3440025 3-A-i a-reso-i1 Average class size 20.4 3.96 20 2018-19
67 Winchester Winchester High School 3440505 3-A-i a-reso-i1 Average class size 17 4.3 20 2018-19
68 Attleboro Attleboro High School 160505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 53 5 20 % 2018-19
69 Milford Milford High School 1850505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 58.5 5 20 % 2018-19
70 Revere Revere High School 2480505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 50 5 20 % 2018-19
71 Winchester Winchester High School 3440505 3-B-i a-curv-i3 Percent AP test takers scoring 3 or higher (HS only) 90.5 5 20 % 2018-19
72 Attleboro Attleboro High School 160505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 21.82130584 2.909507445 30 % 2018-19
73 Milford Milford High School 1850505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 45.23 5 30 % 2018-19
74 Revere Revere High School 2480505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 18 2.4 30 % 2018-19
75 Revere SeaCoast High School 2480520 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 0 0 30 % 2018-19
76 Winchester Winchester High School 3440505 3-B-i a-curv-i2 Percent juniors and seniors enrolled in one AP (HS only) 23 3.066666667 30 % 2018-19
77 Attleboro Attleboro High School 160505 3-B-i a-cure-i1 Percent students of color enrolled in advanced coursework 32.9 3.615384615 36.4 % 2018-19
78 Revere Revere High School 2480505 3-B-i a-cure-i1 Percent students of color enrolled in advanced coursework 12.3 1.351648352 36.4 % 2018-19
79 Revere SeaCoast High School 2480520 3-B-i a-cure-i1 Percent students of color enrolled in advanced coursework 0 0 36.4 % 2018-19
80 Winchester Winchester High School 3440505 3-B-i a-cure-i1 Percent students of color enrolled in advanced coursework 31 3.406593407 36.4 % 2018-19
81 Attleboro Attleboro High School 160505 3-A-ii a-sust-i3 Student to instructional support staff ratio 15.28896673 1.409121358 43.4 2018-19
82 Attleboro Cyril K. Brennan Middle School 160315 3-A-ii a-sust-i3 Student to instructional support staff ratio 16.97142857 1.564186965 43.4 2018-19
83 Attleboro Robert J. Coelho Middle School 160305 3-A-ii a-sust-i3 Student to instructional support staff ratio 19.14705882 1.764705882 43.4 2018-19
84 Attleboro Hyman Fine Elementary School 160040 3-A-ii a-sust-i3 Student to instructional support staff ratio 16.46428571 1.517445688 43.4 2018-19
85 Attleboro Hill-Roberts Elementary School 160045 3-A-ii a-sust-i3 Student to instructional support staff ratio 15.65517241 1.442873033 43.4 2018-19
86 Attleboro A. Irvin Studley Elementary School 160001 3-A-ii a-sust-i3 Student to instructional support staff ratio 13.65517241 1.258541236 43.4 2018-19
87 Attleboro Peter Thacher Elementary School 160050 3-A-ii a-sust-i3 Student to instructional support staff ratio 11.80555556 1.088069637 43.4 2018-19
88 Attleboro Wamsutta Middle School 160320 3-A-ii a-sust-i3 Student to instructional support staff ratio 17 1.566820276 43.4 2018-19
89 Attleboro Thomas Willett Elementary School 160035 3-A-ii a-sust-i3 Student to instructional support staff ratio 13.93103448 1.283966312 43.4 2018-19
90 Milford Brookside Elementary School 1850065 3-A-ii a-sust-i3 Student to instructional support staff ratio 14.1506647 1.304208728 43.4 2018-19
91 Milford Memorial Elementary School 1850010 3-A-ii a-sust-i3 Student to instructional support staff ratio 16.60311958 1.530241436 43.4 2018-19
92 Milford Milford High School 1850505 3-A-ii a-sust-i3 Student to instructional support staff ratio 46.38888889 4.27547363 43.4 2018-19
93 Milford Shining Star Early Childhood Center 1850075 3-A-ii a-sust-i3 Student to instructional support staff ratio 5.482388974 0.505289306 43.4 2018-19
94 Milford Stacy Middle School 1850305 3-A-ii a-sust-i3 Student to instructional support staff ratio 32.74691358 3.018148717 43.4 2018-19
95 Milford Woodland Elementary School 1850090 3-A-ii a-sust-i3 Student to instructional support staff ratio 22.85714286 2.106649112 43.4 2018-19
96 Revere Beachmont Elementary School 2480013 3-A-ii a-sust-i3 Student to instructional support staff ratio 38 3.502304147 43.4 2018-19
97 Revere Garfield Elementary School 2480056 3-A-ii a-sust-i3 Student to instructional support staff ratio 39.57894737 3.647829251 43.4 2018-19
98 Revere Garfield Middle School 2480057 3-A-ii a-sust-i3 Student to instructional support staff ratio 71.75 5 43.4 2018-19
99 Revere Hill Elementary School 2480035 3-A-ii a-sust-i3 Student to instructional support staff ratio 65.81818182 5 43.4 2018-19
100 Revere Lincoln Elementary School 2480025 3-A-ii a-sust-i3 Student to instructional support staff ratio 59 5 43.4 2018-19
101 Revere Paul Revere Elementary School 2480050 3-A-ii a-sust-i3 Student to instructional support staff ratio 46.3 4.267281106 43.4 2018-19
102 Revere Revere High School 2480505 3-A-ii a-sust-i3 Student to instructional support staff ratio 75.25925926 5 43.4 2018-19
103 Revere Rumney Marsh Academy 2480014 3-A-ii a-sust-i3 Student to instructional support staff ratio 56.36363636 5 43.4 2018-19
104 Revere SeaCoast High School 2480520 3-A-ii a-sust-i3 Student to instructional support staff ratio 30.33333333 2.795698924 43.4 2018-19
105 Revere Susan B. Anthony Middle School 2480305 3-A-ii a-sust-i3 Student to instructional support staff ratio 76.875 5 43.4 2018-19
106 Revere Whelan Elementary School 2480003 3-A-ii a-sust-i3 Student to instructional support staff ratio 23.63636364 2.178466695 43.4 2018-19
107 Winchester Ambrose Elementary School 3440045 3-A-ii a-sust-i3 Student to instructional support staff ratio 65.66666667 5 43.4 2018-19
108 Winchester Lincoln Elementary School 2480025 3-A-ii a-sust-i3 Student to instructional support staff ratio 86.2 5 43.4 2018-19
109 Winchester Lynch Elementary School 3440020 3-A-ii a-sust-i3 Student to instructional support staff ratio 60.875 5 43.4 2018-19
110 Winchester McCall Middle School 3440305 3-A-ii a-sust-i3 Student to instructional support staff ratio 276 5 43.4 2018-19
111 Winchester Muraco Elementary School 3440040 3-A-ii a-sust-i3 Student to instructional support staff ratio 94 5 43.4 2018-19
112 Winchester Vinson-Owen Elementary School 3440025 3-A-ii a-sust-i3 Student to instructional support staff ratio 83.4 5 43.4 2018-19
113 Winchester Winchester High School 3440505 3-A-ii a-sust-i3 Student to instructional support staff ratio 135.9 5 43.4 2018-19
114 Milford Milford High School 1850505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 69 4.207317073 65.6 % 2018-19
115 Revere Revere High School 2480505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 69 4.207317073 65.6 % 2018-19
116 Revere SeaCoast High School 2480520 4-D-i a-cgpr-i1 College enrollment rate (HS only) 31.9 1.945121951 65.6 % 2018-19
117 Winchester Winchester High School 3440505 4-D-i a-cgpr-i1 College enrollment rate (HS only) 90.5 5 65.6 % 2018-19
118 Milford Milford High School 1850505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 91.4 4.57 80 % 2018-19
119 Revere Revere High School 2480505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 92.8 4.64 80 % 2018-19
120 Revere SeaCoast High School 2480520 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 29.5 1.475 80 % 2018-19
121 Winchester Winchester High School 3440505 4-B-ii a-degr-i1 4-year on-time graduation rate (HS only) 94.9 4.745 80 % 2018-19
122 Milford Brookside Elementary School 1850065 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 90 4.5 80 % 2018-19
123 Milford Memorial Elementary School 1850010 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 92 4.6 80 % 2018-19
124 Milford Milford High School 1850505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 82 4.1 80 % 2018-19
125 Milford Shining Star Early Childhood Center 1850075 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 80 4 80 % 2018-19
126 Milford Stacy Middle School 1850305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 89 4.45 80 % 2018-19
127 Milford Woodland Elementary School 1850090 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 85 4.25 80 % 2018-19
128 Revere Beachmont Elementary School 2480013 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 75 3.75 80 % 2018-19
129 Revere Garfield Middle School 2480057 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 47 2.35 80 % 2018-19
130 Revere Hill Elementary School 2480035 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 76 3.8 80 % 2018-19
131 Revere Lincoln Elementary School 2480025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 68 3.4 80 % 2018-19
132 Revere Paul Revere Elementary School 2480050 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 63 3.15 80 % 2018-19
133 Revere Revere High School 2480505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 61 3.05 80 % 2018-19
134 Revere Rumney Marsh Academy 2480014 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 49 2.45 80 % 2018-19
135 Revere SeaCoast High School 2480520 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 0.41 0.0205 80 % 2018-19
136 Revere Susan B. Anthony Middle School 2480305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 67 3.35 80 % 2018-19
137 Revere Whelan Elementary School 2480003 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 82 4.1 80 % 2018-19
138 Winchester Ambrose Elementary School 3440045 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 82 4.1 80 % 2018-19
139 Winchester Lincoln Elementary School 2480025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 66.6 3.33 80 % 2018-19
140 Winchester Lynch Elementary School 3440020 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 60 3 80 % 2018-19
141 Winchester McCall Middle School 3440305 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 71 3.55 80 % 2018-19
142 Winchester Muraco Elementary School 3440040 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 69 3.45 80 % 2018-19
143 Winchester Vinson-Owen Elementary School 3440025 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 84 4.2 80 % 2018-19
144 Winchester Winchester High School 3440505 1-A-i a-exp-i1 Percentage teachers with 5+ years of experience 92 4.6 80 % 2018-19
145 Milford Milford High School 1850505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 93.3 4.390588235 85 % 2018-19
146 Revere Revere High School 2480505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 90.4 4.254117647 85 % 2018-19
147 Revere SeaCoast High School 2480520 4-B-ii a-degr-i3 5-year graduation rate (HS only) 27.8 1.308235294 85 % 2018-19
148 Winchester Winchester High School 3440505 4-B-ii a-degr-i3 5-year graduation rate (HS only) 99.3 4.672941176 85 % 2018-19
149 Attleboro Attleboro High School 160505 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 90.6 4.263529412 85 % 2018-19
150 Attleboro Cyril K. Brennan Middle School 160315 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2018-19
151 Attleboro Hyman Fine Elementary School 160040 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 92.9 4.371764706 85 % 2018-19
152 Attleboro Hill-Roberts Elementary School 160045 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 89.3 4.202352941 85 % 2018-19
153 Attleboro A. Irvin Studley Elementary School 160001 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 93.5 4.4 85 % 2018-19
154 Attleboro Peter Thacher Elementary School 160050 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 83.3 3.92 85 % 2018-19
155 Attleboro Wamsutta Middle School 160320 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 91.2 4.291764706 85 % 2018-19
156 Attleboro Thomas Willett Elementary School 160035 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2018-19
157 Milford Brookside Elementary School 1850065 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 97.5 4.588235294 85 % 2018-19
158 Milford Memorial Elementary School 1850010 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 97.5 4.588235294 85 % 2018-19
159 Milford Milford High School 1850505 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 96.8 4.555294118 85 % 2018-19
160 Milford Shining Star Early Childhood Center 1850075 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2018-19
161 Milford Stacy Middle School 1850305 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 96.2 4.527058824 85 % 2018-19
162 Milford Woodland Elementary School 1850090 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 94.8 4.461176471 85 % 2018-19
163 Revere Beachmont Elementary School 2480013 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2018-19
164 Revere Garfield Middle School 2480057 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 % 2018-19
165 Revere Hill Elementary School 2480035 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 100 4.705882353 85 % 2018-19
166 Revere Lincoln Elementary School 2480025 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 96 4.517647059 85 % 2018-19
167 Revere Paul Revere Elementary School 2480050 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 % 2018-19
168 Revere Revere High School 2480505 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 92 4.329411765 85 % 2018-19
169 Revere Rumney Marsh Academy 2480014 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 85 4 85 % 2018-19
170 Revere SeaCoast High School 2480520 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 90 4.235294118 85 % 2018-19
171 Revere Susan B. Anthony Middle School 2480305 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 85 4 85 % 2018-19
172 Revere Whelan Elementary School 2480003 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 97 4.564705882 85 % 2018-19
173 Winchester Ambrose Elementary School 3440045 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 92.3 4.343529412 85 % 2018-19
174 Winchester Lincoln Elementary School 2480025 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 84.8 3.990588235 85 % 2018-19
175 Winchester Lynch Elementary School 3440020 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 82.4 3.877647059 85 % 2018-19
176 Winchester McCall Middle School 3440305 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 79.3 3.731764706 85 % 2018-19
177 Winchester Muraco Elementary School 3440040 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 88.6 4.169411765 85 % 2018-19
178 Winchester Vinson-Owen Elementary School 3440025 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 91.9 4.324705882 85 % 2018-19
179 Winchester Winchester High School 3440505 1-A-iii a-pcom-i1 Percent teacher returning (excluding retirement) 90.3 4.249411765 85 % 2018-19
180 Attleboro Attleboro High School 160505 2-C-i a-vale-i2 Average daily attendance 93.2 4.142222222 90 % 2018-19
181 Attleboro Cyril K. Brennan Middle School 160315 2-C-i a-vale-i2 Average daily attendance 95.1 4.226666667 90 % 2018-19
182 Attleboro Robert J. Coelho Middle School 160305 2-C-i a-vale-i2 Average daily attendance 95.7 4.253333333 90 % 2018-19
183 Attleboro Hyman Fine Elementary School 160040 2-C-i a-vale-i2 Average daily attendance 96.2 4.275555556 90 % 2018-19
184 Attleboro Hill-Roberts Elementary School 160045 2-C-i a-vale-i2 Average daily attendance 95.4 4.24 90 % 2018-19
185 Attleboro A. Irvin Studley Elementary School 160001 2-C-i a-vale-i2 Average daily attendance 95.5 4.244444444 90 % 2018-19
186 Attleboro Peter Thacher Elementary School 160050 2-C-i a-vale-i2 Average daily attendance 94.9 4.217777778 90 % 2018-19
187 Attleboro Wamsutta Middle School 160320 2-C-i a-vale-i2 Average daily attendance 95.7 4.253333333 90 % 2018-19
188 Attleboro Thomas Willett Elementary School 160035 2-C-i a-vale-i2 Average daily attendance 95.4 4.24 90 % 2018-19
189 Milford Brookside Elementary School 1850065 2-C-i a-vale-i2 Average daily attendance 94.9 4.217777778 90 % 2018-19
190 Milford Memorial Elementary School 1850010 2-C-i a-vale-i2 Average daily attendance 94.9 4.217777778 90 % 2018-19
191 Milford Milford High School 1850505 2-C-i a-vale-i2 Average daily attendance 92.9 4.128888889 90 % 2018-19
192 Milford Shining Star Early Childhood Center 1850075 2-C-i a-vale-i2 Average daily attendance 91.3 4.057777778 90 % 2018-19
193 Milford Stacy Middle School 1850305 2-C-i a-vale-i2 Average daily attendance 94.8 4.213333333 90 % 2018-19
194 Milford Woodland Elementary School 1850090 2-C-i a-vale-i2 Average daily attendance 95.8 4.257777778 90 % 2018-19
195 Revere Beachmont Elementary School 2480013 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
196 Revere Garfield Elementary School 2480056 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2018-19
197 Revere Garfield Middle School 2480057 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
198 Revere Hill Elementary School 2480035 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
199 Revere Lincoln Elementary School 2480025 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2018-19
200 Revere Paul Revere Elementary School 2480050 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2018-19
201 Revere Revere High School 2480505 2-C-i a-vale-i2 Average daily attendance 94 4.177777778 90 % 2018-19
202 Revere Rumney Marsh Academy 2480014 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
203 Revere SeaCoast High School 2480520 2-C-i a-vale-i2 Average daily attendance 75 3.333333333 90 % 2018-19
204 Revere Susan B. Anthony Middle School 2480305 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
205 Revere Whelan Elementary School 2480003 2-C-i a-vale-i2 Average daily attendance 95 4.222222222 90 % 2018-19
206 Winchester Ambrose Elementary School 3440045 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
207 Winchester Lincoln Elementary School 2480025 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
208 Winchester Lynch Elementary School 3440020 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
209 Winchester McCall Middle School 3440305 2-C-i a-vale-i2 Average daily attendance 96.2 4.275555556 90 % 2018-19
210 Winchester Muraco Elementary School 3440040 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
211 Winchester Vinson-Owen Elementary School 3440025 2-C-i a-vale-i2 Average daily attendance 96 4.266666667 90 % 2018-19
212 Winchester Winchester High School 3440505 2-C-i a-vale-i2 Average daily attendance 95.7 4.253333333 90 % 2018-19
213 Attleboro Attleboro High School 160505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 87.4 3.884444444 90 % 2018-19
214 Milford Milford High School 1850505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 99.6 5 90 % 2018-19
215 Revere Revere High School 2480505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 100 5 90 % 2018-19
216 Revere SeaCoast High School 2480520 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 100 5 90 % 2018-19
217 Winchester Winchester High School 3440505 3-B-i a-curv-i1 Percent graduates completing MassCORE (HS only) 87.3 3.88 90 % 2018-19
218 Attleboro Attleboro High School 160505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 98.2 4.134736842 95 % 2018-19
219 Attleboro Cyril K. Brennan Middle School 160315 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
220 Attleboro Robert J. Coelho Middle School 160305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
221 Attleboro Hyman Fine Elementary School 160040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
222 Attleboro Hill-Roberts Elementary School 160045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
223 Attleboro A. Irvin Studley Elementary School 160001 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
224 Attleboro Peter Thacher Elementary School 160050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
225 Attleboro Wamsutta Middle School 160320 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
226 Attleboro Thomas Willett Elementary School 160035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
227 Milford Brookside Elementary School 1850065 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
228 Milford Memorial Elementary School 1850010 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
229 Milford Milford High School 1850505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
230 Milford Shining Star Early Childhood Center 1850075 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
231 Milford Stacy Middle School 1850305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
232 Milford Woodland Elementary School 1850090 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
233 Revere Beachmont Elementary School 2480013 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
234 Revere Garfield Elementary School 2480056 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
235 Revere Garfield Middle School 2480057 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
236 Revere Hill Elementary School 2480035 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
237 Revere Lincoln Elementary School 2480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
238 Revere Paul Revere Elementary School 2480050 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
239 Revere Revere High School 2480505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 95.54 4.022736842 95 % 2018-19
240 Revere Rumney Marsh Academy 2480014 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
241 Revere SeaCoast High School 2480520 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
242 Revere Susan B. Anthony Middle School 2480305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 97.69 4.113263158 95 % 2018-19
243 Revere Whelan Elementary School 2480003 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
244 Winchester Ambrose Elementary School 3440045 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
245 Winchester Lincoln Elementary School 2480025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
246 Winchester Lynch Elementary School 3440020 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
247 Winchester McCall Middle School 3440305 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
248 Winchester Muraco Elementary School 3440040 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
249 Winchester Vinson-Owen Elementary School 3440025 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
250 Winchester Winchester High School 3440505 1-A-i a-exp-i3 Percentage teachers teaching in area of licensure 100 5 95 % 2018-19
251 Attleboro Attleboro High School 160505 3-A-ii a-sust-i1 Student to guidance counselor ratio 249.4285714 4.1 250 2018-19
252 Attleboro Cyril K. Brennan Middle School 160315 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
253 Attleboro Robert J. Coelho Middle School 160305 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
254 Attleboro Hyman Fine Elementary School 160040 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
255 Attleboro Hill-Roberts Elementary School 160045 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
256 Attleboro A. Irvin Studley Elementary School 160001 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
257 Attleboro Peter Thacher Elementary School 160050 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
258 Attleboro Wamsutta Middle School 160320 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
259 Attleboro Thomas Willett Elementary School 160035 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
260 Milford Brookside Elementary School 1850065 3-A-ii a-sust-i1 Student to guidance counselor ratio 479 1.71 250 2018-19
261 Milford Memorial Elementary School 1850010 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
262 Milford Milford High School 1850505 3-A-ii a-sust-i1 Student to guidance counselor ratio 194.8333333 4.55 250 2018-19
263 Milford Shining Star Early Childhood Center 1850075 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
264 Milford Stacy Middle School 1850305 3-A-ii a-sust-i1 Student to guidance counselor ratio 353.6666667 2.96 250 2018-19
265 Milford Woodland Elementary School 1850090 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
266 Revere Beachmont Elementary School 2480013 3-A-ii a-sust-i1 Student to guidance counselor ratio 342 3.08 250 2018-19
267 Revere Garfield Elementary School 2480056 3-A-ii a-sust-i1 Student to guidance counselor ratio 376 2.74 250 2018-19
268 Revere Garfield Middle School 2480057 3-A-ii a-sust-i1 Student to guidance counselor ratio 574 0.76 250 2018-19
269 Revere Hill Elementary School 2480035 3-A-ii a-sust-i1 Student to guidance counselor ratio 724 0 250 2018-19
270 Revere Lincoln Elementary School 2480025 3-A-ii a-sust-i1 Student to guidance counselor ratio 649 0 250 2018-19
271 Revere Paul Revere Elementary School 2480050 3-A-ii a-sust-i1 Student to guidance counselor ratio 463 1.87 250 2018-19
272 Revere Revere High School 2480505 3-A-ii a-sust-i1 Student to guidance counselor ratio 225.7777778 4.24 250 2018-19
273 Revere Rumney Marsh Academy 2480014 3-A-ii a-sust-i1 Student to guidance counselor ratio 310 3.4 250 2018-19
274 Revere SeaCoast High School 2480520 3-A-ii a-sust-i1 Student to guidance counselor ratio 91 5 250 2018-19
275 Revere Susan B. Anthony Middle School 2480305 3-A-ii a-sust-i1 Student to guidance counselor ratio 307.5 3.42 250 2018-19
276 Revere Whelan Elementary School 2480003 3-A-ii a-sust-i1 Student to guidance counselor ratio 780 0 250 2018-19
277 Winchester Ambrose Elementary School 3440045 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
278 Winchester Lincoln Elementary School 2480025 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
279 Winchester Lynch Elementary School 3440020 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
280 Winchester McCall Middle School 3440305 3-A-ii a-sust-i1 Student to guidance counselor ratio 220.8 4.29 250 2018-19
281 Winchester Muraco Elementary School 3440040 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
282 Winchester Vinson-Owen Elementary School 3440025 3-A-ii a-sust-i1 Student to guidance counselor ratio 0 0 250 2018-19
283 Winchester Winchester High School 3440505 3-A-ii a-sust-i1 Student to guidance counselor ratio 271.8 3.78 250 2018-19
284 Attleboro Attleboro High School 160505 5-D-ii a-phya-i1 Medical staff to student ratio 582 3.104 750 2018-19
285 Attleboro Cyril K. Brennan Middle School 160315 5-D-ii a-phya-i1 Medical staff to student ratio 594 3.168 750 2018-19
286 Attleboro Robert J. Coelho Middle School 160305 5-D-ii a-phya-i1 Medical staff to student ratio 651 3.472 750 2018-19
287 Attleboro Hyman Fine Elementary School 160040 5-D-ii a-phya-i1 Medical staff to student ratio 461 2.458666667 750 2018-19
288 Attleboro Hill-Roberts Elementary School 160045 5-D-ii a-phya-i1 Medical staff to student ratio 454 2.421333333 750 2018-19
289 Attleboro A. Irvin Studley Elementary School 160001 5-D-ii a-phya-i1 Medical staff to student ratio 396 2.112 750 2018-19
290 Attleboro Peter Thacher Elementary School 160050 5-D-ii a-phya-i1 Medical staff to student ratio 141.6666667 0.755555556 750 2018-19
291 Attleboro Wamsutta Middle School 160320 5-D-ii a-phya-i1 Medical staff to student ratio 578 3.082666667 750 2018-19
292 Attleboro Thomas Willett Elementary School 160035 5-D-ii a-phya-i1 Medical staff to student ratio 404 2.154666667 750 2018-19
293 Milford Brookside Elementary School 1850065 5-D-ii a-phya-i1 Medical staff to student ratio 479 2.554666667 750 2018-19
294 Milford Memorial Elementary School 1850010 5-D-ii a-phya-i1 Medical staff to student ratio 479 2.554666667 750 2018-19
295 Milford Milford High School 1850505 5-D-ii a-phya-i1 Medical staff to student ratio 584.5 3.117333333 750 2018-19
296 Milford Shining Star Early Childhood Center 1850075 5-D-ii a-phya-i1 Medical staff to student ratio 119.3333333 0.636444444 750 2018-19
297 Milford Stacy Middle School 1850305 5-D-ii a-phya-i1 Medical staff to student ratio 530.5 2.829333333 750 2018-19
298 Milford Woodland Elementary School 1850090 5-D-ii a-phya-i1 Medical staff to student ratio 508 2.709333333 750 2018-19
299 Revere Beachmont Elementary School 2480013 5-D-ii a-phya-i1 Medical staff to student ratio 342 1.824 750 2018-19
300 Revere Garfield Elementary School 2480056 5-D-ii a-phya-i1 Medical staff to student ratio 752 4.010666667 750 2018-19
301 Revere Garfield Middle School 2480057 5-D-ii a-phya-i1 Medical staff to student ratio 574 3.061333333 750 2018-19
302 Revere Hill Elementary School 2480035 5-D-ii a-phya-i1 Medical staff to student ratio 724 3.861333333 750 2018-19
303 Revere Lincoln Elementary School 2480025 5-D-ii a-phya-i1 Medical staff to student ratio 649 3.461333333 750 2018-19
304 Revere Paul Revere Elementary School 2480050 5-D-ii a-phya-i1 Medical staff to student ratio 463 2.469333333 750 2018-19
305 Revere Revere High School 2480505 5-D-ii a-phya-i1 Medical staff to student ratio 677.3333333 3.612444444 750 2018-19
306 Revere Rumney Marsh Academy 2480014 5-D-ii a-phya-i1 Medical staff to student ratio 620 3.306666667 750 2018-19
307 Revere SeaCoast High School 2480520 5-D-ii a-phya-i1 Medical staff to student ratio 91 0.485333333 750 2018-19
308 Revere Susan B. Anthony Middle School 2480305 5-D-ii a-phya-i1 Medical staff to student ratio 615 3.28 750 2018-19
309 Revere Whelan Elementary School 2480003 5-D-ii a-phya-i1 Medical staff to student ratio 780 4.16 750 2018-19
310 Winchester Ambrose Elementary School 3440045 5-D-ii a-phya-i1 Medical staff to student ratio 394 2.101333333 750 2018-19
311 Winchester Lincoln Elementary School 2480025 5-D-ii a-phya-i1 Medical staff to student ratio 431 2.298666667 750 2018-19
312 Winchester Lynch Elementary School 3440020 5-D-ii a-phya-i1 Medical staff to student ratio 487 2.597333333 750 2018-19
313 Winchester McCall Middle School 3440305 5-D-ii a-phya-i1 Medical staff to student ratio 552 2.944 750 2018-19
314 Winchester Muraco Elementary School 3440040 5-D-ii a-phya-i1 Medical staff to student ratio 376 2.005333333 750 2018-19
315 Winchester Vinson-Owen Elementary School 3440025 5-D-ii a-phya-i1 Medical staff to student ratio 417 2.224 750 2018-19
316 Winchester Winchester High School 3440505 5-D-ii a-phya-i1 Medical staff to student ratio 339.75 1.812 750 2018-19

View file

@ -1,4 +1,4 @@
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
Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,African American (%),Asian (%),Hispanic (%),White (%),Native Amertican (%),"Native Hawaiian, Pacific Islander (%)","Multi-Race,Non-Hispanic (%)",Females (%),Males (%),FTE Count
3.218749999999999,3.22,a-pcom-i3,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 4.5, 0.6, 3.5, 89.7, 0.0, 0.6, 1.2, 78.1, 21.9, 173.4
1,1,a-pcom-i3,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.0
2.34375,2.34,a-pcom-i3,2021-22,Abington - Abington High,00010505, 0.0, 1.5, 6.0, 92.5, 0.0, 0.0, 0.0, 72.5, 27.5, 66.6

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

12899
data/enrollment/enrollment.csv Normal file

File diff suppressed because it is too large Load diff

11067
data/staffing/staffing.csv Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,18 @@
class AddGradesToRespondent < ActiveRecord::Migration[7.0]
def change
add_column :respondents, :pk, :integer
add_column :respondents, :k, :integer
add_column :respondents, :one, :integer
add_column :respondents, :two, :integer
add_column :respondents, :three, :integer
add_column :respondents, :four, :integer
add_column :respondents, :five, :integer
add_column :respondents, :six, :integer
add_column :respondents, :seven, :integer
add_column :respondents, :eight, :integer
add_column :respondents, :nine, :integer
add_column :respondents, :ten, :integer
add_column :respondents, :eleven, :integer
add_column :respondents, :twelve, :integer
end
end

View file

@ -0,0 +1,5 @@
class AddUniqueIndextoRespondent < ActiveRecord::Migration[7.0]
def change
add_index :respondents, %i[school_id academic_year_id], unique: true
end
end

View file

@ -0,0 +1,5 @@
class RemoveSchoolIndexFromRespondents < ActiveRecord::Migration[7.0]
def change
remove_index :respondents, name: 'index_respondents_on_school_id'
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2022_10_22_225523) do
ActiveRecord::Schema[7.0].define(version: 2023_03_04_132801) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -329,8 +329,22 @@ ActiveRecord::Schema[7.0].define(version: 2022_10_22_225523) do
t.float "total_teachers"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "pk"
t.integer "k"
t.integer "one"
t.integer "two"
t.integer "three"
t.integer "four"
t.integer "five"
t.integer "six"
t.integer "seven"
t.integer "eight"
t.integer "nine"
t.integer "ten"
t.integer "eleven"
t.integer "twelve"
t.index ["academic_year_id"], name: "index_respondents_on_academic_year_id"
t.index ["school_id"], name: "index_respondents_on_school_id"
t.index ["school_id", "academic_year_id"], name: "index_respondents_on_school_id_and_academic_year_id", unique: true
end
create_table "response_rates", force: :cascade do |t|

View file

@ -5,6 +5,7 @@ seeder = Seeder.new
seeder.seed_academic_years '2016-17', '2017-18', '2018-19', '2019-20', '2020-21', '2021-22', '2022-23'
seeder.seed_districts_and_schools Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_surveys Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_respondents Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_sqm_framework Rails.root.join('data', 'sqm_framework.csv')
seeder.seed_demographics Rails.root.join('data', 'demographics.csv')
seeder.seed_enrollment Rails.root.join('data', 'enrollment', 'enrollment.csv')
seeder.seed_staffing Rails.root.join('data', 'staffing', 'staffing.csv')

View file

@ -25,9 +25,10 @@ namespace :data do
seeder.seed_academic_years '2016-17', '2017-18', '2018-19', '2019-20', '2020-21', '2021-22', '2022-23'
seeder.seed_districts_and_schools Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_surveys Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_respondents Rails.root.join('data', 'master_list_of_schools_and_districts.csv')
seeder.seed_sqm_framework Rails.root.join('data', 'sqm_framework.csv')
seeder.seed_demographics Rails.root.join('data', 'demographics.csv')
seeder.seed_enrollment Rails.root.join('data', 'enrollment', 'enrollment.csv')
seeder.seed_staffing Rails.root.join('data', 'staffing', 'staffing.csv')
end
desc 'load survey responses for lowell schools'
@ -201,14 +202,4 @@ namespace :data do
SurveyItem.reset_counters(survey_item.id, :survey_item_responses)
end
end
desc 'scrape dese site for admin data'
task scrape_all: :environment do
puts 'scraping data from dese'
scrapers = [Dese::OneAOne, Dese::OneAThree, Dese::TwoAOne, Dese::TwoCOne, Dese::ThreeAOne, Dese::ThreeATwo,
Dese::ThreeBOne, Dese::ThreeBTwo, Dese::FourAOne, Dese::FourBTwo, Dese::FourDOne, Dese::FiveCOne, Dese::FiveDTwo]
scrapers.each do |scraper|
scraper.new.run_all
end
end
end

21
lib/tasks/scrape.rake Normal file
View file

@ -0,0 +1,21 @@
namespace :scrape do
desc 'scrape dese site for admin data'
task admin: :environment do
puts 'scraping data from dese'
scrapers = [Dese::OneAOne, Dese::OneAThree, Dese::TwoAOne, Dese::TwoCOne, Dese::ThreeAOne, Dese::ThreeATwo,
Dese::ThreeBOne, Dese::ThreeBTwo, Dese::FourAOne, Dese::FourBTwo, Dese::FourDOne, Dese::FiveCOne, Dese::FiveDTwo]
scrapers.each do |scraper|
scraper.new.run_all
end
end
desc 'scrape dese site for teacher staffing information'
task enrollment: :environment do
Dese::ThreeATwo.new.scrape_enrollments(filepath: Rails.root.join('data', 'enrollment', 'enrollment.csv'))
end
desc 'scrape dese site for student staffing information'
task staffing: :environment do
Dese::OneAThree.new(filepaths: ['not used', Rails.root.join('data', 'staffing', 'staffing.csv')]).run_a_pcom_i3
end
end

View file

@ -147,6 +147,14 @@ FactoryBot.define do
approval_low_benchmark { 4.0 }
ideal_low_benchmark { 4.5 }
end
factory :early_education_survey_item do
survey_item_id { "s-#{rand}-es#{rand}" }
watch_low_benchmark { 2.0 }
growth_low_benchmark { 3.0 }
approval_low_benchmark { 4.0 }
ideal_low_benchmark { 4.5 }
end
end
factory :survey_item_response do

12899
spec/fixtures/sample_enrollment_data.csv vendored Normal file

File diff suppressed because it is too large Load diff

11067
spec/fixtures/sample_staffing_data.csv vendored Normal file

File diff suppressed because it is too large Load diff

View file

@ -5,8 +5,12 @@ describe Seeder do
let(:seeder) { Seeder.new }
let(:lowell_seeder) { Seeder.new rules: [Rule::SeedOnlyLowell] }
after :each do
DatabaseCleaner.clean
end
context 'academic years' do
before { AcademicYear.delete_all }
# before { AcademicYear.delete_all }
it 'seeds new academic years' do
expect do
@ -53,7 +57,6 @@ describe Seeder do
create(:school, name: 'John Oldest Academy', dese_id: 12_345, district: existing_district)
end
let!(:removed_survey_item_response) { create(:survey_item_response, school: removed_school) }
let!(:removed_respondent) { create(:respondent, school: removed_school) }
let!(:removed_survey) { create(:survey, school: removed_school) }
let!(:existing_school) do
create(:school, name: 'Sam Adams Elementary School', dese_id: 350_302, slug: 'some-slug-for-sam-adams',
@ -96,7 +99,6 @@ describe Seeder do
expect(School.where(id: removed_school)).not_to exist
expect(SurveyItemResponse.where(id: removed_survey_item_response)).not_to exist
expect(Respondent.where(id: removed_respondent)).not_to exist
expect(Survey.where(id: removed_survey)).not_to exist
end
end
@ -113,48 +115,48 @@ describe Seeder do
end
end
context 'respondents' do
before :each do
create(:academic_year, range: '2020-21')
seeder.seed_districts_and_schools sample_districts_and_schools_csv
end
# context 'respondents' do
# before :each do
# create(:academic_year, range: '2020-21')
# seeder.seed_districts_and_schools sample_districts_and_schools_csv
# end
it 'seeds the total number of respondents for a school' do
expect do
seeder.seed_respondents sample_districts_and_schools_csv
end.to change { Respondent.count }.by(School.count)
end
# it 'seeds the total number of respondents for a school' do
# expect do
# seeder.seed_respondents sample_districts_and_schools_csv
# end.to change { Respondent.count }.by(School.count)
# end
it 'seeds idempotently' do
expect do
seeder.seed_respondents sample_districts_and_schools_csv
end.to change { Respondent.count }.by(School.count)
# it 'seeds idempotently' do
# expect do
# seeder.seed_respondents sample_districts_and_schools_csv
# end.to change { Respondent.count }.by(School.count)
expect(Respondent.all.count).to eq School.count
# expect(Respondent.all.count).to eq School.count
expect do
seeder.seed_respondents sample_districts_and_schools_csv
end.to change { Respondent.count }.by(0)
end
# expect do
# seeder.seed_respondents sample_districts_and_schools_csv
# end.to change { Respondent.count }.by(0)
# end
it 'seeds new respondents for every year in the database' do
expect do
seeder.seed_respondents sample_districts_and_schools_csv
end.to change { Respondent.count }.by School.count
# it 'seeds new respondents for every year in the database' do
# expect do
# seeder.seed_respondents sample_districts_and_schools_csv
# end.to change { Respondent.count }.by School.count
expect do
create(:academic_year, range: '2019-20')
seeder.seed_respondents sample_districts_and_schools_csv
end.to change { Respondent.count }.by School.count
end
it 'seeds the total number of students and teachers even if the original number includes commas' do
seeder.seed_respondents sample_districts_and_schools_csv
school = School.find_by_name('Attleboro High School')
academic_year = AcademicYear.find_by_range('2020-21')
school_with_over_one_thousand_student_respondents = Respondent.where(school:, academic_year:).first
expect(school_with_over_one_thousand_student_respondents.total_students).to eq 1792
end
end
# expect do
# create(:academic_year, range: '2019-20')
# seeder.seed_respondents sample_districts_and_schools_csv
# end.to change { Respondent.count }.by School.count
# end
# it 'seeds the total number of students and teachers even if the original number includes commas' do
# seeder.seed_respondents sample_districts_and_schools_csv
# school = School.find_by_name('Attleboro High School')
# academic_year = AcademicYear.find_by_range('2020-21')
# school_with_over_one_thousand_student_respondents = Respondent.where(school:, academic_year:).first
# expect(school_with_over_one_thousand_student_respondents.total_students).to eq 1792
# end
# end
context 'surveys' do
before :each do

View file

@ -18,6 +18,11 @@ describe ResponseRateCalculator, type: :model do
let(:insufficient_student_survey_item_1) { create(:student_survey_item, scale: sufficient_scale_1) }
let(:sufficient_student_survey_item_2) { create(:student_survey_item, scale: sufficient_scale_2) }
context '.grades_with_sufficient_responses' do
pending 'implement this'
before :each do
end
end
context 'when a students take a regular survey' do
context 'when the average number of student responses per question in a subcategory is equal to the student response threshold' do
before :each do

View file

@ -38,4 +38,34 @@ RSpec.describe SurveyItem, type: :model do
end
end
end
describe '.survey_type_for_grade' do
let(:early_education_survey_item1) { create(:early_education_survey_item, scale:) }
context 'when no responses exist' do
it 'it returns back a regular survey' do
expect(SurveyItem.survey_type_for_grade(school, academic_year, 0)).to eq :regular
end
end
context 'when some responses exist' do
context 'and the responses are only within the set of early education survey items' do
before :each do
create(:survey_item_response, survey_item: early_education_survey_item1, school:, academic_year:, grade: 0)
end
it 'reports the survey type as early education' do
expect(SurveyItem.survey_type_for_grade(school, academic_year, 0)).to eq :early_education
end
end
context 'when there are responses for both early education and regular survey items' do
before :each do
create(:survey_item_response, school:, academic_year:, grade: 0)
end
it 'reports the survey type as regular' do
expect(SurveyItem.survey_type_for_grade(school, academic_year, 0)).to eq :regular
end
end
end
end
end

View file

@ -27,7 +27,21 @@ Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
# If you are not using ActiveRecord, you can remove this line.
ActiveRecord::Migration.maintain_test_schema!
require 'database_cleaner/active_record'
RSpec.configure do |config|
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
config.fixture_path = "#{::Rails.root}/spec/fixtures"
@ -55,4 +69,22 @@ RSpec.configure do |config|
config.filter_rails_from_backtrace!
# arbitrary gems may also be filtered via:
# config.filter_gems_from_backtrace("gem name")
# config.before(:each) do
# DatabaseCleaner.strategy = :deletion
# end
# config.append_after(:each) do
# DatabaseCleaner.clean
# end
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
end

View file

@ -2,15 +2,25 @@ require 'rails_helper'
describe AdminDataLoader do
let(:path_to_admin_data) { Rails.root.join('spec', 'fixtures', 'sample_admin_data.csv') }
let(:ay_2018_19) { AcademicYear.find_by_range '2018-19' }
let(:attleboro) { School.find_by_dese_id 160_505 }
let(:winchester) { School.find_by_dese_id 3_440_505 }
let(:beachmont) { School.find_by_dese_id 2_480_013 }
let(:chronic_absense_rate) { AdminDataItem.find_by_admin_data_item_id 'a-vale-i1' }
let(:student_to_instructor_ratio) { AdminDataItem.find_by_admin_data_item_id 'a-sust-i3' }
let(:ay_2018_19) { create(:academic_year, range: '2018-19') }
let(:attleboro) { create(:school, name: 'Attleboro High School', dese_id: 160_505) }
let(:winchester) { create(:school, name: 'Winchester High School', dese_id: 3_440_505) }
let(:beachmont) { create(:school, dese_id: 2_480_013) }
let(:woodland) { create(:school, dese_id: 1_850_090) } # not explicitly tested
let(:chronic_absense_rate) { create(:admin_data_item, admin_data_item_id: 'a-vale-i1') }
let(:student_to_instructor_ratio) { create(:admin_data_item, admin_data_item_id: 'a-sust-i3') }
let(:a_reso) { create(:admin_data_item, admin_data_item_id: 'a-reso-i1') } # not explicitly tested
before :each do
Rails.application.load_seed
ay_2018_19
attleboro
winchester
beachmont
woodland
chronic_absense_rate
student_to_instructor_ratio
a_reso
AdminDataLoader.load_data filepath: path_to_admin_data
end
after :each do
@ -18,9 +28,6 @@ describe AdminDataLoader do
end
describe 'self.load_data' do
before :each do
AdminDataLoader.load_data filepath: path_to_admin_data
end
it 'loads the correct admin data values' do
# it 'assigns the academic year to admin data value' do
expect(AdminDataValue.where(school: attleboro,

View file

@ -1,23 +1,39 @@
require 'rails_helper'
RSpec.describe Dese::Loader do
let(:path_to_admin_data) { Rails.root.join('spec', 'fixtures', 'sample_four_d_data.csv') }
let(:ay_2020_21) { AcademicYear.find_by_range '2020-21' }
let(:ay_2018_19) { AcademicYear.find_by_range '2018-19' }
let(:ay_2017_18) { AcademicYear.find_by_range '2017-18' }
let(:ay_2016_17) { AcademicYear.find_by_range '2016-17' }
let(:four_d) { AdminDataItem.find_by_admin_data_item_id 'a-cgpr-i1' }
let(:attleboro) { School.find_by_dese_id 160_505 }
let(:winchester) { School.find_by_dese_id 3_440_505 }
let(:milford) { School.find_by_dese_id 1_850_505 }
let(:seacoast) { School.find_by_dese_id 2_480_520 }
let(:next_wave) { School.find_by_dese_id 2_740_510 }
let(:ay_2022_23) { create(:academic_year, range: '2022-23') }
let(:ay_2021_22) { create(:academic_year, range: '2021-22') }
let(:ay_2020_21) { create(:academic_year, range: '2020-21') }
let(:ay_2019_20) { create(:academic_year, range: '2019-20') }
let(:ay_2018_19) { create(:academic_year, range: '2018-19') }
let(:ay_2017_18) { create(:academic_year, range: '2017-18') }
let(:ay_2016_17) { create(:academic_year, range: '2016-17') }
let(:four_d) { create(:admin_data_item, admin_data_item_id: 'a-cgpr-i1') }
let(:attleboro) { create(:school, dese_id: 160_505) }
let(:winchester) { create(:school, dese_id: 3_440_505) }
let(:milford) { create(:school, dese_id: 1_850_505) }
let(:seacoast) { create(:school, dese_id: 2_480_520) }
let(:next_wave) { create(:school, dese_id: 2_740_510) }
before :each do
Rails.application.load_seed
ay_2022_23
ay_2021_22
ay_2020_21
ay_2019_20
ay_2018_19
ay_2017_18
ay_2016_17
four_d
attleboro
winchester
milford
seacoast
next_wave
end
after :each do
DatabaseCleaner.clean
# DatabaseCleaner.clean
end
context 'when running the loader' do
before :each do
@ -38,13 +54,13 @@ RSpec.describe Dese::Loader do
end
it 'loads the correct number of items' do
expect(AdminDataValue.count).to eq 230
expect(AdminDataValue.count).to eq 25
end
it 'is idempotent' do
Dese::Loader.load_data filepath: path_to_admin_data
expect(AdminDataValue.count).to eq 230
expect(AdminDataValue.count).to eq 25
end
end
end

View file

@ -0,0 +1,40 @@
require 'rails_helper'
describe EnrollmentLoader do
let(:path_to_enrollment_data) { Rails.root.join('spec', 'fixtures', 'sample_enrollment_data.csv') }
let(:ay_2022_23) { create(:academic_year, range: '2022-23') }
let(:attleboro) { School.find_or_create_by(name: 'Attleboro', dese_id: 160_505) }
let(:beachmont) { School.find_or_create_by(name: 'Beachmont', dese_id: 2_480_013) }
let(:winchester) { School.find_or_create_by(name: 'Winchester', dese_id: 3_440_505) }
before :each do
ay_2022_23
attleboro
beachmont
winchester
EnrollmentLoader.load_data filepath: path_to_enrollment_data
end
after :each do
DatabaseCleaner.clean
end
context 'self.load_data' do
it 'loads the correct enrollment numbers' do
academic_year = ay_2022_23
expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506
# expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 1844
expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34
expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64
expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58
expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336
expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361
expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331
expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339
expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352
expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383
end
end
end

View file

@ -1,46 +1,45 @@
require 'rails_helper'
describe ResponseRateLoader do
let(:school) { School.find_by_slug 'milford-high-school' }
let(:academic_year) { AcademicYear.find_by_range '2020-21' }
let(:respondents) do
respondents = Respondent.where(school:, academic_year:).first
respondents.total_students = 10
respondents.total_teachers = 10
respondents.save
let(:school) { create(:school, name: 'milford-high-school') }
let(:academic_year) { create(:academic_year, range: '2020-21') }
let(:respondent) do
respondent = create(:respondent, school:, academic_year:)
respondent.total_students = 10
respondent.total_teachers = 10
respondent.save
end
let(:short_form_survey) do
survey = Survey.find_by(school:, academic_year:)
survey = create(:survey, school:, academic_year:)
survey.form = :short
survey.save
survey
end
let(:subcategory) { Subcategory.find_by_subcategory_id '5D' }
let(:subcategory) { create(:subcategory, subcategory_id: '5D', name: 'Health') }
let(:measure) { create(:measure, measure_id: '5D-ii', subcategory:) }
let(:s_acst_q1) { SurveyItem.find_by_survey_item_id 's-acst-q1' }
let(:s_acst_q2) { SurveyItem.find_by_survey_item_id 's-acst-q2' } # short form
let(:s_acst_q3) { SurveyItem.find_by_survey_item_id 's-acst-q3' }
let(:s_poaf_q1) { SurveyItem.find_by_survey_item_id 's-poaf-q1' }
let(:s_poaf_q2) { SurveyItem.find_by_survey_item_id 's-poaf-q2' }
let(:s_poaf_q3) { SurveyItem.find_by_survey_item_id 's-poaf-q3' } # short form
let(:s_poaf_q4) { SurveyItem.find_by_survey_item_id 's-poaf-q4' }
let(:t_phya_q2) { SurveyItem.find_by_survey_item_id 't-phya-q2' }
let(:t_phya_q3) { SurveyItem.find_by_survey_item_id 't-phya-q3' }
let(:s_acst_q1) { create(:survey_item, survey_item_id: 's-acst-q1', scale: s_acst) }
let(:s_acst_q2) { create(:survey_item, survey_item_id: 's-acst-q2', scale: s_acst, on_short_form: true) } # short form
let(:s_acst_q3) { create(:survey_item, survey_item_id: 's-acst-q3', scale: s_acst) }
let(:s_poaf_q1) { create(:survey_item, survey_item_id: 's-poaf-q1', scale: s_poaf) }
let(:s_poaf_q2) { create(:survey_item, survey_item_id: 's-poaf-q2', scale: s_poaf) }
let(:s_poaf_q3) { create(:survey_item, survey_item_id: 's-poaf-q3', scale: s_poaf, on_short_form: true) } # short form
let(:s_poaf_q4) { create(:survey_item, survey_item_id: 's-poaf-q4', scale: s_poaf) }
let(:t_phya_q2) { create(:survey_item, survey_item_id: 't-phya-q2', scale: t_phya) }
let(:t_phya_q3) { create(:survey_item, survey_item_id: 't-phya-q3', scale: t_phya) }
let(:s_acst) { Scale.find_by_scale_id 's-acst' }
let(:s_poaf) { Scale.find_by_scale_id 's-poaf' }
let(:t_phya) { Scale.find_by_scale_id 't-phya' }
let(:response_rate) { ResponseRate.find_by(subcategory:, school:, academic_year:) }
before :each do
Rails.application.load_seed
respondents
let(:s_acst) { create(:scale, scale_id: 's-acst', measure:) }
let(:s_poaf) { create(:scale, scale_id: 's-poaf', measure:) }
let(:t_phya) { create(:scale, scale_id: 't-phya', measure:) }
let(:response_rate) { ResponseRate.find_by(school:, academic_year:) }
before do
short_form_survey
respondent
end
after :each do
after do
DatabaseCleaner.clean
end
@ -84,9 +83,10 @@ describe ResponseRateLoader do
end
end
context 'and only the first question for each scale was asked; e.g. like on a short form' do
before :each do
context 'and only the first question was asked; e.g. its on a short form and this is marked as a short form school' do
before do
create_list(:survey_item_response, 5, survey_item: s_acst_q1, likert_score: 3, school:, academic_year:)
s_acst_q1.update(on_short_form: true)
create_list(:survey_item_response, 5, survey_item: s_poaf_q1, likert_score: 3, school:, academic_year:)
create_list(:survey_item_response, 5, survey_item: t_phya_q2, likert_score: 3, school:, academic_year:)
@ -101,7 +101,7 @@ describe ResponseRateLoader do
context 'and no respondent entry exists for the school and year' do
before do
Respondent.destroy_all
Respondent.delete_all
create_list(:survey_item_response, 5, survey_item: s_acst_q1, likert_score: 3, school:, academic_year:)
create_list(:survey_item_response, 5, survey_item: s_poaf_q1, likert_score: 3, school:, academic_year:)
create_list(:survey_item_response, 5, survey_item: t_phya_q2, likert_score: 3, school:, academic_year:)
@ -116,7 +116,7 @@ describe ResponseRateLoader do
end
context 'and the school took the short form student survey' do
before :each do
before do
create_list(:survey_item_response, 1, survey_item: s_acst_q1, likert_score: 3, school:, academic_year:)
create_list(:survey_item_response, 6, survey_item: s_acst_q2, likert_score: 3, school:, academic_year:) # short form
create_list(:survey_item_response, 1, survey_item: s_acst_q3, likert_score: 3, school:, academic_year:)

View file

@ -0,0 +1,49 @@
require 'rails_helper'
describe StaffingLoader do
let(:path_to_staffing_data) { Rails.root.join('spec', 'fixtures', 'sample_staffing_data.csv') }
let(:ay_2022_23) { create(:academic_year, range: '2022-23') }
let(:ay_2021_22) { create(:academic_year, range: '2021-22') }
let(:attleboro) { School.find_or_create_by(name: 'Attleboro', dese_id: 160_505) }
let(:beachmont) { School.find_or_create_by(name: 'Beachmont', dese_id: 2_480_013) }
let(:winchester) { School.find_or_create_by(name: 'Winchester', dese_id: 3_440_505) }
before :each do
ay_2022_23
ay_2021_22
attleboro
beachmont
winchester
StaffingLoader.load_data filepath: path_to_staffing_data
StaffingLoader.clone_previous_year_data
end
after :each do
DatabaseCleaner.clean
end
context 'self.load_data' do
it 'loads the correct staffing numbers' do
academic_year = ay_2021_22
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
end
context 'when the staffing data is missing a school' do
after :each do
DatabaseCleaner.clean
end
it 'fills in empty staffing numbers with the previous years data' do
academic_year = ay_2022_23
expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5
expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4
expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8
end
end
end
end

View file

@ -2,22 +2,34 @@ require 'rails_helper'
describe StudentLoader do
let(:path_to_student_responses) { Rails.root.join('spec', 'fixtures', 'test_2020-21_student_survey_responses.csv') }
let(:american_indian) { Race.find_by_qualtrics_code(1) }
let(:asian) { Race.find_by_qualtrics_code(2) }
let(:black) { Race.find_by_qualtrics_code(3) }
let(:latinx) { Race.find_by_qualtrics_code(4) }
let(:white) { Race.find_by_qualtrics_code(5) }
let(:middle_eastern) { Race.find_by_qualtrics_code(8) }
let(:unknown_race) { Race.find_by_qualtrics_code(99) }
let(:multiracial) { Race.find_by_qualtrics_code(100) }
let(:female) { Gender.find_by_qualtrics_code(1) }
let(:male) { Gender.find_by_qualtrics_code(2) }
let(:another_gender) { Gender.find_by_qualtrics_code(3) }
let(:non_binary) { Gender.find_by_qualtrics_code(4) }
let(:unknown_gender) { Gender.find_by_qualtrics_code(99) }
let(:american_indian) { create(:race, qualtrics_code: 1) }
let(:asian) { create(:race, qualtrics_code: 2) }
let(:black) { create(:race, qualtrics_code: 3) }
let(:latinx) { create(:race, qualtrics_code: 4) }
let(:white) { create(:race, qualtrics_code: 5) }
let(:middle_eastern) { create(:race, qualtrics_code: 8) }
let(:unknown_race) { create(:race, qualtrics_code: 99) }
let(:multiracial) { create(:race, qualtrics_code: 100) }
let(:female) { create(:gender, qualtrics_code: 1) }
let(:male) { create(:gender, qualtrics_code: 2) }
let(:another_gender) { create(:gender, qualtrics_code: 3) }
let(:non_binary) { create(:gender, qualtrics_code: 4) }
let(:unknown_gender) { create(:gender, qualtrics_code: 99) }
before :all do
Rails.application.load_seed
before :each do
american_indian
asian
black
latinx
white
middle_eastern
unknown_race
multiracial
female
male
another_gender
non_binary
unknown_gender
end
after :each do
@ -87,7 +99,8 @@ describe StudentLoader do
end
end
context 'When using the rule to skip non Lowell schools' do
# TODO: get this test to run correctly. Since we are no longer seeding, we need to define schools, and districts; some Lowell, some not
xcontext 'When using the rule to skip non Lowell schools' do
before :each do
SurveyResponsesDataLoader.load_data filepath: path_to_student_responses
StudentLoader.load_data filepath: path_to_student_responses, rules: [Rule::SkipNonLowellSchools]

View file

@ -27,6 +27,10 @@ describe SurveyResponsesDataLoader do
Rails.application.load_seed
end
after :each do
DatabaseCleaner.clean
end
describe 'self.load_data' do
context 'loading teacher survey responses' do
before :each do
@ -75,46 +79,47 @@ describe SurveyResponsesDataLoader do
end
end
context 'when using Lowell rules to skip rows in the csv file' do
before :each do
SurveyResponsesDataLoader.load_data filepath: path_to_student_responses,
rules: [Rule::SkipNonLowellSchools]
end
# This file loads the seeder every time, which is slow. Turning it off since the above checks the correct behavior and the below will obviously fail when seeding lowell data
# context 'when using Lowell rules to skip rows in the csv file' do
# before :each do
# SurveyResponsesDataLoader.load_data filepath: path_to_student_responses,
# rules: [Rule::SkipNonLowellSchools]
# end
it 'rejects any non-lowell school' do
expect(SurveyItemResponse.where(response_id: 'student_survey_response_1').count).to eq 0
expect(SurveyItemResponse.count).to eq 128
end
# it 'rejects any non-lowell school' do
# expect(SurveyItemResponse.where(response_id: 'student_survey_response_1').count).to eq 0
# expect(SurveyItemResponse.count).to eq 128
# end
it 'loads the correct number of responses for lowell schools' do
expect(SurveyItemResponse.where(response_id: 'student_survey_response_2').count).to eq 0
expect(SurveyItemResponse.where(response_id: 'student_survey_response_3').count).to eq 25
expect(SurveyItemResponse.where(response_id: 'student_survey_response_4').count).to eq 22
expect(SurveyItemResponse.where(response_id: 'student_survey_response_5').count).to eq 27
end
# it 'loads the correct number of responses for lowell schools' do
# expect(SurveyItemResponse.where(response_id: 'student_survey_response_2').count).to eq 0
# expect(SurveyItemResponse.where(response_id: 'student_survey_response_3').count).to eq 25
# expect(SurveyItemResponse.where(response_id: 'student_survey_response_4').count).to eq 22
# expect(SurveyItemResponse.where(response_id: 'student_survey_response_5').count).to eq 27
# end
context 'when loading 22-23 butler survey responses' do
before :each do
SurveyResponsesDataLoader.load_data filepath: path_to_butler_student_responses,
rules: [Rule::SkipNonLowellSchools]
end
# context 'when loading 22-23 butler survey responses' do
# before :each do
# SurveyResponsesDataLoader.load_data filepath: path_to_butler_student_responses,
# rules: [Rule::SkipNonLowellSchools]
# end
it 'loads all the responses for Butler' do
expect(SurveyItemResponse.count).to eq 400
end
# it 'loads all the responses for Butler' do
# expect(SurveyItemResponse.count).to eq 400
# end
it 'blank entries for grade get loaded as nils, not zero values' do
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_1').first.grade).to eq 7
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_2').first.grade).to eq 7
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_3').first.grade).to eq 7
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_4').first.grade).to eq 5
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_5').first.grade).to eq 7
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_6').first.grade).to eq 6
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_7').first.grade).to eq nil
expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_8').first.grade).to eq 0
end
end
end
# it 'blank entries for grade get loaded as nils, not zero values' do
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_1').first.grade).to eq 7
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_2').first.grade).to eq 7
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_3').first.grade).to eq 7
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_4').first.grade).to eq 5
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_5').first.grade).to eq 7
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_6').first.grade).to eq 6
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_7').first.grade).to eq nil
# expect(SurveyItemResponse.where(response_id: 'butler_student_survey_response_8').first.grade).to eq 0
# end
# end
# end
end
end

View file

@ -43,18 +43,18 @@ describe 'District Admin', js: true do
# let(:username) { 'winchester' }
# let(:password) { 'winchester!' }
let(:respondents) do
respondents = Respondent.where(school:, academic_year: ay_2021_22).first
respondents.total_students = 8
respondents.total_teachers = 8
respondents.save
respondent = Respondent.find_or_initialize_by(school:, academic_year: ay_2021_22)
respondent.total_students = 8
respondent.total_teachers = 8
respondent.save
respondents = Respondent.where(school:, academic_year: ay_2019_20).first
respondents.total_students = 8
respondents.total_teachers = 8
respondents.save
respondent = Respondent.find_or_initialize_by(school:, academic_year: ay_2019_20)
respondent.total_students = 8
respondent.total_teachers = 8
respondent.save
end
before :each do
before do
Rails.application.load_seed
respondents
@ -99,7 +99,7 @@ describe 'District Admin', js: true do
SurveyItemResponse.import survey_item_responses
end
after :each do
after do
DatabaseCleaner.clean
end