mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
chore: seed academic years, districts and schools
This commit is contained in:
parent
30f9f05a63
commit
cd7b05df73
94 changed files with 697970 additions and 14 deletions
132
app/lib/dashboard/seeder.rb
Normal file
132
app/lib/dashboard/seeder.rb
Normal file
|
|
@ -0,0 +1,132 @@
|
||||||
|
module Dashboard
|
||||||
|
class Seeder
|
||||||
|
def seed_academic_years(*academic_year_ranges)
|
||||||
|
academic_years = []
|
||||||
|
academic_year_ranges.each do |range|
|
||||||
|
academic_years << { range: }
|
||||||
|
end
|
||||||
|
|
||||||
|
AcademicYear.insert_all(academic_years, unique_by: [:id])
|
||||||
|
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
|
||||||
|
|
||||||
|
district_code = row["District Code"].try(:strip)
|
||||||
|
dese_id = row["DESE School ID"].strip
|
||||||
|
dese_ids << dese_id
|
||||||
|
school_name = row["School Name"].strip
|
||||||
|
school_code = row["School Code"].try(:strip)
|
||||||
|
hs = row["HS?"]
|
||||||
|
|
||||||
|
district = District.find_or_create_by! name: district_name
|
||||||
|
district.slug = district_name.parameterize
|
||||||
|
district.qualtrics_code = district_code
|
||||||
|
district.save
|
||||||
|
schools << { dese_id:, dashboard_district_id: district.id, qualtrics_code: school_code, name: school_name,
|
||||||
|
is_hs: marked?(hs), slug: school_name.parameterize }
|
||||||
|
end
|
||||||
|
|
||||||
|
School.upsert_all(schools)
|
||||||
|
|
||||||
|
Respondent.joins(:school).where.not("school.dese_id": dese_ids).destroy_all
|
||||||
|
School.where.not(dese_id: dese_ids).destroy_all
|
||||||
|
School.where(dese_id: nil).destroy_all
|
||||||
|
end
|
||||||
|
|
||||||
|
def seed_sqm_framework(csv_file)
|
||||||
|
admin_data_item_ids = []
|
||||||
|
CSV.parse(File.read(csv_file), headers: true) do |row|
|
||||||
|
category_id = row["Category ID"].strip
|
||||||
|
category_name = row["Category"].strip
|
||||||
|
category = Category.find_or_create_by!(category_id:)
|
||||||
|
category.update! name: category_name, description: row["Category Description"].strip,
|
||||||
|
short_description: row["Category Short Description"], category_id:, slug: category_name.parameterize
|
||||||
|
|
||||||
|
subcategory_id = row["Subcategory ID"].strip
|
||||||
|
subcategory = Subcategory.find_or_create_by!(subcategory_id:, category:)
|
||||||
|
subcategory.update! name: row["Subcategory"].strip, description: row["Subcategory Description"].strip
|
||||||
|
|
||||||
|
measure_id = row["Measure ID"].strip
|
||||||
|
measure_name = row["Measures"].try(:strip)
|
||||||
|
watch_low = row["Item Watch Low"].try(:strip)
|
||||||
|
growth_low = row["Item Growth Low"].try(:strip)
|
||||||
|
approval_low = row["Item Approval Low"].try(:strip)
|
||||||
|
ideal_low = row["Item Ideal Low"].try(:strip)
|
||||||
|
on_short_form = row["On Short Form?"].try(:strip)
|
||||||
|
measure_description = row["Measure Description"].try(:strip)
|
||||||
|
|
||||||
|
next if row["Source"] == "No source"
|
||||||
|
|
||||||
|
measure = Measure.find_or_create_by!(measure_id:, subcategory:)
|
||||||
|
measure.name = measure_name
|
||||||
|
measure.description = measure_description
|
||||||
|
measure.save!
|
||||||
|
|
||||||
|
data_item_id = row["Survey Item ID"].strip
|
||||||
|
scale_id = data_item_id.split("-")[0..1].join("-")
|
||||||
|
scale = Scale.find_or_create_by!(scale_id:, measure:)
|
||||||
|
|
||||||
|
if %w[Teachers Students].include? row["Source"]
|
||||||
|
survey_item = SurveyItem.where(survey_item_id: data_item_id, scale:).first_or_create
|
||||||
|
survey_item.watch_low_benchmark = watch_low if watch_low
|
||||||
|
survey_item.growth_low_benchmark = growth_low if growth_low
|
||||||
|
survey_item.approval_low_benchmark = approval_low if approval_low
|
||||||
|
survey_item.ideal_low_benchmark = ideal_low if ideal_low
|
||||||
|
survey_item.on_short_form = marked? on_short_form
|
||||||
|
survey_item.update! prompt: row["Question/item (22-23)"].strip
|
||||||
|
end
|
||||||
|
|
||||||
|
if row["Source"] == "Admin Data" && row["Active admin & survey items"] == "TRUE"
|
||||||
|
admin_data_item = AdminDataItem.where(admin_data_item_id: data_item_id, scale:).first_or_create
|
||||||
|
admin_data_item.watch_low_benchmark = watch_low if watch_low
|
||||||
|
admin_data_item.growth_low_benchmark = growth_low if growth_low
|
||||||
|
admin_data_item.approval_low_benchmark = approval_low if approval_low
|
||||||
|
admin_data_item.ideal_low_benchmark = ideal_low if ideal_low
|
||||||
|
admin_data_item.description = row["Question/item (22-23)"].strip
|
||||||
|
admin_data_item.hs_only_item = marked? row["HS only admin item?"]
|
||||||
|
admin_data_item.save!
|
||||||
|
admin_data_item_ids << admin_data_item.id
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
AdminDataValue.where.not(admin_data_item_id: admin_data_item_ids).delete_all
|
||||||
|
AdminDataItem.where.not(id: admin_data_item_ids).delete_all
|
||||||
|
end
|
||||||
|
|
||||||
|
# def seed_demographics(csv_file)
|
||||||
|
# DemographicLoader.load_data(filepath: csv_file)
|
||||||
|
# end
|
||||||
|
|
||||||
|
# def seed_enrollment(csv_file)
|
||||||
|
# EnrollmentLoader.load_data(filepath: csv_file)
|
||||||
|
# missing_enrollment_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).none? do |respondent|
|
||||||
|
# respondent&.total_students&.zero?
|
||||||
|
# end
|
||||||
|
|
||||||
|
# EnrollmentLoader.clone_previous_year_data if missing_enrollment_for_current_year
|
||||||
|
# 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&.zero?
|
||||||
|
# end
|
||||||
|
|
||||||
|
# StaffingLoader.clone_previous_year_data if missing_staffing_for_current_year
|
||||||
|
# end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def marked?(mark)
|
||||||
|
mark.present? ? mark.upcase.strip == "X" : false
|
||||||
|
end
|
||||||
|
|
||||||
|
def remove_commas(target)
|
||||||
|
target.delete(",") if target.present?
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
@ -5,7 +5,7 @@ module Dashboard
|
||||||
|
|
||||||
scope :sorted, -> { order(:category_id) }
|
scope :sorted, -> { order(:category_id) }
|
||||||
|
|
||||||
has_many :subcategories
|
has_many :subcategories, class_name: "Subcategory", foreign_key: :dashboard_category_id
|
||||||
has_many :measures, through: :subcategories
|
has_many :measures, through: :subcategories
|
||||||
has_many :admin_data_items, through: :measures
|
has_many :admin_data_items, through: :measures
|
||||||
has_many :scales, through: :subcategories
|
has_many :scales, through: :subcategories
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
module Dashboard
|
module Dashboard
|
||||||
class District < ApplicationRecord
|
class District < ApplicationRecord
|
||||||
has_many :schools, class_name: "School", foreign_key: :id
|
has_many :schools, class_name: "School", foreign_key: :dashboard_district_id
|
||||||
|
|
||||||
validates :name, presence: true
|
validates :name, presence: true
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
module Dashboard
|
module Dashboard
|
||||||
class Respondent < ApplicationRecord
|
class Respondent < ApplicationRecord
|
||||||
belongs_to :school
|
belongs_to :school, class_name: "School", foreign_key: :dashboard_school_id
|
||||||
belongs_to :dashboard_academic_year
|
belongs_to :academic_year, class_name: "AcademicYear", foreign_key: :dashboard_academic_year_id
|
||||||
|
|
||||||
validates :school, uniqueness: { scope: :academic_year }
|
validates :school, uniqueness: { scope: :academic_year }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
module Dashboard
|
module Dashboard
|
||||||
class School < ApplicationRecord
|
class School < ApplicationRecord
|
||||||
|
include FriendlyId
|
||||||
|
friendly_id :name, use: :slugged
|
||||||
|
|
||||||
belongs_to :district, class_name: "District", foreign_key: :dashboard_district_id
|
belongs_to :district, class_name: "District", foreign_key: :dashboard_district_id
|
||||||
|
|
||||||
# has_many :dashboard_survey_item_responses, dependent: :delete_all
|
# has_many :dashboard_survey_item_responses, dependent: :delete_all
|
||||||
|
|
@ -9,9 +12,6 @@ module Dashboard
|
||||||
scope :alphabetic, -> { order(name: :asc) }
|
scope :alphabetic, -> { order(name: :asc) }
|
||||||
scope :school_hash, -> { all.map { |school| [school.dese_id, school] }.to_h }
|
scope :school_hash, -> { all.map { |school| [school.dese_id, school] }.to_h }
|
||||||
|
|
||||||
include FriendlyId
|
|
||||||
friendly_id :name, use: [:slugged]
|
|
||||||
|
|
||||||
def self.find_by_district_code_and_school_code(district_code, school_code)
|
def self.find_by_district_code_and_school_code(district_code, school_code)
|
||||||
School
|
School
|
||||||
.joins(:district)
|
.joins(:district)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
module Dashboard
|
module Dashboard
|
||||||
class Subcategory < ApplicationRecord
|
class Subcategory < ApplicationRecord
|
||||||
belongs_to :dashboard_categories, class_name: "Dashboard::Category"
|
belongs_to :category, class_name: "Category", foreign_key: :dashboard_category_id
|
||||||
|
|
||||||
has_many :dashboard_measures
|
has_many :dashboard_measures
|
||||||
has_many :dashboard_survey_items, through: :dashboard_measures
|
has_many :dashboard_survey_items, through: :dashboard_measures
|
||||||
|
|
|
||||||
18407
data/dashboard/admin_data/dese/1A_1_teacher_data.csv
Normal file
18407
data/dashboard/admin_data/dese/1A_1_teacher_data.csv
Normal file
File diff suppressed because it is too large
Load diff
12805
data/dashboard/admin_data/dese/1A_3_staffing_retention.csv
Normal file
12805
data/dashboard/admin_data/dese/1A_3_staffing_retention.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/1A_3_teachers_of_color.csv
Normal file
12899
data/dashboard/admin_data/dese/1A_3_teachers_of_color.csv
Normal file
File diff suppressed because it is too large
Load diff
11065
data/dashboard/admin_data/dese/2A_1_students_disciplined.csv
Normal file
11065
data/dashboard/admin_data/dese/2A_1_students_disciplined.csv
Normal file
File diff suppressed because it is too large
Load diff
11067
data/dashboard/admin_data/dese/2A_1_students_suspended.csv
Normal file
11067
data/dashboard/admin_data/dese/2A_1_students_suspended.csv
Normal file
File diff suppressed because it is too large
Load diff
18407
data/dashboard/admin_data/dese/2C_1_attendance.csv
Normal file
18407
data/dashboard/admin_data/dese/2C_1_attendance.csv
Normal file
File diff suppressed because it is too large
Load diff
11067
data/dashboard/admin_data/dese/3A_1_average_class_size.csv
Normal file
11067
data/dashboard/admin_data/dese/3A_1_average_class_size.csv
Normal file
File diff suppressed because it is too large
Load diff
25778
data/dashboard/admin_data/dese/3A_2_age_staffing.csv
Normal file
25778
data/dashboard/admin_data/dese/3A_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/3A_2_grade_subject_staffing.csv
Normal file
12899
data/dashboard/admin_data/dese/3A_2_grade_subject_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
2014
data/dashboard/admin_data/dese/3B_1_advcoursecomprate.csv
Normal file
2014
data/dashboard/admin_data/dese/3B_1_advcoursecomprate.csv
Normal file
File diff suppressed because it is too large
Load diff
1994
data/dashboard/admin_data/dese/3B_1_ap.csv
Normal file
1994
data/dashboard/admin_data/dese/3B_1_ap.csv
Normal file
File diff suppressed because it is too large
Load diff
2315
data/dashboard/admin_data/dese/3B_1_masscore.csv
Normal file
2315
data/dashboard/admin_data/dese/3B_1_masscore.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/3B_2_student_by_race_and_gender.csv
Normal file
12899
data/dashboard/admin_data/dese/3B_2_student_by_race_and_gender.csv
Normal file
File diff suppressed because it is too large
Load diff
12892
data/dashboard/admin_data/dese/3B_2_teacher_by_race_and_gender.csv
Normal file
12892
data/dashboard/admin_data/dese/3B_2_teacher_by_race_and_gender.csv
Normal file
File diff suppressed because it is too large
Load diff
1983
data/dashboard/admin_data/dese/4A_1_grade_nine_course_pass.csv
Normal file
1983
data/dashboard/admin_data/dese/4A_1_grade_nine_course_pass.csv
Normal file
File diff suppressed because it is too large
Load diff
1936
data/dashboard/admin_data/dese/4B_2_five_year_grad.csv
Normal file
1936
data/dashboard/admin_data/dese/4B_2_five_year_grad.csv
Normal file
File diff suppressed because it is too large
Load diff
2336
data/dashboard/admin_data/dese/4B_2_four_year_grad.csv
Normal file
2336
data/dashboard/admin_data/dese/4B_2_four_year_grad.csv
Normal file
File diff suppressed because it is too large
Load diff
10537
data/dashboard/admin_data/dese/4B_2_retention.csv
Normal file
10537
data/dashboard/admin_data/dese/4B_2_retention.csv
Normal file
File diff suppressed because it is too large
Load diff
2384
data/dashboard/admin_data/dese/4D_1_plans_of_grads.csv
Normal file
2384
data/dashboard/admin_data/dese/4D_1_plans_of_grads.csv
Normal file
File diff suppressed because it is too large
Load diff
8907
data/dashboard/admin_data/dese/5C_1_art_course.csv
Normal file
8907
data/dashboard/admin_data/dese/5C_1_art_course.csv
Normal file
File diff suppressed because it is too large
Load diff
12891
data/dashboard/admin_data/dese/5D_2_age_staffing.csv
Normal file
12891
data/dashboard/admin_data/dese/5D_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
22133
data/dashboard/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv
Normal file
22133
data/dashboard/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
18407
data/dashboard/admin_data/dese/archive/2023-April/2C_1_attendance.csv
Normal file
18407
data/dashboard/admin_data/dese/archive/2023-April/2C_1_attendance.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
33171
data/dashboard/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv
Normal file
33171
data/dashboard/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
11067
data/dashboard/admin_data/dese/archive/2023-April/3A_2_enrollment.csv
Normal file
11067
data/dashboard/admin_data/dese/archive/2023-April/3A_2_enrollment.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1994
data/dashboard/admin_data/dese/archive/2023-April/3B_1_ap.csv
Normal file
1994
data/dashboard/admin_data/dese/archive/2023-April/3B_1_ap.csv
Normal file
File diff suppressed because it is too large
Load diff
2315
data/dashboard/admin_data/dese/archive/2023-April/3B_1_masscore.csv
Normal file
2315
data/dashboard/admin_data/dese/archive/2023-April/3B_1_masscore.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
8799
data/dashboard/admin_data/dese/archive/2023-April/4B_2_retention.csv
Normal file
8799
data/dashboard/admin_data/dese/archive/2023-April/4B_2_retention.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
11059
data/dashboard/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv
Normal file
11059
data/dashboard/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/archive/2023-April/5D_2_enrollments.csv
Normal file
12899
data/dashboard/admin_data/dese/archive/2023-April/5D_2_enrollments.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/archive/2023-April/enrollments.csv
Normal file
12899
data/dashboard/admin_data/dese/archive/2023-April/enrollments.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
18407
data/dashboard/admin_data/dese/archive/june-2023/2C_1_attendance.csv
Normal file
18407
data/dashboard/admin_data/dese/archive/june-2023/2C_1_attendance.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
25778
data/dashboard/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv
Normal file
25778
data/dashboard/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1994
data/dashboard/admin_data/dese/archive/june-2023/3B_1_ap.csv
Normal file
1994
data/dashboard/admin_data/dese/archive/june-2023/3B_1_ap.csv
Normal file
File diff suppressed because it is too large
Load diff
2315
data/dashboard/admin_data/dese/archive/june-2023/3B_1_masscore.csv
Normal file
2315
data/dashboard/admin_data/dese/archive/june-2023/3B_1_masscore.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
10537
data/dashboard/admin_data/dese/archive/june-2023/4B_2_retention.csv
Normal file
10537
data/dashboard/admin_data/dese/archive/june-2023/4B_2_retention.csv
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
8907
data/dashboard/admin_data/dese/archive/june-2023/5C_1_art_course.csv
Normal file
8907
data/dashboard/admin_data/dese/archive/june-2023/5C_1_art_course.csv
Normal file
File diff suppressed because it is too large
Load diff
12891
data/dashboard/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv
Normal file
12891
data/dashboard/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/archive/june-2023/enrollments.csv
Normal file
12899
data/dashboard/admin_data/dese/archive/june-2023/enrollments.csv
Normal file
File diff suppressed because it is too large
Load diff
12899
data/dashboard/admin_data/dese/enrollments.csv
Normal file
12899
data/dashboard/admin_data/dese/enrollments.csv
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,36 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Average class size,2022-23,50,20,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
Average daily attendance,2022-23,50,93.8,number,a-vale-i2,,,90,(4*raw)/benchmark,4.168888889
|
||||||
|
Chronic absence rate,2022-23,50,11.5,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,3.4
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,50,100,number,a-picp-i1,,,77.5,(4*raw)/benchmark,5.161290323
|
||||||
|
Total number of students enrolled in school,2022-23,50,569,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,50,57,number,NA,,,,,
|
||||||
|
Percent of students suspended,2022-23,50,0,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
Percent of students suspended for 10+ days,2022-23,50,0,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
% Teachers of Color,2022-23,50,5.3,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,1.65625
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,50,,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,0
|
||||||
|
5-year graduation rate (HS only),2022-23,50,,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,0
|
||||||
|
9th grade passing rate,2022-23,50,,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,0
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,50,27.8,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,5.56
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,50,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,50,,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,0
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,50,,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,0
|
||||||
|
Percent students retained in a grade,2022-23,50,2,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
Percent teacher returning (including retirement),2022-23,50,87,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.094117647
|
||||||
|
Percent teachers with 10+ days absent,2022-23,50,4,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,7.428571429
|
||||||
|
Percentage teachers National Board certified,2022-23,50,0,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,50,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,50,44,percentage,a-exp-i1,,,80,(4*raw)/benchmark,2.2
|
||||||
|
Placement in college or career (HS only),2022-23,50,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,0
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,50,,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
% Teachers of Color,2022-23,50,5.3,percentage,a-cure-i1,,,,,
|
||||||
|
% Students of Color,2022-23,50,75.5,percentage,a-cure-i1,,,,,
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,50,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),4.965333333
|
||||||
|
Student to art teacher ratio,2022-23,50,1,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),3.448
|
||||||
|
Student to career-technical education courses (HS only),2022-23,50,,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,50,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,50,,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to instructional support staff ratio,2022-23,50,51,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.971717719
|
||||||
|
Student to mental health counselor ratio,2022-23,50,0,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
Student to number of courses ratio (HS only),2022-23,50,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,50,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Average class size,2022-23,40,20,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
Average daily attendance,2022-23,40,94,number,a-vale-i2,,,90,(4*raw)/benchmark,4.177777778
|
||||||
|
Chronic absence rate,2022-23,40,11,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,3.6
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,40,80,number,a-picp-i1,,,77.5,(4*raw)/benchmark,4.129032258
|
||||||
|
Total number of students enrolled in school,2022-23,40,352,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,40,40,number,NA,,,,,
|
||||||
|
Percent of students suspended,2022-23,40,10,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,0.4098671727
|
||||||
|
Percent of students suspended for 10+ days,2022-23,40,3,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,-4
|
||||||
|
% Teachers of Color,2022-23,40,15,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,4.6875
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,40,88,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,4.4
|
||||||
|
5-year graduation rate (HS only),2022-23,40,96,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,4.517647059
|
||||||
|
9th grade passing rate,2022-23,40,94,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,4.960422164
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,40,27.8,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,5.56
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,40,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,40,39.55,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,5.273333333
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,40,35.29,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,3.878021978
|
||||||
|
Percent students retained in a grade,2022-23,40,10,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,-12
|
||||||
|
Percent teacher returning (including retirement),2022-23,40,94,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.423529412
|
||||||
|
Percent teachers with 10+ days absent,2022-23,40,1,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,7.857142857
|
||||||
|
Percentage teachers National Board certified,2022-23,40,0,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,40,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,40,70,percentage,a-exp-i1,,,80,(4*raw)/benchmark,3.5
|
||||||
|
Placement in college or career (HS only),2022-23,40,62.7,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,3.823170732
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,40,,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
% Teachers of Color,2022-23,40,15,percentage,a-cure-i1,,,,,
|
||||||
|
% Students of Color,2022-23,40,69.3,perentage,a-cure-i1,,,,,
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,40,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.122666667
|
||||||
|
Student to art teacher ratio,2022-23,40,1,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),5.184
|
||||||
|
Student to career-technical education courses (HS only),2022-23,40,0,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,40,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,40,2,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),5.184
|
||||||
|
Student to instructional support staff ratio,2022-23,40,39,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),7.168143684
|
||||||
|
Student to mental health counselor ratio,2022-23,40,1,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),2.368
|
||||||
|
Student to number of courses ratio (HS only),2022-23,40,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,40,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Average class size,2022-23,60,20,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
Average daily attendance,2022-23,60,94.8,number,a-vale-i2,,,90,(4*raw)/benchmark,4.213333333
|
||||||
|
Chronic absence rate,2022-23,60,9.3,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,4.28
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,60,20,number,a-picp-i1,,,77.5,(4*raw)/benchmark,1.032258065
|
||||||
|
Total number of students enrolled in school,2022-23,60,289,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,60,33,number,NA,,,,,
|
||||||
|
Percent of students suspended,2022-23,60,3,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,5.722960152
|
||||||
|
Percent of students suspended for 10+ days,2022-23,60,1,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
% Teachers of Color,2022-23,60,18.2,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,5.6875
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,60,,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,0
|
||||||
|
5-year graduation rate (HS only),2022-23,60,,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,0
|
||||||
|
9th grade passing rate,2022-23,60,,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,0
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,60,,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,0
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,60,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,60,,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,0
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,60,,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,0
|
||||||
|
Percent students retained in a grade,2022-23,60,1,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,6
|
||||||
|
Percent teacher returning (including retirement),2022-23,60,98,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.611764706
|
||||||
|
Percent teachers with 10+ days absent,2022-23,60,2,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,7.714285714
|
||||||
|
Percentage teachers National Board certified,2022-23,60,0,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,60,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,60,99,percentage,a-exp-i1,,,80,(4*raw)/benchmark,4.95
|
||||||
|
Placement in college or career (HS only),2022-23,60,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,0
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,60,,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
% Teachers of Color,2022-23,60,18.2,percentage,a-cure-i1,,,,,
|
||||||
|
% Students of Color,2022-23,60,73.3,percentage,a-cure-i1,,,,,
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,60,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.458666667
|
||||||
|
Student to art teacher ratio,2022-23,60,1,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),5.688
|
||||||
|
Student to career-technical education courses (HS only),2022-23,60,,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,60,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,60,,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to instructional support staff ratio,2022-23,60,32,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),7.167626728
|
||||||
|
Student to mental health counselor ratio,2022-23,60,1,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),3.376
|
||||||
|
Student to number of courses ratio (HS only),2022-23,60,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,60,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Total number of students enrolled in school,2022-23,200,873,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,200,58.4,number,NA,,,,,
|
||||||
|
Placement in college or career (HS only),2022-23,200,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,#DIV/0!
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,200,605 to 827,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#VALUE!
|
||||||
|
Student to career-technical education courses (HS only),2022-23,200,572 to 68,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#VALUE!
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,200,0,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,200,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,#REF!
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,200,31.25,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,4.166666667
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,200,59.68,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,11.936
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,200,10.59,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,1.163736264
|
||||||
|
Student to number of courses ratio (HS only),2022-23,200,312 to 592,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#VALUE!
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,200,120 to 592,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#VALUE!
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,200,100,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,5
|
||||||
|
Percent students retained in a grade,2022-23,200,0,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
5-year graduation rate (HS only),2022-23,200,95,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,4.470588235
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,200,72,percentage,a-exp-i1,,,80,(4*raw)/benchmark,3.6
|
||||||
|
Percentage teachers National Board certified,2022-23,200,0.01,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0.004
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,200,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
9th grade passing rate,2022-23,200,95,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,5.013192612
|
||||||
|
Percent teacher returning (including retirement),2022-23,200,83,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,3.905882353
|
||||||
|
Percent teachers with 10+ days absent,2022-23,200,68,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,-1.714285714
|
||||||
|
% Teachers of Color,2022-23,200,0,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,0
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,200,0.5,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),-1.312
|
||||||
|
Percent of students suspended,2022-23,200,6.19,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,3.30170778
|
||||||
|
Percent of students suspended for 10+ days,2022-23,200,0,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,200,84,number,a-picp-i1,,,77.5,(4*raw)/benchmark,4.335483871
|
||||||
|
Average class size,2022-23,200,23.875,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,3.225
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,200,3,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),3.344
|
||||||
|
Student to mental health counselor ratio,2022-23,200,2,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1.016
|
||||||
|
Student to instructional support staff ratio,2022-23,200,11.05063291,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),0.7188940092
|
||||||
|
Student to art teacher ratio,2022-23,200,0.5,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),-5.968
|
||||||
|
Chronic absence rate,2022-23,200,7.325,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,5.07
|
||||||
|
Average daily attendance,2022-23,200,96.015,number,a-vale-i2,,,90,(4*raw)/benchmark,4.267333333
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Total number of teachers employeed in school,2022-23,160,25.1,number,NA,,,,,
|
||||||
|
Total number of students enrolled in school,2022-23,160,247,number,NA,,,NA,NA,
|
||||||
|
Average daily attendance,2022-23,160,96.92,number,a-vale-i2,,,90,(4*raw)/benchmark,4.307555556
|
||||||
|
Chronic absence rate,2022-23,160,6.17,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,5.532
|
||||||
|
Student to art teacher ratio,2022-23,160,0.5,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),4.048
|
||||||
|
Student to instructional support staff ratio,2022-23,160,19,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.801843318
|
||||||
|
Student to mental health counselor ratio,2022-23,160,1,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),4.048
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,160,,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Average class size,2022-23,160,20,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,4
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,160,100,number,a-picp-i1,,,77.5,(4*raw)/benchmark,5.161290323
|
||||||
|
Percent of students suspended for 10+ days,2022-23,160,0,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
Percent of students suspended,2022-23,160,3.16,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,5.601518027
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,160,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.682666667
|
||||||
|
% Teachers of Color,2022-23,160,0,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,0
|
||||||
|
Percent teachers with 10+ days absent,2022-23,160,42,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,2
|
||||||
|
Percent teacher returning (including retirement),2022-23,160,97,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.564705882
|
||||||
|
9th grade passing rate,2022-23,160,,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,160,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
Percentage teachers National Board certified,2022-23,160,0,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,160,60,percentage,a-exp-i1,,,80,(4*raw)/benchmark,3
|
||||||
|
5-year graduation rate (HS only),2022-23,160,,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,0
|
||||||
|
Percent students retained in a grade,2022-23,160,0,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,160,,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,0
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,160,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to number of courses ratio (HS only),2022-23,160,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,160,,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,0
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,160,,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,160,,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,0
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,160,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,160,0,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
Student to career-technical education courses (HS only),2022-23,160,,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,160,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),n/a
|
||||||
|
Placement in college or career (HS only),2022-23,160,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,0
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Total number of students enrolled in school,2022-23,110,613,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,110,47.6,number,NA,,,,,
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,110,100,number,a-picp-i1,,,77.5,(4*raw)/benchmark,5.161290323
|
||||||
|
Average class size,2022-23,110,25,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,3
|
||||||
|
Chronic absence rate,2022-23,110,5.66,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,5.736
|
||||||
|
Average daily attendance,2022-23,110,97.28,number,a-vale-i2,,,90,(4*raw)/benchmark,4.323555556
|
||||||
|
Percent of students suspended,2022-23,110,3.93,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,5.017077799
|
||||||
|
Percent of students suspended for 10+ days,2022-23,110,0,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
Placement in college or career (HS only),2022-23,110,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,0
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,110,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,110,,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,0
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,110,,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,0
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,110,,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,0
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,110,,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,0
|
||||||
|
Percent students retained in a grade,2022-23,110,0,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
5-year graduation rate (HS only),2022-23,110,,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,110,65,percentage,a-exp-i1,,,80,(4*raw)/benchmark,3.25
|
||||||
|
Percentage teachers National Board certified,2022-23,110,0.02,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0.008
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,110,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
9th grade passing rate,2022-23,110,,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,0
|
||||||
|
Percent teacher returning (including retirement),2022-23,110,87,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.094117647
|
||||||
|
Percent teachers with 10+ days absent,2022-23,110,43,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,1.857142857
|
||||||
|
% Teachers of Color,2022-23,110,0,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,0
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,110,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to career-technical education courses (HS only),2022-23,110,,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,110,0,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),1
|
||||||
|
Student to number of courses ratio (HS only),2022-23,110,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,110,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,110,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),4.730666667
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,110,,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to mental health counselor ratio,2022-23,110,2,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),3.096
|
||||||
|
Student to instructional support staff ratio,2022-23,110,19,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),5.02643706
|
||||||
|
Student to art teacher ratio,2022-23,110,1.5,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),4.730666667
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
Information Requested,Academic Year,School ID,Raw Score,Data Unit,Item ID,Reverse Scored,HS only ,Admin Data Benchmark (Absolute),Benchmark Formula,Likert Score
|
||||||
|
Total number of students enrolled in school,2022-23,150,107,number,NA,,,NA,NA,
|
||||||
|
Total number of teachers employeed in school,2022-23,150,11.4,number,NA,,,,,
|
||||||
|
Percent of students enrolled in at least 1 arts course,2022-23,150,100,number,a-picp-i1,,,77.5,(4*raw)/benchmark,5.161290323
|
||||||
|
Average class size,2022-23,150,17,number,a-reso-i1,X,,20,(benchmark - raw score) + benchmark) * 4 / benchmark,4.6
|
||||||
|
Chronic absence rate,2022-23,150,5.74,number,a-vale-i1,X,,10,(benchmark - raw score) + benchmark) * 4 / benchmark,5.704
|
||||||
|
Average daily attendance,2022-23,150,96.82,number,a-vale-i2,,,90,(4*raw)/benchmark,4.303111111
|
||||||
|
Percent of students suspended,2022-23,150,5.83,percent,a-phys-i1,X,,5.27,(benchmark - raw score) + benchmark) * 4 / benchmark,3.574952562
|
||||||
|
Percent of students suspended for 10+ days,2022-23,150,0,percent,a-phys-i3,X,,1,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
Placement in college or career (HS only),2022-23,150,,percentage,a-cgpr-i1,,X,65.6,(4*raw)/benchmark,0
|
||||||
|
Percent graduates completing MassCORE (HS only),2022-23,150,,percentage,a-curv-i1,,X,90,(4*raw)/benchmark,0
|
||||||
|
Percent juniors and seniors enrolled in one AP (HS only),2022-23,150,,percentage,a-curv-i2,,X,30,(4*raw)/benchmark,0
|
||||||
|
Percent AP test takers scoring 3 or higher (HS only),2022-23,150,,percentage,a-curv-i3,,X,20,(4*raw)/benchmark,0
|
||||||
|
Percent students of color completing advanced coursework (HS only),2022-23,150,,percentage,a-curv-i4,,X,36.4,(4*raw)/benchmark,0
|
||||||
|
4-year on-time graduation rate (HS only),2022-23,150,,percentage,a-degr-i1,,X,80,(4*raw)/benchmark,0
|
||||||
|
Percent students retained in a grade,2022-23,150,0,percentage,a-degr-i2,X,,2,(benchmark - raw score) + benchmark) * 4 / benchmark,8
|
||||||
|
5-year graduation rate (HS only),2022-23,150,,percentage,a-degr-i3,,X,85,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers with 3+ years of experience,2022-23,150,78,percentage,a-exp-i1,,,80,(4*raw)/benchmark,3.9
|
||||||
|
Percentage teachers National Board certified,2022-23,150,0,percentage,a-exp-i2,,,10,(4*raw)/benchmark,0
|
||||||
|
Percentage teachers teaching in area of licensure,2022-23,150,100,percentage,a-exp-i3,,,95,(4*raw)/benchmark,4.210526316
|
||||||
|
9th grade passing rate,2022-23,150,,percentage,a-ovpe-i1,,X,75.8,(4*raw)/benchmark,0
|
||||||
|
Percent teacher returning (including retirement),2022-23,150,100,percentage,a-pcom-i1,,,85,(4*raw)/benchmark,4.705882353
|
||||||
|
Percent teachers with 10+ days absent,2022-23,150,23,percentage,a-pcom-i2,X,,28,(benchmark - raw score) + benchmark) * 4 / benchmark,4.714285714
|
||||||
|
% Teachers of Color,2022-23,150,0,percentage,a-pcom-i3,,,12.8,(4*raw)/benchmark,0
|
||||||
|
Student to co-curricular activities ratio (HS only),2022-23,150,,ratio,a-cocu-i1,X,X,57,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to career-technical education courses (HS only),2022-23,150,,ratio,a-cppm-i2,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
"for all schools with a % teachers of color less than 5, they will receive a 1 on our Likert scale. We decided to set 5% as a ""floor"" because even in a school that is 100% white, there should still be teachers of color. If a school has greater than or equal to 5%, then the formula is: (% teachers of color/% students of color) * (4/0.25)",2022-23,150,0,ratio,a-cure-i1,,,0.26,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),
|
||||||
|
Student to number of courses ratio (HS only),2022-23,150,,ratio,a-curv-i5,X,X,5,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to number of electives ratio (completely free choice) (HS only),2022-23,150,,ratio,a-curv-i6,X,X,2,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Medical staff to student ratio (schoolwide),2022-23,150,1,ratio,a-phya-i1,X,,750,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),7.429333333
|
||||||
|
Student to guidance counselor ratio (HS only),2022-23,150,,ratio,a-sust-i1,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),#DIV/0!
|
||||||
|
Student to mental health counselor ratio,2022-23,150,1,ratio,a-sust-i2,X,,250,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.288
|
||||||
|
Student to instructional support staff ratio,2022-23,150,5,ratio,a-sust-i3,X,,43.4,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.02764977
|
||||||
|
Student to art teacher ratio,2022-23,150,0.5,ratio,a-sust-i4,X,,500,((benchmark - (number_of_students / raw score)) + benchmark)* 4 / benchmark),6.288
|
||||||
|
11
data/dashboard/demographics.csv
Normal file
11
data/dashboard/demographics.csv
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
Race Qualtrics Code,Race/Ethnicity,Gender Qualtrics Code,Sex/Gender,Income,ELL,Special Ed Status
|
||||||
|
1,American Indian or Alaskan Native,2,Male,Economically Disadvantaged - N,ELL,Special Education
|
||||||
|
2,Asian or Pacific Islander,1,Female,Economically Disadvantaged - Y,Not ELL,Not Special Education
|
||||||
|
3,Black or African American,4,Non-Binary,Unknown,Unknown,Unknown
|
||||||
|
4,Hispanic or Latinx,99,Unknown,,,
|
||||||
|
5,White or Caucasian,,,,,
|
||||||
|
6,Prefer not to disclose,,,,,
|
||||||
|
7,Prefer to self-describe,,,,,
|
||||||
|
8,Middle Eastern,,,,,
|
||||||
|
99,Race/Ethnicity Not Listed,,,,,
|
||||||
|
100,Multiracial,,,,,
|
||||||
|
12899
data/dashboard/enrollment/enrollment.csv
Normal file
12899
data/dashboard/enrollment/enrollment.csv
Normal file
File diff suppressed because it is too large
Load diff
4
data/dashboard/enrollment/nj_enrollment.csv
Normal file
4
data/dashboard/enrollment/nj_enrollment.csv
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
Academic Year,School Name,DESE ID,PK,K,1,2,3,4,5,6,7,8,9,10,11,12,SP,Total
|
||||||
|
2022-23,John P. Faber School,50,37,94,80,89,103,104,99,,,,,,,,,569
|
||||||
|
2022-23,Lincoln Middle School,60,,,,,,,,102,94,93,,,,,,289
|
||||||
|
2022-23,Dunellen High School,40,,,,,,,,,,,109,85,82,76,,352
|
||||||
|
5
data/dashboard/enrollment/wi_enrollment.csv
Normal file
5
data/dashboard/enrollment/wi_enrollment.csv
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
Academic Year,School Name,DESE ID,K,1,2,3,4,5,6,7,8,9,10,11,12,Total
|
||||||
|
2022-23,Meadow View Primary School,160,128,119,,,,,,,,,,,,247
|
||||||
|
2022-23,Rock River Intermediate School,110,,,109,107,137,119,141,,,,,,,613
|
||||||
|
2022-23,School for Agricultural and Environmental Studies (SAGES),150,11,18,22,11,16,11,18,,,,,,,107
|
||||||
|
2022-23,Waupun Area Junior/Senior High School,200,,,,,,,,149,150,132,159,139,144,873
|
||||||
|
23
data/dashboard/master_list_of_schools_and_districts.csv
Normal file
23
data/dashboard/master_list_of_schools_and_districts.csv
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
School Name,Alt School Name,District,District DESE ID,DESE School ID,HS?,Teacher Staffing Total,K-12 Student Enrollment Total,School Closed In ,Notes
|
||||||
|
Lee Elementary School,,Lee Public Schools,1500000,1500025,,,,,
|
||||||
|
Lee Middle/High School,,Lee Public Schools,1500000,1500505,X,,,,
|
||||||
|
Fowler School,,Maynard Public Schools,1740000,1740305,,,,,
|
||||||
|
Green Meadow,,Maynard Public Schools,1740000,1740010,,,,,
|
||||||
|
Maynard High School,,Maynard Public Schools,1740000,1740505,X,,,,
|
||||||
|
Buckland-Shelburne Regional,,Mohawk Trail School District,7170000,7170005,,,,,
|
||||||
|
Colrain Central,,Mohawk Trail School District,7170000,7170010,,,,,
|
||||||
|
Mohawk Trail Regional School,,Mohawk Trail School District,7170000,7170505,X,,,,
|
||||||
|
Sanderson Academy,,Mohawk Trail School District,7170000,7170020,,,,,
|
||||||
|
Meadow View Primary School,,Waupun Area School District,6216,160,,,,,WI school codes: https://apps6.dpi.wi.gov/SchDirPublic/districts
|
||||||
|
Rock River Intermediate School,,Waupun Area School District,6216,110,,,,,
|
||||||
|
School for Agricultural and Environmental Studies (SAGES),,Waupun Area School District,6216,150,,,,,
|
||||||
|
Waupun Area Junior/Senior High School,,Waupun Area School District,6216,200,X,,,,
|
||||||
|
John P. Faber School,,Dunellen Public Schools,1140,50,,57,569,,NJ school codes: https://rc.doe.state.nj.us/selectreport/2021-2022/23/1140
|
||||||
|
Lincoln Middle School,,Dunellen Public Schools,1140,60,,33,289,,
|
||||||
|
Dunellen High School,,Dunellen Public Schools,1140,40,X,40,352,,
|
||||||
|
Green Meadows Elementary,,Hampden-Wilbraham,6800000,6800005,,,,,
|
||||||
|
Mile Tree Elementary,,Hampden-Wilbraham,6800000,6800025,,,,,
|
||||||
|
Minnechaug Regional High,,Hampden-Wilbraham,6800000,6800505,X,,,,
|
||||||
|
Soule Road,,Hampden-Wilbraham,6800000,6800030,,,,,
|
||||||
|
Stony Hill School,,Hampden-Wilbraham,6800000,6800050,,,,,
|
||||||
|
Wilbraham Middle,,Hampden-Wilbraham,6800000,6800310,,,,,
|
||||||
|
222
data/dashboard/sqm_framework.csv
Normal file
222
data/dashboard/sqm_framework.csv
Normal file
|
|
@ -0,0 +1,222 @@
|
||||||
|
Category,Category ID,Category Description,Category Short Description,Subcategory,Subcategory ID,Subcategory Description,Measures,Measure Description,Measure ID,Source,Source Notes,Show items in accordion?,Active admin & survey items,Question/item (22-23),Question/item (21-22),Question/item (20-21),Original Item (19-20 surveys),Original Item (18-19 surveys),Original Item (17-18 surveys),Original Item (16-17 surveys),Survey Item ID,Reverse Scored,HS only admin item?,On Short Form?,Qualtrics ID,Admin Data Benchmark (Absolute) ,Admin Data Unit (Absolute) ,Item Warning High,Item Watch Low,Item Watch High,Item Growth Low,Item Growth High,Item Approval Low,Item Approval High,Item Ideal Low,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",College & Career Readiness,4D,Seeks to determine the degree to which students are prepared for college and beyond (applicable to high schools only). It includes measures of college-going & persistence and career preparation & placement.,College & Career Placement,Tracks the percentage of students enrolling in college or beginning a career immediately after high school graduation.,4D-i,Admin Data,"NCES, 2016",TRUE,TRUE,Placement in college or career (HS only) ,College enrollment rate (HS only),College enrollment rate (HS only),College enrollment rate (HS only),College enrollment rate (HS only),College enrollment rate (HS only),College enrollment rate (HS only),a-cgpr-i1,,X,,#N/A,65.6,percentage,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Co-Curricular Activities,"Tracks administrative data on the number and variety of extra- and co-curricular activities offered (e.g., sports teams and clubs).",3B-iii,Admin Data,Census,TRUE,TRUE,Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),Student to co-curricular activities ratio (HS only),a-cocu-i1,X,X,,#N/A,57,ratio,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",College & Career Readiness,4D,Seeks to determine the degree to which students are prepared for college and beyond (applicable to high schools only). It includes measures of college-going & persistence and career preparation & placement.,Career Preparation,Tracks student access to career technical education courses.,4D-ii,Admin Data,Constructed by MCIEA staff,TRUE,FALSE,,Percent positive work placement (HS only),Percent positive work placement (HS only),Percent positive work placement (HS only),Percent positive work placement (HS only),Percent positive work placement (HS only),Percent positive work placement (HS only),a-cppm-i1,,X,,#N/A,85,percentage,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",College & Career Readiness,4D,Seeks to determine the degree to which students are prepared for college and beyond (applicable to high schools only). It includes measures of college-going & persistence and career preparation & placement.,Career Preparation,Tracks student access to career technical education courses.,4D-ii,Admin Data,,TRUE,TRUE,Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),Student to career-technical education courses (HS only),a-cppm-i2,X,X,,#N/A,5,ratio,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Admin Data,"MA DESE, 2019-20, state average",TRUE,TRUE,Teacher-student parity index: teachers of color/ students of color,Teacher-student parity index: % teachers of color/% students of color,Teacher-student parity index: % teachers of color/% students of color,Teacher-student parity index: % teachers of color/% students of color,Teacher-student parity index: % teachers of color/% students of color,Teacher-student parity index: % teachers of color/% students of color,Teacher-student parity index: % teachers of color/% students of color,a-cure-i1,,,,#N/A,0.26,ratio,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),Percent graduates completing MassCORE (HS only),a-curv-i1,,X,,#N/A,90,percentage,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),Percent juniors and seniors enrolled in one AP (HS only),a-curv-i2,,X,,#N/A,30,percentage,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),Percent AP test takers scoring 3 or higher (HS only),a-curv-i3,,X,,#N/A,20,percentage,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,"NCES, 2009",TRUE,TRUE,Percent students of color completing advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),Percent students of color enrolled in advanced coursework (HS only),a-curv-i4,,X,,#N/A,36.4,percentage,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,,TRUE,TRUE,Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),Student to number of courses ratio (HS only),a-curv-i5,X,X,,#N/A,5,ratio,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Admin Data,,TRUE,TRUE,Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),Student to number of electives ratio (completely free choice) (HS only),a-curv-i6,X,X,,#N/A,2,ratio,2.98,2.99,3.49,3.5,3.99,4,4.6,4.61,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Degree Completion,Tracks the percentage of students in each school who receive a high school diploma within 4 years and 5 years of starting 9th grade.,4B-ii,Admin Data,"MA DESE, 2019-20",TRUE,TRUE,4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),4-year on-time graduation rate (HS only),a-degr-i1,,X,,#N/A,80,percentage,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Degree Completion,Tracks the percentage of students in each school who receive a high school diploma within 4 years and 5 years of starting 9th grade.,4B-ii,Admin Data,"NCES, 2016",TRUE,TRUE,Percent students retained in a grade,Percent students retained in a grade,Percent students retained in a grade,Percent students retained in a grade,Percent students retained in a grade,Percent students retained in a grade,Percent students retained in a grade,a-degr-i2,X,,,#N/A,2,percentage,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Degree Completion,Tracks the percentage of students in each school who receive a high school diploma within 4 years and 5 years of starting 9th grade.,4B-ii,Admin Data,"MA DESE, 2019-20",TRUE,TRUE,5-year graduation rate (HS only),5-year graduation rate (HS only),5-year graduation rate (HS only),5-year graduation rate (HS only),5-year graduation rate (HS only),5-year graduation rate (HS only),5-year graduation rate (HS only),a-degr-i3,,X,,#N/A,85,percentage,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Admin Data,"Constructed by MCIEA staff, based on research from Kraft and Papay",TRUE,TRUE,Percentage teachers with 3+ years of experience,Percentage teachers with 5+ years of experience,Percentage teachers with 5+ years of experience,Percentage teachers with 5+ years of experience,Percentage teachers with 5+ years of experience,Percentage teachers with 5+ years of experience,Percentage teachers with 5+ years of experience,a-exp-i1,,,,,80,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Admin Data,"NCES, 2015-16",TRUE,TRUE,Percentage teachers National Board certified,Percentage teachers National Board certified,Percentage teachers National Board certified,Percentage teachers National Board certified,Percentage teachers National Board certified,Percentage teachers National Board certified,Percentage teachers National Board certified,a-exp-i2,,,,,10,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Admin Data,Center for Education Data and Research,TRUE,TRUE,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,Percentage teachers teaching in area of licensure,a-exp-i3,,,,,95,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Overall Performance,Draws on anonymous teacher reports about the efforts and abilities of their students. In the future this measure will also include the results of teacher-designed curriculum-embedded performance assessments.,4A-i,Admin Data,Benchmark is the statewide average 9th grade passing rate in the 21-22 school year,TRUE,TRUE,9th grade passing rate,Percent students who fail 1 core course (HS only),Percent students who fail 1 core course (HS only),Percent students who fail 1 core course (HS only),Percent students who fail 1 core course (HS only),Percent students who fail 1 core course (HS only),Percent students who fail 1 core course (HS only),a-ovpe-i1,,X,,#N/A,75.8,percentage,2.98,2.99,3.49,3.5,3.99,4,4.5,4.51,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Overall Performance,Draws on anonymous teacher reports about the efforts and abilities of their students. In the future this measure will also include the results of teacher-designed curriculum-embedded performance assessments.,4A-i,Admin Data,Constructed by MCIEA staff,TRUE,FALSE,,Percent students who fail 2 core courses (HS only),Percent students who fail 2 core courses (HS only),Percent students who fail 2 core courses (HS only),Percent students who fail 2 core courses (HS only),Percent students who fail 2 core courses (HS only),Percent students who fail 2 core courses (HS only),a-ovpe-i2,,X,,#N/A,1,percentage,2.98,2.99,3.49,3.5,3.99,4,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Percent teacher returning (including retirement),Percent teacher returning (excluding retirement),Percent teacher returning (excluding retirement),Percent teacher returning (excluding retirement),Percent teacher returning (excluding retirement),Percent teacher returning (excluding retirement),Percent teacher returning (excluding retirement),a-pcom-i1,,,,#N/A,85,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Admin Data,Ed Week,TRUE,TRUE,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,Percent teachers with 10+ days absent,a-pcom-i2,X,,,#N/A,28,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Admin Data,Benchmark is the % of teachers of color statewide in the 21-22 school year ,TRUE,TRUE,% Teachers of Color,,,,,,,a-pcom-i3,,,,#N/A,12.8,percentage,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Physical Health,Draws on anonymous teacher reports about student access to physical education and activity. It also includes a measure of medical staff to student ratio. ,5D-ii,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Medical staff to student ratio (schoolwide),Medical staff to student ratio ,Medical staff to student ratio,Medical staff to student ratio,Medical staff to student ratio,Medical staff to student ratio,Medical staff to student ratio,a-phya-i1,X,,,#N/A,750,ratio,2.98,2.99,3.49,3.5,3.99,4,4.3,4.31,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Admin Data,NCES,TRUE,TRUE,Percent of students suspended,Student to suspensions ratio,Student to suspensions ratio,Student to suspensions ratio,Student to suspensions ratio,Student to suspensions ratio,Student to suspensions ratio,a-phys-i1,X,,,#N/A,5.27,percent,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Admin Data,Only captured to calculate the ratio,TRUE,FALSE,,Number of student suspensions,Number of student suspensions,Number of student suspensions,Number of student suspensions,Number of student suspensions,Number of student suspensions,a-phys-i2,,,,#N/A,n/a,number,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Admin Data,only captured to calculate the chronic absence ratio,TRUE,TRUE,Percent of students suspended for 10+ days,Number of students suspended for 10+ days,Number of students suspended for 10+ days,Number of students suspended for 10+ days,Number of students suspended for 10+ days,Number of students suspended for 10+ days,Number of students suspended for 10+ days,a-phys-i3,X,,,#N/A,1,percent,2.98,2.99,3.49,3.5,3.99,4,4.7,4.71,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Participation In Creative & Performing Arts,Draws on anonymous teacher and student reports about the frequency of student exposure to creative and performing arts. It also includes a measure of student art instruction per week. ,5C-i,Admin Data,,TRUE,TRUE,Percent of students enrolled in at least 1 arts course,Hours of arts instruction per student per week,Hours of arts instruction per student per week,Hours of arts instruction per student per week,Hours of arts instruction per student per week,Hours of arts instruction per student per week,Hours of arts instruction per student per week,a-picp-i1,,,,#N/A,77.5 (statewide average in the 22-23 school year),number,2.98,2.99,3.49,3.5,3.99,4,4.3,4.31,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Average class size,Average class size,Average class size,Average class size,Average class size,Average class size,Average class size,a-reso-i1,X,,,#N/A,20,number,2.98,2.99,3.49,3.5,3.99,4,4.8,4.81,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Admin Data,American School Counselor Association (2005),TRUE,TRUE,Student to guidance counselor ratio (HS only),Student to guidance counselor ratio,Student to guidance counselor ratio,Student to guidance counselor ratio,Student to guidance counselor ratio,Student to guidance counselor ratio,Student to guidance counselor ratio,a-sust-i1,X,,,#N/A,250,ratio,2.98,2.99,3.49,3.5,3.99,4,4.9,4.91,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Admin Data,American School Counselor Association (2005),TRUE,TRUE,Student to mental health counselor ratio,Student to mental health counselor ratio,Student to mental health counselor ratio,Student to mental health counselor ratio,Student to mental health counselor ratio,Student to mental health counselor ratio,Student to mental health counselor ratio,a-sust-i2,X,,,#N/A,250,ratio,2.98,2.99,3.49,3.5,3.99,4,4.9,4.91,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Admin Data,"NCES, 2007-08",TRUE,TRUE,Student to instructional support staff ratio,Student to instructional support staff ratio,Student to instructional support staff ratio,Student to instructional support staff ratio,Student to instructional support staff ratio,Student to instructional support staff ratio,Student to instructional support staff ratio,a-sust-i3,X,,,#N/A,43.4,ratio,2.98,2.99,3.49,3.5,3.99,4,4.9,4.91,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Student to art teacher ratio,Student to art teacher ratio,Student to art teacher ratio,Student to art teacher ratio,Student to art teacher ratio,Student to art teacher ratio,Student to art teacher ratio,a-sust-i4,X,,,#N/A,500,ratio,2.98,2.99,3.49,3.5,3.99,4,4.9,4.91,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Admin Data,"MA DESE, 2019-20",TRUE,TRUE,Chronic absence rate,Chronic absence rate,Chronic absence rate,Chronic absence rate,Chronic absence rate,Chronic absence rate,Chronic absence rate,a-vale-i1,X,,,#N/A,10,number,2.98,2.99,3.49,3.5,3.99,4,4.8,4.81,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Admin Data,Constructed by MCIEA staff,TRUE,TRUE,Average daily attendance,Average daily attendance,Average daily attendance,Average daily attendance,Average daily attendance,Average daily attendance,Average daily attendance,a-vale-i2,,,,#N/A,90,number,2.98,2.99,3.49,3.5,3.99,4,4.8,4.81,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Performance Growth,Includes an asessment of student progression towards key learning goals. ,4A-ii,No source,,FALSE,FALSE,Performance Growth,Performance Growth,Performance Growth,Performance Growth,Performance Growth,Performance Growth,Performance Growth,n/a,,,,#N/A,,n/a,2.98,2.99,3.49,3.5,3.99,4,4.5,4.51,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Critical Thinking,4C,Seeks to determine whether students are learning to think critically and applying that learning to their lives outside of school. It includes measures of problem solving emphasis. ,Problem Solving Skills,Draws on anonymous teacher reports about how often their students have the opportunity to generate their own interpretations of material and apply knowledge to new situations.,4C-ii,No source,,FALSE,FALSE,,,,,,,,n/a,,,,#N/A,n/a,n/a,2.98,2.99,3.49,3.5,3.99,4,4.4,4.41,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,,2C-ii,Students,,FALSE,TRUE,My teachers encourage me to do my best.,,,,,,,s-acpr-es1,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,,2C-ii,Students,,FALSE,TRUE,"My teachers ask me to explain my thinking.
|
||||||
|
",,,,,,,s-acpr-es2,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,,2C-ii,Students,,FALSE,TRUE,My teachers keep helping me until I understand.,,,,,,,s-acpr-es3,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,,2C-ii,Students,,FALSE,TRUE,I get help whenever I feel like I can't do it.,,,,,,,s-acpr-es4,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Students,,TRUE,TRUE,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,How much does your teacher encourage you to do your best?,s-acpr-q1,,,X,Q22,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Students,,TRUE,TRUE,"When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?","When you feel like giving up on a difficult task, how likely is it that your teacher will help you keep trying?",s-acpr-q2,,,,Q23,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Students,,TRUE,TRUE,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,How often does your teacher ask you to explain your answers?,s-acpr-q3,,,,Q24,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Students,,TRUE,TRUE,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,How often does your teacher take time to make sure you understand the material?,s-acpr-q4,,,,Q26,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"On a typical day in school, how stressed do you feel about your schoolwork?","On a typical day in school, how stressed do you feel about your schoolwork?","On a typical day in school, how stressed do you feel about your schoolwork?","On a typical day in school, how stressed do you feel about your schoolwork?","On a typical day in school, how stressed do you feel about your schoolwork?",How much does your school work make you feel stressed?,Not in the 16-17 Surveys,s-acst-q1,X,,,Q135,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"When you take a test, how much do you worry about doing well?","When you take a test, how much do you worry about doing well?","When you take a test, how much do you worry about doing well?","When you take a test, how much do you worry about doing well?","When you take a test, how much do you worry about doing well?","When you take a test, how nervous do you feel about doing well?",Not in the 16-17 Surveys,s-acst-q2,X,,X,Q136,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"Typically, how anxious do you feel about your grades?","Typically, how anxious do you feel about your grades?","Typically, how anxious do you feel about your grades?","Typically, how anxious do you feel about your grades?",How much do you think that your grades and test scores will determine your future?,How much do you think that your grades and test scores will determine your future?,Not in the 16-17 Surveys,s-acst-q3,X,,,Q137,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Valuing Creative & Performing Arts,Draws on anonymous student reports about their interest in creative or performing arts.,5C-ii,Students,,TRUE,TRUE,"How interested are you in visual art—street murals, museum paintings, sculptures, etc.?","How interested are you in visual art—street murals, museum paintings, sculptures, etc.?","How interested are you in visual art—street murals, museum paintings, sculptures, etc.?","How interested are you in visual art—street murals, museum paintings, sculptures, etc.?","If your friends or family wanted to go to an art museum, how interested would you be in going?","If your friends or family wanted to go to an art museum, how interested would you be in going?","If your friends or family wanted to go to an art museum, how interested would you be in going?",s-appa-q1,,,X,Q37,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Valuing Creative & Performing Arts,Draws on anonymous student reports about their interest in creative or performing arts.,5C-ii,Students,,TRUE,TRUE,"If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your friends or family wanted to go to hear people play music, how interested would you be in going?","If your school had an orchestra or a band, how interested would you be in learning how to play an instrument? (NOT USED IN THE SCORE)",s-appa-q2,,,,Q38,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Valuing Creative & Performing Arts,Draws on anonymous student reports about their interest in creative or performing arts.,5C-ii,Students,,TRUE,TRUE,"How interested are you in performance art—dance performances, plays in the park, going to the theater, etc.?","How interested are you in performance art—dance performances, plays in the park, going to the theater, etc.?","How interested are you in performance art—dance performances, plays in the park, going to the theater, etc.?","How interested are you in performance art—dance performances, plays in the park, going to the theater, etc.?","If your friends or family wanted to go to a play, how interested would you be in going?","If your friends or family wanted to go to a play, how interested would you be in going?","If your friends or family wanted to go to a play, how interested would you be in going?",s-appa-q3,,,,Q39,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Civic Participation,Draws on anonymous student reports about their commitment to social awareness and community improvement.,5A-ii,Students,,TRUE,TRUE,"How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?","How much do you believe that being concerned with national, state, and local issues is everyone's responsibility?",s-civp-q1,,,,Q30,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Civic Participation,Draws on anonymous student reports about their commitment to social awareness and community improvement.,5A-ii,Students,,TRUE,TRUE,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,How important is it to you to get involved in improving your community?,s-civp-q2,,,,Q31,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Civic Participation,Draws on anonymous student reports about their commitment to social awareness and community improvement.,5A-ii,Students,,TRUE,TRUE,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,How important is it to you to actively challenge inequalities in society?,s-civp-q3,,,,Q32,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Civic Participation,Draws on anonymous student reports about their commitment to social awareness and community improvement.,5A-ii,Students,,TRUE,TRUE,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,How important is it to you to take action when something in society needs changing?,s-civp-q4,,,X,Q33,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Students,,TRUE,TRUE,"In your classes, how often do you see people like you represented in what you study?","In your classes, how often do you see people like you represented in what you study?","In your classes, how often do you see people like you represented in what you study?","In your classes, how often do you see people like you represented in what you study?","In your classes, how often do you see people like you represented in what you study?","In your classes, how often do you see people like you represented in what you study?",Not in the 16-17 Surveys,s-cure-q1,,,,Q129,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Students,,TRUE,TRUE,"In your classes, how often do you see many different kinds of people represented in what you study?","In your classes, how often do you see many different kinds of people represented in what you study?","In your classes, how often do you see many different kinds of people represented in what you study?","In your classes, how often do you see many different kinds of people represented in what you study?","In your classes, how often do you see many different kinds of people represented in what you study?","In your classes, how often do you see many different kinds of people represented in what you study?",Not in the 16-17 Surveys,s-cure-q2,,,,Q130,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Students,,TRUE,TRUE,How valued do you think all students' home cultures and languages are in the school curriculum?,How valued do you think all students' home cultures and languages are in the school curriculum?,How valued do you think all students' home cultures and languages are in the school curriculum?,How valued do you think all students' home cultures and languages are in the school curriculum?,How valued do you think all students' home cultures and languages are in the school curriculum?,How valued do you think all students' home cultures and languages are in the school curriculum?,Not in the 16-17 Surveys,s-cure-q3,,,,Q131,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Students,,TRUE,TRUE,How valued do you think your home culture and language are in the school curriculum?,How valued do you think your home culture and language are in the school curriculum?,How valued do you think your home culture and language are in the school curriculum?,How valued do you think your home culture and language are in the school curriculum?,How valued do you think your home culture and language are in the school curriculum?,How valued do you think your home culture and language are in the school curriculum?,Not in the 16-17 Surveys,s-cure-q4,,,X,Q132,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,TRUE,TRUE,How often are students unkind to each other at this school?,How often are students unkind to each other at this school?,How often are students unkind to each other at this school?,How often are students unkind to each other at this school?,How often are students unkind to each other at this school?,How often are students unkind to each other at this school?,How worried are you that you will be bullied because of who you are?,s-emsa-q1,X,,X,Q7,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,TRUE,TRUE,How often are students at this school unkind to each other online?,How often are students at this school unkind to each other online?,How often are students at this school unkind to each other online?,How often are students at this school unkind to each other online?,How often are students at this school unkind to each other online?,How often are students at this school unkind to each other online?,How often do you think students at your school are bullied online?,s-emsa-q2,X,,,Q8,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,TRUE,TRUE,How much bullying occurs at this school?,How much bullying occurs at this school?,How much bullying occurs at this school?,How much bullying occurs at this school?,How much bullying occurs at this school?,How much bullying occurs at this school?,How often do you observe students teasing other students at your school? (NOT USED IN THE SCORE),s-emsa-q3,X,,,Q9,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Participation In Creative & Performing Arts,Draws on anonymous teacher and student reports about the frequency of student exposure to creative and performing arts. It also includes a measure of student art instruction per week. ,5C-i,Students,,TRUE,TRUE,"In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?","In a typical week, how much time do you spend in creative arts instruction or activities?",s-expa-q1,,,X,Q68,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Perseverance & Determination,"Draws on anonymous student reports about their ability to pursue goals, work hard in spite of challenges, and finish what they start.",5B-i,Students,,TRUE,TRUE,"If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?","If you face a problem while working towards an important goal, how well can you keep working?",s-grit-q1,,,X,Q63,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Perseverance & Determination,"Draws on anonymous student reports about their ability to pursue goals, work hard in spite of challenges, and finish what they start.",5B-i,Students,,TRUE,TRUE,How important is it to you to finish things you start?,How important is it to you to finish things you start?,How important is it to you to finish things you start?,How important is it to you to finish things you start?,How important is it to you to finish things you start?,How important is it to you to finish things you start?,How important is it to you to finish things you start?,s-grit-q2,,,,Q64,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Perseverance & Determination,"Draws on anonymous student reports about their ability to pursue goals, work hard in spite of challenges, and finish what they start.",5B-i,Students,,TRUE,TRUE,"How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?","How confident are you that you can remain focused on what you are doing, even when there are distractions?",s-grit-q3,,,,Q65,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Perseverance & Determination,"Draws on anonymous student reports about their ability to pursue goals, work hard in spite of challenges, and finish what they start.",5B-i,Students,,TRUE,TRUE,"If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?","If you fail to reach an important goal, how likely are you to try again?",s-grit-q4,,,,Q66,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Growth Mindset,Draws on anonymous student reports about the degree to which they see themselves as capable of expanding their skills and/or intelligence through hard work.,5B-ii,Students,,TRUE,TRUE,How much do you think you can change your own intelligence?,How much do you think you can change your own intelligence?,How much do you think you can change your own intelligence?,How much do you think you can change your own intelligence?,How much do you think you can change your own intelligence?,How much do you think you can change your own intelligence?,Not in the 16-17 Surveys,s-grmi-q1,,,,Q34,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Growth Mindset,Draws on anonymous student reports about the degree to which they see themselves as capable of expanding their skills and/or intelligence through hard work.,5B-ii,Students,,TRUE,TRUE,How much do you think that being bad at math is something someone can change?,How much do you think that being bad at math is something someone can change?,How much do you think that being bad at math is something someone can change?,How much do you think that being bad at math is something someone can change?,How much do you think that being bad at math is something someone can change?,How much do you think that being bad at math is something someone can change?,Not in the 16-17 Surveys,s-grmi-q2,,,X,Q35,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Growth Mindset,Draws on anonymous student reports about the degree to which they see themselves as capable of expanding their skills and/or intelligence through hard work.,5B-ii,Students,,TRUE,TRUE,How much do you think that struggling as a writer is something someone can change?,How much do you think that struggling as a writer is something someone can change?,How much do you think that struggling as a writer is something someone can change?,How much do you think that struggling as a writer is something someone can change?,How much do you think that struggling as a writer is something someone can change?,How much do you think that struggling as a writer is something someone can change?,Not in the 16-17 Surveys,s-grmi-q3,,,,Q127,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Work Ethic,5B,"Seeks to determine the degree to which students are willing to work hard on challenging tasks, even in light of setbacks. It includes measures of perseverance & determination and growth mindset.",Growth Mindset,Draws on anonymous student reports about the degree to which they see themselves as capable of expanding their skills and/or intelligence through hard work.,5B-ii,Students,,TRUE,TRUE,How much do you think that intelligence is something that can be changed?,How much do you think that intelligence is something that can be changed?,How much do you think that intelligence is something that can be changed?,How much do you think that intelligence is something that can be changed?,How much do you think that struggling to understand something means you're bad at it? (NOT USED IN THE SCORE),How much do you think that needing to try really hard in a subject at school means you can‚Äôt be good at it? (NOT USED IN THE SCORE),Not in the 16-17 Surveys,s-grmi-q4,,,,Q36,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,"Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?","Overall, how much have you learned from your teacher?",s-peff-q1,,,,Q10,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,"For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?","For this class, how clearly does your teacher present the information that you need to learn?",s-peff-q2,,,,Q11,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,"When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?","When you need extra help, how good is your teacher at giving you that help?",s-peff-q3,,,,Q12,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,How well can your teacher tell whether or not you understand a topic?,s-peff-q4,,,,Q14,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,How interesting does your teacher make the things you are learning?,s-peff-q5,,,,Q15,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Students,,TRUE,TRUE,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,How good is your teacher at helping you learn?,s-peff-q6,,,X,Q16,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Students,,TRUE,TRUE,How often do you worry about violence at your school?,How often do you worry about violence at your school?,How often do you worry about violence at your school?,How often do you worry about violence at your school?,How often do you worry about violence at your school?,How often do you worry about violence at your school?,How often do you worry about violence at your school?,s-phys-q1,X,,,Q40,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Students,,TRUE,TRUE,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,How often do students get into physical fights at your school?,s-phys-q2,X,,,Q41,,.,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Students,,TRUE,TRUE,"Overall, how physically safe do you feel at school?","Overall, how physically safe do you feel at school?","Overall, how physically safe do you feel at school?","Overall, how physically safe do you feel at school?","Overall, how physically safe do you feel at school?","Overall, how safe do you feel at school?","Overall, how safe do you feel at school?",s-phys-q3,,,,Q42,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Physical Safety,Draws on anonymous student reports about the degree to which they feel physically safe at school. It also measures the use of exclusionary discipline at the school.,2A-i,Students,,TRUE,TRUE,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,How often do you feel like you might be harmed by someone at school?,s-phys-q4,X,,X,Q43,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?","On a regular day at school, how often do you feel relaxed?",s-poaf-q1,,,,Q69,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,How often are you enthusiastic at school?,How often are you enthusiastic at school?,How often are you enthusiastic at school?,How often are you enthusiastic at school?,How often are you enthusiastic at school?,How often are you enthusiastic at school?,How often are you enthusiastic at school?,s-poaf-q2,,,,Q70,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?","On a normal day in school, how confident do you feel?",s-poaf-q3,,,X,Q71,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Social & Emotional Health,Draws on anonymous student reports about the extent to which they feel academic stress and whether that stress interferes with their concentration or enjoyment of learning. ,5D-i,Students,,TRUE,TRUE,"On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?","On a normal day in school, how much are you able to concentrate?",s-poaf-q4,,,,Q72,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,I am happy when I am at school.,,,,,,,s-sbel-es1,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,I am happy when I am in class.,,,,,,,s-sbel-es10,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,My teacher gives all students help when they need it.,,,,,,,s-sbel-es11,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,I have friends in my classroom.,,,,,,,s-sbel-es2,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,I have friends at recess.,,,,,,,s-sbel-es3,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,Grownups at this school like me for who I am.,,,,,,,s-sbel-es4,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,Students at this school like me for who I am,,,,,,,s-sbel-es5,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,Grownups treat students with respect.,,,,,,,s-sbel-es6,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,Students treat each other with respect.,,,,,,,s-sbel-es7,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,There are grownups at my school who care about me.,,,,,,,s-sbel-es8,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,FALSE,TRUE,My teacher gives me help when I need it.,,,,,,,s-sbel-es9,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,TRUE,TRUE,"Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?","Overall, how much do you feel like you belong at your school?",s-sbel-q1,,,,Q44,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,TRUE,TRUE,"At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?","At your school, how accepted do you feel by the other students?",s-sbel-q2,,,X,Q45,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,TRUE,TRUE,How well do people at your school understand you?,How well do people at your school understand you?,How well do people at your school understand you?,How well do people at your school understand you?,How well do people at your school understand you?,How well do people at your school understand you?,How well do people at your school understand you?,s-sbel-q3,,,,Q46,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,TRUE,TRUE,How much respect do students in your school show you?,How much respect do students in your school show you?,How much respect do students in your school show you?,How much respect do students in your school show you?,How much respect do students in your school show you?,How much respect do students in your school show you?,How much respect do students in your school show you?,s-sbel-q4,,,,Q48,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Students,,TRUE,TRUE,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,How connected do you feel to the adults at your school?,s-sbel-q5,,,,Q49,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Appreciation For Diversity,Draws on anonymous student reports about their level of comfort in considering different perspectives and conflicting opinions.,5A-i,Students,,TRUE,TRUE,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,How often do you try to think of more than one explanation for why someone else acted as they did?,s-sper-q1,,,,Q59,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Appreciation For Diversity,Draws on anonymous student reports about their level of comfort in considering different perspectives and conflicting opinions.,5A-i,Students,,TRUE,TRUE,"Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?","Overall, how often do you try to understand the point of view of other people?",s-sper-q2,,,,Q60,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Appreciation For Diversity,Draws on anonymous student reports about their level of comfort in considering different perspectives and conflicting opinions.,5A-i,Students,,TRUE,TRUE,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,How often do you try to figure out what motivates others to behave as they do?,s-sper-q3,,,,Q61,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Civic Engagement,5A,Seeks to determine the degree to which students are prepared to thoughtfully interact with others in a diverse society and work towards social equity. It includes the measures of appreciation for diversity and civic participation. ,Appreciation For Diversity,Draws on anonymous student reports about their level of comfort in considering different perspectives and conflicting opinions.,5A-i,Students,,TRUE,TRUE,"In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?","In general, how often do you try to understand how other people see things?",s-sper-q4,,,X,Q62,,,2.48,2.49,2.99,3,3.49,3.5,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,TRUE,TRUE,How excited are you about going to this class?,How excited are you about going to this class?,How excited are you about going to this class?,How excited are you about going to this class?,How excited are you about going to this class?,How excited are you about going to this class?,How excited are you about going to this class?,s-sten-q1,,,,Q27,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,TRUE,TRUE,"Overall, how interested are you in this class?","Overall, how interested are you in this class?","Overall, how interested are you in this class?","Overall, how interested are you in this class?","Overall, how interested are you in this class?","Overall, how interested are you in this class?","Overall, how interested are you in this class?",s-sten-q2,,,X,Q28,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,TRUE,TRUE,How often do you get so focused on class activities that you lose track of time?,How often do you get so focused on class activities that you lose track of time?,How often do you get so focused on class activities that you lose track of time?,How often do you get so focused on class activities that you lose track of time?,How often do you get so focused on class activities that you lose track of time?,How often do you get so focused on class activities that you lose track of time?,How often do you take time outside of class to learn more about what you are studying in class? (NOT USED IN THE SCORE),s-sten-q3,,,,Q29,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Students,,TRUE,TRUE,"When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?","When you are hurt, sad, or just need to talk to someone, is there an adult at school other than your teacher you can go to?",s-sust-q1,,,X,Q56,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Students,,TRUE,TRUE,"When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?","When you need help learning something, is there an adult at school other than your teacher who can work with you?",s-sust-q2,,,,Q57,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,TRUE,TRUE,"When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?","When your teacher asks how you are doing, how often do you feel that he/she is really interested in your answer?",s-tint-q1,,,X,Q17,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,TRUE,TRUE,How interested in your teacher in what you do outside of class?,How interested in your teacher in what you do outside of class?,How interested in your teacher in what you do outside of class?,How interested in your teacher in what you do outside of class?,How interested in your teacher in what you do outside of class? (Not asked 18-19 BPS Student Survey),How interested is your teacher in what you do outside of class?,How interested is your teacher in what you do outside of class?,s-tint-q2,,,,Q18,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,TRUE,TRUE,"If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?","If you walked into class upset, how concerned would your teacher be?",s-tint-q3,,,,Q19,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,TRUE,TRUE,"If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?","If you came back to visit class three years from now, how excited would your teacher be to see you?",s-tint-q4,,,,Q20,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,TRUE,TRUE,"If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?","If you had something on your mind, how carefully would your teacher listen to you?",s-tint-q5,,,,Q21,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,School is important to me.,,,,,,,s-vale-es1,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,School is important to my family.,,,,,,,s-vale-es2,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,I enjoy learning new things at school.,,,,,,,s-vale-es3,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,I am a reader.,,,,,,,s-vale-es4,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,I am a mathematician.,,,,,,,s-vale-es5,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,I am a scientist.,,,,,,,s-vale-es6,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,I am a good citizen.,,,,,,,s-vale-es7,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,,2C-i,Students,,FALSE,TRUE,"I wonder about things, am curious, and want to learn more.",,,,,,,s-vale-es8,,,,,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Students,,TRUE,TRUE,"Overall, how important is school to you?","Overall, how important is school to you?","Overall, how important is school to you?","Overall, how important is school to you?","Overall, how important is school to you?","Overall, how important is school to you?","Overall, how important is school to you?",s-vale-q1,,,,Q50,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Students,,TRUE,TRUE,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,How curious are you to learn more about things you talked about in school?,s-vale-q2,,,,Q53,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Students,,TRUE,TRUE,How much do you enjoy learning in school?,How much do you enjoy learning in school?,How much do you enjoy learning in school?,How much do you enjoy learning in school?,How much do you enjoy learning in school?,How much do you enjoy learning in school?,How much do you enjoy learning in school?,s-vale-q3,,,X,Q54,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Valuing of Learning,Draws on anonymous student reports about how important school is to them and how much they view themselves as learners. It also includes attendance rates.,2C-i,Students,,TRUE,TRUE,How much do you see yourself as a learner?,How much do you see yourself as a learner?,How much do you see yourself as a learner?,How much do you see yourself as a learner?,How much do you see yourself as a learner?,How much do you see yourself as a learner?,How much do you see yourself as a learner?,s-vale-q4,,,,Q55,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Teachers,,TRUE,TRUE,How well does your school foster academic challenge for all students?,How well does your school foster academic challenge for all students?,How well does your school foster academic challenge for all students?,How well does your school foster academic challenge for all students?,How well does your school foster academic challenge for all students?,How well does your school foster academic challenge for all students?,Not in the 16-17 Surveys,t-acch-q1,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Teachers,,TRUE,TRUE,How effectively does your school challenge students who are struggling academically?,How effectively does your school challenge students who are struggling academically?,How effectively does your school challenge students who are struggling academically?,How effectively does your school challenge students who are struggling academically?,How effectively does your school challenge students who are struggling academically?,How effectively does your school challenge students who are struggling academically?,Not in the 16-17 Surveys,t-acch-q2,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Academic Orientation,2C,Seeks to determine the degree to which student academic experiences are challenging and meaningful to them. It includes measures of valuing of learning and academic challenge. ,Academic Challenge,"Draws on anonymous student reports about the degree to which teachers encourage students to do their best, work hard, and understand new concepts. ",2C-ii,Teachers,,TRUE,TRUE,How effectively does your school challenge students who are thriving academically?,How effectively does your school challenge students who are thriving academically?,How effectively does your school challenge students who are thriving academically?,How effectively does your school challenge students who are thriving academically?,How effectively does your school challenge students who are thriving academically?,How effectively does your school challenge students who are thriving academically?,Not in the 16-17 Surveys,t-acch-q3,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.5,4.51,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Community Involvement & External Partners,Draws on anonymous teacher reports about the degree to which the school is responsive to equity issues in its community. ,3C-ii,Teachers,,TRUE,TRUE,"How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?","How effectively does this school connect with immigrant families, providing translation when necessary?",t-ceng-q1,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Community Involvement & External Partners,Draws on anonymous teacher reports about the degree to which the school is responsive to equity issues in its community. ,3C-ii,Teachers,,TRUE,TRUE,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,How effectively does this school respond to the needs and values of the surrounding community?,t-ceng-q2,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Community Involvement & External Partners,Draws on anonymous teacher reports about the degree to which the school is responsive to equity issues in its community. ,3C-ii,Teachers,,TRUE,TRUE,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,To what extent are all groups of parents represented in the governance of the school?,t-ceng-q3,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Community Involvement & External Partners,Draws on anonymous teacher reports about the degree to which the school is responsive to equity issues in its community. ,3C-ii,Teachers,,TRUE,TRUE,"Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?","Overall, how effectively does this school connect with the community?",t-ceng-q4,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,How often do teachers here work together to plan curriculum and instruction?,t-coll-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,How hard do teachers here work to coordinate their teaching with instruction at other grade levels?,t-coll-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,How often do teachers here collaborate to make the school run effectively?,t-coll-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Teachers,,TRUE,TRUE,How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',How able are you to integrate material from different cultures into your instruction either online or in person?',t-cure-q1,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Teachers,,TRUE,TRUE,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,How often do you integrate culturally diverse content into your teaching?,t-cure-q2,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Teachers,,TRUE,TRUE,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,How often do you use teaching strategies to facilitate learning among culturally diverse students?,t-cure-q3,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Cultural Responsiveness,Draws on anonymous student reports on the degree to which the curriculum adequately represents diverse cultures and perspectives. It also draws on anonymous teacher responses about the degree to which they are adequately supported and prepared to teach in a culturally responsive manner.,3B-ii,Teachers,,TRUE,TRUE,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,How motivated are you to integrate culturally diverse content in your classroom?,t-cure-q4,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Teachers,,TRUE,TRUE,"Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?","Overall, how rigorous is the curriculum that you are expected to teach?",t-curv-q1,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Teachers,,TRUE,TRUE,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,How coherent is the curriculum that you are expected to teach?,t-curv-q2,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Teachers,,TRUE,TRUE,"If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?","If one of your students transferred to another district with a challenging assortment of courses, how well prepared would he or she be?",t-curv-q3,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Learning Resources,3B,"Seeks to determine the degree to which a school's curriculum is appropriately challenging and diverse. It includes measures of curricular strength & variety, cultural responsiveness and co-curricular activities.",Curricular Strength & Variety,"Draws on anonymous teacher reports on the strength and variety of the school curriculum. It also includes the percentage of students completing the recommended state core curriculum, the ratio of students to total classes, the ratio of students to elective classes, and the percentage of students participating in Advanced Placement courses in high school.",3B-i,Teachers,,TRUE,TRUE,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,How well-rounded is the curriculum that you and your colleagues teach?,t-curv-q4,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.6,4.61,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Participation In Creative & Performing Arts,Draws on anonymous teacher and student reports about the frequency of student exposure to creative and performing arts. It also includes a measure of student art instruction per week. ,5C-i,Teachers,,TRUE,TRUE,"In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the average amount of time a student could spend in creative arts instruction or activities?",t-expa-q2,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Creative & Performing Arts,5C,Seeks to determine the degree to which students are being nurtured as artistic and creative people. It includes measures of participation in creative & performing arts and valuing creative & performing arts.,Participation In Creative & Performing Arts,Draws on anonymous teacher and student reports about the frequency of student exposure to creative and performing arts. It also includes a measure of student art instruction per week. ,5C-i,Teachers,,TRUE,TRUE,"In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?","In a typical week at your school, what is the maximum amount of time a student could spend in creative arts instruction or activities?",t-expa-q3,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Teachers,,TRUE,TRUE,How confident are you in your ability to present material clearly?,How confident are you in your ability to present material clearly?,How confident are you in your ability to present material clearly?,How confident are you in your ability to present material clearly?,How confident are you in your ability to present material clearly?,Not in the 17-18 Surveys,Not in the 16-17 Surveys,t-ieff-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Teachers,,TRUE,TRUE,How confident are you in your ability to identify gaps in student understanding?,How confident are you in your ability to identify gaps in student understanding?,How confident are you in your ability to identify gaps in student understanding?,How confident are you in your ability to identify gaps in student understanding?,How confident are you in your ability to identify gaps in student understanding?,Not in the 17-18 Surveys,Not in the 16-17 Surveys,t-ieff-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Teachers,,TRUE,TRUE,How confident are you in your ability to provide extra help to students who need it?,How confident are you in your ability to provide extra help to students who need it?,How confident are you in your ability to provide extra help to students who need it?,How confident are you in your ability to provide extra help to students who need it?,How confident are you in your ability to provide extra help to students who need it?,Not in the 17-18 Surveys,Not in the 16-17 Surveys,t-ieff-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Effective Practices,"Draws on anonymous student reports about factors like teacher effectiveness, support for students, and classroom management.",1A-ii,Teachers,,TRUE,TRUE,How confident are you in your ability to make material interesting for students?,How confident are you in your ability to make material interesting for students?,How confident are you in your ability to make material interesting for students?,How confident are you in your ability to make material interesting for students?,How confident are you in your ability to make material interesting for students?,Not in the 17-18 Surveys,Not in the 16-17 Surveys,t-ieff-q4,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,How effectively does your principal communicate a clear vision of teaching and learning?,t-inle-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,How effectively does your principal press teachers to engage in good pedagogical practice?,t-inle-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,How much does your principal know about what’s going on in teachers’ classrooms either in-person or online?,How much does your principal know about what’s going on in teachers’ classrooms either in-person or online?,How much does your principal know about what’s going on in teachers’ classrooms either in-person or online?,How much does your principal know about what’s going on in teachers’ classrooms either in-person or online?,How much does your principal know about what’s going on in teachers’ classrooms ?,How much does your principal know about what’s going on in teachers’ classrooms ?,How much does your principal know about what’s going on in teachers’ classrooms ?,t-inle-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Teachers,,TRUE,TRUE,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,How many teachers in this school feel responsible for helping each other do their best?,t-pcom-q1,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Teachers,,TRUE,TRUE,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,How many teachers in this school take responsibility for improving the school?,t-pcom-q2,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Teachers,,TRUE,TRUE,"This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?","This year, how often have you had conversations with your colleagues about what helps students learn?",t-pcom-q3,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Teachers,,TRUE,TRUE,"As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?","As a faculty, how well do you do talking through views, opinions, and values?",t-pcom-q4,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Community,Draws on anonymous teacher reports about the health of the professional community. It also includes measures of teacher absences and retention.,1A-iii,Teachers,,TRUE,TRUE,"This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?","This year, how often have you had colleagues observe your classroom?",t-pcom-q5,,,,#N/A,,,2.68,2.69,3.19,3.2,3.69,3.7,4.7,4.71,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Family-School Relationships,Draws on anonymous teacher reports about their engagement with parents and leadership opportunities for parents at the school.,3C-i,Teachers,,TRUE,TRUE,How often do you connect with parents at your school?,How often do you connect with parents at your school?,How often do you connect with parents at your school?,How often do you connect with parents at your school?,How often do you connect with parents at your school?,How often do you connect with parents at your school?,How often do you connect with parents at your school?,t-peng-q1,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Family-School Relationships,Draws on anonymous teacher reports about their engagement with parents and leadership opportunities for parents at the school.,3C-i,Teachers,,TRUE,TRUE,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,How involved have parents been in fundraising efforts at your school?,t-peng-q2,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Family-School Relationships,Draws on anonymous teacher reports about their engagement with parents and leadership opportunities for parents at the school.,3C-i,Teachers,,TRUE,TRUE,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,How involved have parents been with parent groups at your school?,t-peng-q3,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Community Support,3C,"Seeks to determine the degree to which schools have supportive relationships with the surrounding community. It includes measures of family-school relationships, community involvement & external partnerships.",Family-School Relationships,Draws on anonymous teacher reports about their engagement with parents and leadership opportunities for parents at the school.,3C-i,Teachers,,TRUE,TRUE,How often does the average parent help out at your school?,How often does the average parent help out at your school?,How often does the average parent help out at your school?,How often does the average parent help out at your school?,How often does the average parent help out at your school?,How often does the average parent help out at your school?,How often does the average parent help out at your school?,t-peng-q4,,,,#N/A,,,2.18,2.19,2.69,2.7,3.19,3.2,4.4,4.41,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Physical Health,Draws on anonymous teacher reports about student access to physical education and activity. It also includes a measure of medical staff to student ratio. ,5D-ii,Teachers,,TRUE,TRUE,"In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the average amount of time a student could spend engaged in physical activity?",t-phya-q2,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Community & Wellbeing,5,"Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives. It considers factors like perseverance and determination, participation in arts and literature, and social and emotional health.","Measures the development of traits relevant for students leading full and rewarding lives—in society, the workplace, and their private lives.",Health,5D,"Seeks to determine the degree to which the school supports various health outcomes. It includes measures of student social, emotional, and physical health.",Physical Health,Draws on anonymous teacher reports about student access to physical education and activity. It also includes a measure of medical staff to student ratio. ,5D-ii,Teachers,,TRUE,TRUE,"In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?","In a typical week at your school, what is the maximum amount of time a student could spend engaged in physical activity?",t-phya-q3,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.3,4.31,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Teachers,,TRUE,TRUE,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,Given your preparation for teaching how comfortable are you teaching at the grade-level you have been assigned?,t-prep-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Teachers,,TRUE,TRUE,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,How prepared are you for teaching the topics that you are expected to teach in your assignment?,t-prep-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Teachers & The Teaching Environment,1A,"Seeks to determine the degree to which a school's teachers are prepared and supported for their classroom assignments. It includes measures of teacher qualifications, professional community and effective classroom practices.",Professional Qualifications,"Draws on anonymous teacher reports of their own comfort teaching grade-level topics. It also includes administrative measures of teacher quality, such as the percentage of teachers working in their area of licensure and the percentage of teachers who have received National Board certification. ",1A-i,Teachers,,TRUE,TRUE,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,How confident are you in working with the student body at your school?,t-prep-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.7,4.71,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,To what extent do you trust your principal at his or her word?,t-prtr-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,"At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?","At your school, how comfortable are you raising concerns with the principal?",t-prtr-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,School Leadership,Draws on anonymous teacher reports about the degree to which teachers believe their school leadership is strong and they trust people in leadership to make good school-wide decisions.,1B-i,Teachers,,FALSE,TRUE,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,How much do you trust your principal to stand up for you in disagreements with parents?,t-prtr-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Critical Thinking,4C,Seeks to determine whether students are learning to think critically and applying that learning to their lives outside of school. It includes measures of problem solving emphasis. ,Problem Solving Emphasis,Draws on anonymous teacher reports about how often their students have the opportunity to generate their own interpretations of material and apply knowledge to new situations.,4C-i,Teachers,,TRUE,TRUE,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,How often do students at your school come up with their own interpretations of material?,t-psol-q1,,,,#N/A,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Critical Thinking,4C,Seeks to determine whether students are learning to think critically and applying that learning to their lives outside of school. It includes measures of problem solving emphasis. ,Problem Solving Emphasis,Draws on anonymous teacher reports about how often their students have the opportunity to generate their own interpretations of material and apply knowledge to new situations.,4C-i,Teachers,,TRUE,TRUE,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,How often do students apply ideas they have learned to new situations?,t-psol-q2,,,,#N/A,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Critical Thinking,4C,Seeks to determine whether students are learning to think critically and applying that learning to their lives outside of school. It includes measures of problem solving emphasis. ,Problem Solving Emphasis,Draws on anonymous teacher reports about how often their students have the opportunity to generate their own interpretations of material and apply knowledge to new situations.,4C-i,Teachers,,TRUE,TRUE,How often do students collaborate in class to solve complex problems either online or in person?,How often do students collaborate in class to solve complex problems either online or in person?,How often do students collaborate in class to solve complex problems either online or in person?,How often do students collaborate in class to solve complex problems either online or in person?,How often do students collaborate in class to solve complex problems?,How often do students collaborate in class to solve complex problems?,How often do students collaborate in class to solve complex problems?,t-psol-q3,,,,#N/A,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Teachers,,TRUE,TRUE,How much do students at this school care about each other?,How much do students at this school care about each other?,How much do students at this school care about each other?,How much do students at this school care about each other?,How much do students at this school care about each other?,How much do students at this school care about each other?,How much do students at this school care about each other?,t-psup-q1,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Teachers,,TRUE,TRUE,How often do students at this school help each other learn?,How often do students at this school help each other learn?,How often do students at this school help each other learn?,How often do students at this school help each other learn?,How often do students at this school help each other learn?,How often do students at this school help each other learn?,How often do students at this school help each other learn?,t-psup-q2,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Teachers,,TRUE,TRUE,How well do students at this school get along with each other?,How well do students at this school get along with each other?,How well do students at this school get along with each other?,How well do students at this school get along with each other?,How well do students at this school get along with each other?,How well do students at this school get along with each other?,How well do students at this school get along with each other?,t-psup-q3,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student Sense of Belonging,"Draws on anonymous student reports about the degree to which they feel understood, supported, and accepted by students and adults at the school.",2B-i,Teachers,,TRUE,TRUE,"At this school, how respectful are students to each other?","At this school, how respectful are students to each other?","At this school, how respectful are students to each other?","At this school, how respectful are students to each other?","At this school, how respectful are students to each other?","At this school, how respectful are students to each other?","At this school, how respectful are students to each other?",t-psup-q4,,,,#N/A,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Teachers,,TRUE,TRUE,How often are students bullied at school or online?,How often are students bullied at school or online?,How often are students bullied at school or online?,How often are students bullied at school or online?,How often are students bullied at school?,How often are students bullied at school?,How often are students bullied at school?,t-pvic-q1,X,,,#N/A,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Teachers,,TRUE,TRUE,How often are students bullied because of who they are?,How often are students bullied because of who they are?,How often are students bullied because of who they are?,How often are students bullied because of who they are?,How often are students bullied because of who they are?,How often are students bullied because of who they are?,How often are students bullied because of who they are?,t-pvic-q2,X,,,#N/A,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Teachers,,TRUE,TRUE,"Overall, how unkind are students to each other?","Overall, how unkind are students to each other?","Overall, how unkind are students to each other?","Overall, how unkind are students to each other?","Overall, how unkind are students to each other?","Overall, how unkind are students to each other?","Overall, how unkind are students to each other?",t-pvic-q3,,,,#N/A,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,To what extent has your professional development been connected to the topics you teach?,t-qupd-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,How much would you say that your professional development has been sustained/consistent (rather than discontinuous)?,t-qupd-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,To what extent has your professional development included enough time to explore new ideas?,t-qupd-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Teachers & Leadership,1,"Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals. It considers factors like teacher professional qualifications, effective classroom practices, and school-wide support for teaching development and growth.",Measures the relevant abilities of a school's teachers and the degree to which they are receiving the support they need to grow as professionals.,Leadership,1B,Seeks to determine how well school leadership supports teachers and enables them to do their work. It includes measures of effective leadership and support for teaching development & growth.,Support For Teaching Development & Growth,Draws on anonymous teacher reports on the quality of professional development.,1B-ii,Teachers,,TRUE,TRUE,"Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?","Overall, how strong has support for your professional growth been?",t-qupd-q4,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Teachers,,TRUE,TRUE,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,How adequate is your access to the materials you need to effectively teach?,t-reso-q1,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Teachers,,TRUE,TRUE,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,How adequate is your access to the technology you need to effectively teach?,t-reso-q2,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Teachers,,TRUE,TRUE,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,How adequate is the support you receive for using technology?,t-reso-q3,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Teachers,,TRUE,TRUE,How sufficient is the physical space for in-school activities during the pandemic?,How sufficient is the physical space for in-school activities during the pandemic?,How sufficient is the physical space for in-school activities during the pandemic?,How sufficient is the physical space for in-school activities during the pandemic?,How sufficient is the physical space for school activities?,How sufficient is the physical space for school activities?,How sufficient is the physical space for school activities?,t-reso-q4,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Physical Space & Materials,Draws on anonymous teacher reports about their access to high-quality materials and facilities. It also includes administrative data on class size.,3A-i,Teachers,,TRUE,TRUE,How well-maintained are school facilities during the pandemic?,How well-maintained are school facilities during the pandemic?,How well-maintained are school facilities during the pandemic?,How well-maintained are school facilities during the pandemic?,How well-maintained are school facilities?,How well-maintained are school facilities?,How well-maintained are school facilities?,t-reso-q5,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Overall Performance,Draws on anonymous teacher reports about the efforts and abilities of their students. In the future this measure will also include the results of teacher-designed curriculum-embedded performance assessments.,4A-i,Teachers,,TRUE,TRUE,"Relative to what you know of students this age, how academically able are your students?","Relative to what you know of students this age, how academically able are your students?","Relative to what you know of students this age, how much effort did your students put forth in your class this year?
|
||||||
|
","Relative to what you know of students this age, how much effort did your students put forth in your class this year?
|
||||||
|
","Relative to what you know of students this age, how much effort did your students put forth in your class this year?
|
||||||
|
","Relative to what you know of students this age, how much effort did your students put forth in your class this year?
|
||||||
|
","Relative to what you know of students this age, how much effort did your students put forth in your class this year?
|
||||||
|
",t-sach-q1,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Overall Performance,Draws on anonymous teacher reports about the efforts and abilities of their students. In the future this measure will also include the results of teacher-designed curriculum-embedded performance assessments.,4A-i,Teachers,,TRUE,TRUE,"If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?","If student work from your classes was compared with work from ""average"" Massachusetts classes of the same grades/subjects, how do you think an objective observer would rate the work?",t-sach-q2,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Academic Learning,4,"Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Measures how much students are learning core academic content, developing their own academic identities, and progressing along positive trajectories.",Performance,4A,Seeks to determine the degree to which students are performing as expected and on-track for graduation. It includes measures of overall performance as rated by teachers. ,Overall Performance,Draws on anonymous teacher reports about the efforts and abilities of their students. In the future this measure will also include the results of teacher-designed curriculum-embedded performance assessments.,4A-i,Teachers,,TRUE,TRUE,"If an observer sat in on one of your classes for a week (either online or in person), how would she or he rate your students?","If an observer sat in on one of your classes for a week (either online or in person), how would she or he rate your students?","If an observer sat in on one of your classes for a week (either online or in person), how would she or he rate your students?","If an observer sat in on one of your classes for a week (either online or in person), how would she or he rate your students?","If an observer sat in on one of your classes for a week, how would she or he rate your students?","If an observer sat in on one of your classes for a week, how would she or he rate your students?","If an observer sat in on one of your classes for a week, how would she or he rate your students?",t-sach-q3,,,,#N/A,,,2.48,2.49,2.99,3,3.49,3.5,4.5,4.51,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Teachers,,TRUE,TRUE,"Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?","Overall, how effective is the support students receive from non-teaching staff?",t-sust-q1,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Teachers,,TRUE,TRUE,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,How adequate is the number of non-teaching support staff?,t-sust-q2,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Teachers,,TRUE,TRUE,How often are non-teaching support staff available either online or in person for students with non-academic issues?,How often are non-teaching support staff available either online or in person for students with non-academic issues?,How often are non-teaching support staff available either online or in person for students with non-academic issues?,How often are non-teaching support staff available either online or in person for students with non-academic issues?,How often are non-teaching support staff available for students with non-academic issues?,How often are non-teaching support staff available for students with non-academic issues?,How often are non-teaching support staff available for students with non-academic issues?,t-sust-q3,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
Resources,3,"Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community. It considers factors like physical spaces and materials, class size, and family-school relationships.","Measures the adequacy of a school's facility, personnel, and curriculum, as well as the degree to which it is supported by the community.",Facilities & Personnel,3A,Seeks to determine the sufficiency of a school's staffing and facilities. It includes measures of physical space & materials and content specialists & support staff.,Content Specialists & Support Staff,"Draws on anonymous student and teacher reports about the degree to which content specialists and support staff are available to help students with academic and non-academic needs. It also includes student-to-art-teacher, student-to-counselor, and student-to-specialist ratios.",3A-ii,Teachers,,TRUE,TRUE,How often are non-teaching support staff available either online or in person for students who are struggling academically?,How often are non-teaching support staff available either online or in person for students who are struggling academically?,How often are non-teaching support staff available either online or in person for students who are struggling academically?,How often are non-teaching support staff available either online or in person for students who are struggling academically?,How often are non-teaching support staff available for students who are struggling academically?,How often are non-teaching support staff available for students who are struggling academically?,How often are non-teaching support staff available for students who are struggling academically?,t-sust-q4,,,,#N/A,,,2.33,2.34,2.84,2.85,3.34,3.35,4.25,4.26,
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,FALSE,TRUE,Some kids get picked on at my school.,,,,,,,s-emsa-es1,X,,,,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,s-emsa-es1
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,FALSE,TRUE,"At my school, I see kids acting in an unsafe or unkind way.",,,,,,,s-emsa-es2,X,,,,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,s-emsa-es2
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,FALSE,TRUE,"At my school, I see many acts of kindness. ",,,,,,,s-emsa-es3,,,,,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,s-emsa-es3
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,FALSE,TRUE,No one has hurt my feelings using technology (on an ipad or phone). ,,,,,,,s-emsa-es4,,,,,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,s-emsa-es4
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Safety,2A,Seeks to determine the degree to which school climate is a safe place for students to learn. It includes measures of student physical safety and student emotional safety. ,Student Emotional Safety,Draws on anonymous student and teacher reports about the nature of student relationships with each other.,2A-ii,Students,,FALSE,TRUE,"At my school, it is okay to be different or unique. ",,,,,,,s-emsa-es5,,,,,,,2.78,2.79,3.29,3.3,3.79,3.8,4.5,4.51,s-emsa-es5
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,The school day goes by fast.,,,,,,,s-sten-es1,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es1
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,I like my class.,,,,,,,s-sten-es2,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es2
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,I am excited to come to school.,,,,,,,s-sten-es3,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es3
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,I get to learn about things that I am interested in at my school.,,,,,,,s-sten-es4,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es4
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,"Most of the time, I am excited about learning.",,,,,,,s-sten-es5,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es5
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,There are times when I have choices about what I learn.,,,,,,,s-sten-es6,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es6
|
||||||
|
Perceptions of Learning,4,"Perceptions of student learning, development of their own academic identities, and progression along positive trajectories. It considers factors like engagement in school, problem solving, and college-going rates.","Perceptions of student learning, development of their own academic identities, and progression along positive trajectories.",Student Commitment To Learning,4B,Seeks to determine the degree to which students are invested in the process of learning. It includes measures of engagement in school and degree completion. ,Engagement In School,"Draws on anonymous student reports about their level of focus, participation, and interest in class.",4B-i,Students,,FALSE,TRUE,There are times when I get to share my ideas with my classmates.,,,,,,,s-sten-es7,,,,,,,2.38,2.39,2.89,2.9,3.39,3.4,4.4,4.41,s-sten-es7
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,I share what I do outside of school with my teacher.,,,,,,,s-tint-es1,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es1
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My teacher asks what I like to do outside of school.,,,,,,,s-tint-es2,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es2
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My teacher cares about me when I am sick or upset.,,,,,,,s-tint-es3,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es3
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My teacher listens to me when I talk to them.,,,,,,,s-tint-es4,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es4
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My teacher helps me when I have a problem. ,,,,,,,s-tint-es5,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es5
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My teachers help students when English is hard for them to speak or to understand. ,,,,,,,s-tint-es7,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es7
|
||||||
|
School Culture,2,"Measures the degree to which the school environment is safe, caring, and academically-oriented. It considers factors like bullying, student-teacher relationships, and student valuing of learning.","Measures the degree to which the school environment is safe, caring, and academically-oriented.",Relationships,2B,Seeks to determine the degree to which school climate includes supportive student relationships. It includes measures of student sense of belonging and student-teacher relationships. ,Student-Teacher Relationships,Draws on anonymous student reports about the degree to which they feel respected and cared for by their teachers.,2B-ii,Students,,FALSE,TRUE,My school is kind to students who come from another country or speak another language. ,,,,,,,s-tint-es8,,,,,,,2.23,2.24,2.74,2.75,3.24,3.25,4.5,4.51,s-tint-es8
|
||||||
|
4
data/dashboard/staffing/nj_staffing.csv
Normal file
4
data/dashboard/staffing/nj_staffing.csv
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
Academic Year,School Name,DESE ID,FTE Count
|
||||||
|
2022-23,John P. Faber School,50,57
|
||||||
|
2022-23,Lincoln Middle School,60,33
|
||||||
|
2022-23,Dunellen High School,40,40
|
||||||
|
12908
data/dashboard/staffing/staffing.csv
Normal file
12908
data/dashboard/staffing/staffing.csv
Normal file
File diff suppressed because it is too large
Load diff
5
data/dashboard/staffing/wi_staffing.csv
Normal file
5
data/dashboard/staffing/wi_staffing.csv
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
Academic Year,School Name,DESE ID,FTE Count
|
||||||
|
2022-23,Meadow View Primary School,160,25.1
|
||||||
|
2022-23,Rock River Intermediate School,110,47.6
|
||||||
|
2022-23,School for Agricultural and Environmental Studies (SAGES),150,11.4
|
||||||
|
2022-23,Waupun Area Junior/Senior High School,200,58.4
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Dashboard
|
module Dashboard
|
||||||
VERSION = "0.1.9"
|
VERSION = "0.1.10"
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,68 @@
|
||||||
namespace :dashboard do
|
namespace :dashboard do
|
||||||
desc "Explaining what the task does"
|
namespace :data do
|
||||||
task :example do
|
desc "load survey responses"
|
||||||
# Task goes here
|
task load_survey_responses: :environment do
|
||||||
puts "compiling css"
|
survey_item_response_count = SurveyItemResponse.count
|
||||||
`yarn build:css`
|
student_count = Student.count
|
||||||
|
path = "/data/survey_responses/clean/"
|
||||||
|
Sftp::Directory.open(path:) do |file|
|
||||||
|
SurveyResponsesDataLoader.new.from_file(file:)
|
||||||
|
end
|
||||||
|
puts "=====================> Completed loading #{SurveyItemResponse.count - survey_item_response_count} survey responses. #{SurveyItemResponse.count} total responses in the database"
|
||||||
|
|
||||||
|
Rails.cache.clear
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "load survey responses from a specific directory"
|
||||||
|
task load_survey_responses_from_path: :environment do
|
||||||
|
survey_item_response_count = SurveyItemResponse.count
|
||||||
|
student_count = Student.count
|
||||||
|
path = "#{ENV['SFTP_PATH']}"
|
||||||
|
Sftp::Directory.open(path:) do |file|
|
||||||
|
SurveyResponsesDataLoader.new.from_file(file:)
|
||||||
|
end
|
||||||
|
puts "=====================> Completed loading #{SurveyItemResponse.count - survey_item_response_count} survey responses. #{SurveyItemResponse.count} total responses in the database"
|
||||||
|
|
||||||
|
Rails.cache.clear
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "load admin_data"
|
||||||
|
task load_admin_data: :environment do
|
||||||
|
original_count = AdminDataValue.count
|
||||||
|
Dir.glob(Rails.root.join("data", "admin_data", "dese", "*.csv")).each do |filepath|
|
||||||
|
puts "=====================> Loading data from csv at path: #{filepath}"
|
||||||
|
Dese::Loader.load_data filepath:
|
||||||
|
end
|
||||||
|
|
||||||
|
Dir.glob(Rails.root.join("data", "admin_data", "out_of_state", "*.csv")).each do |filepath|
|
||||||
|
puts "=====================> Loading data from csv at path: #{filepath}"
|
||||||
|
Dese::Loader.load_data filepath:
|
||||||
|
end
|
||||||
|
puts "=====================> Completed loading #{AdminDataValue.count - original_count} admin data values"
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "reset all cache counters"
|
||||||
|
task reset_cache_counters: :environment do
|
||||||
|
puts "=====================> Resetting Category counters"
|
||||||
|
Category.all.each do |category|
|
||||||
|
Category.reset_counters(category.id, :subcategories)
|
||||||
|
end
|
||||||
|
puts "=====================> Resetting Subcategory counters"
|
||||||
|
Subcategory.all.each do |subcategory|
|
||||||
|
Subcategory.reset_counters(subcategory.id, :measures)
|
||||||
|
end
|
||||||
|
puts "=====================> Resetting Measure counters"
|
||||||
|
Measure.all.each do |measure|
|
||||||
|
Measure.reset_counters(measure.id, :scales)
|
||||||
|
end
|
||||||
|
puts "=====================> Resetting Scale counters"
|
||||||
|
Scale.all.each do |scale|
|
||||||
|
Scale.reset_counters(scale.id, :survey_items)
|
||||||
|
end
|
||||||
|
puts "=====================> Resetting SurveyItem counters"
|
||||||
|
SurveyItem.all.each do |survey_item|
|
||||||
|
SurveyItem.reset_counters(survey_item.id, :survey_item_responses)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
21
lib/tasks/db.rake
Normal file
21
lib/tasks/db.rake
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
namespace :dashboard do
|
||||||
|
namespace :db do
|
||||||
|
desc "seed db"
|
||||||
|
task seed: :environment do
|
||||||
|
seeder = Dashboard::Seeder.new
|
||||||
|
|
||||||
|
seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23",
|
||||||
|
"2023-24"
|
||||||
|
seeder.seed_districts_and_schools Dashboard::Engine.root.join("data", "dashboard",
|
||||||
|
"master_list_of_schools_and_districts.csv")
|
||||||
|
# seeder.seed_sqm_framework Dashboard::Engine.root.join("data", "dashboard", "sqm_framework.csv")
|
||||||
|
# seeder.seed_demographics Rails.root.join("data", "demographics.csv")
|
||||||
|
# seeder.seed_enrollment Rails.root.join("data", "enrollment", "enrollment.csv")
|
||||||
|
# seeder.seed_enrollment Rails.root.join("data", "enrollment", "nj_enrollment.csv")
|
||||||
|
# seeder.seed_enrollment Rails.root.join("data", "enrollment", "wi_enrollment.csv")
|
||||||
|
# seeder.seed_staffing Rails.root.join("data", "staffing", "staffing.csv")
|
||||||
|
# seeder.seed_staffing Rails.root.join("data", "staffing", "nj_staffing.csv")
|
||||||
|
# seeder.seed_staffing Rails.root.join("data", "staffing", "wi_staffing.csv")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
110
lib/tasks/one_off.rake
Normal file
110
lib/tasks/one_off.rake
Normal file
|
|
@ -0,0 +1,110 @@
|
||||||
|
namespace :dashboard do
|
||||||
|
namespace :one_off do
|
||||||
|
task add_dese_ids: :environment do
|
||||||
|
all_schools = School.all.includes(:district)
|
||||||
|
updated_schools = []
|
||||||
|
|
||||||
|
qualtrics_schools = {}
|
||||||
|
|
||||||
|
csv_file = Rails.root.join("data", "master_list_of_schools_and_districts.csv")
|
||||||
|
CSV.parse(File.read(csv_file), headers: true) do |row|
|
||||||
|
district_id = row["District Code"].to_i
|
||||||
|
school_id = row["School Code"].to_i
|
||||||
|
|
||||||
|
if qualtrics_schools[[district_id, school_id]].present?
|
||||||
|
puts "Duplicate entry row #{row}"
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
|
qualtrics_schools[[district_id, school_id]] = row
|
||||||
|
end
|
||||||
|
|
||||||
|
qualtrics_schools.each do |(district_id, school_id), csv_row|
|
||||||
|
school = all_schools.find do |school|
|
||||||
|
school.qualtrics_code == school_id && school.district.qualtrics_code == district_id
|
||||||
|
end
|
||||||
|
|
||||||
|
if school.nil?
|
||||||
|
school_name = csv_row["School Name"].strip
|
||||||
|
puts "Could not find school '#{school_name}' with district id: #{district_id}, school id: #{school_id}"
|
||||||
|
potential_school_ids = School.where("name like ?", "%#{school_name}%").map(&:id)
|
||||||
|
puts "Potential ID matches: #{potential_school_ids}" if potential_school_ids.present?
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
|
school.update!(dese_id: csv_row["DESE School ID"])
|
||||||
|
updated_schools << school.id
|
||||||
|
end
|
||||||
|
|
||||||
|
School.where.not(id: updated_schools).each do |school|
|
||||||
|
puts "School with unchanged DESE id: #{school.name}, id: #{school.id}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "list scales that have no survey responses"
|
||||||
|
task list_scales_that_lack_survey_responses: :environment do
|
||||||
|
output = AcademicYear.all.map do |academic_year|
|
||||||
|
Scale.all.map do |scale|
|
||||||
|
[academic_year.range, scale.scale_id, scale.survey_item_responses.where(academic_year:).count]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
output = output.map { |year| year.reject { |scale| scale[2] > 0 || scale[1].starts_with?("a-") } }
|
||||||
|
pp output
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "list survey_items that have no survey responses by district"
|
||||||
|
task list_survey_items_that_lack_responses: :environment do
|
||||||
|
output = AcademicYear.all.map do |academic_year|
|
||||||
|
District.all.map do |district|
|
||||||
|
SurveyItem.all.map do |survey_item|
|
||||||
|
[academic_year.range, survey_item.survey_item_id,
|
||||||
|
survey_item.survey_item_responses.joins(:school).where("school.district": district, academic_year:).count, district.name]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
output = output.map do |year|
|
||||||
|
year.map do |district|
|
||||||
|
district.reject do |survey_item|
|
||||||
|
survey_item[2] > 0 || survey_item[1].starts_with?("a-")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
pp output
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "list the most recent admin data values"
|
||||||
|
task list_recent_admin_data_values: :environment do
|
||||||
|
range = 4.weeks.ago..1.second.ago
|
||||||
|
values = AdminDataValue.where(updated_at: range).group(:admin_data_item).count.map do |item|
|
||||||
|
[item[0].admin_data_item_id, item[0].scale.measure.measure_id]
|
||||||
|
end
|
||||||
|
puts values
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "delete 2022-23 survey responses"
|
||||||
|
task delete_survey_responses_2022_23: :environment do
|
||||||
|
response_count = SurveyItemResponse.all.count
|
||||||
|
SurveyItemResponse.where(academic_year: AcademicYear.find_by_range("2022-23")).delete_all
|
||||||
|
|
||||||
|
puts "=====================> Deleted #{response_count - SurveyItemResponse.all.count} survey responses"
|
||||||
|
# should be somewhere near 295738
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "load survey responses"
|
||||||
|
task load_survey_responses: :environment do
|
||||||
|
survey_item_response_count = SurveyItemResponse.count
|
||||||
|
student_count = Student.count
|
||||||
|
path = "/data/survey_responses/clean/"
|
||||||
|
schools = District.find_by_slug("maynard-public-schools").schools
|
||||||
|
|
||||||
|
Sftp::Directory.open(path:) do |file|
|
||||||
|
SurveyResponsesDataLoader.new.from_file(file:)
|
||||||
|
end
|
||||||
|
puts "=====================> Completed loading #{SurveyItemResponse.count - survey_item_response_count} survey responses. #{SurveyItemResponse.count} total responses in the database"
|
||||||
|
|
||||||
|
Rails.cache.clear
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
Loading…
Add table
Add a link
Reference in a new issue