Baselight

Average SAT Scores For NYC Public Schools

Name, location, enrollment, and scores for 2014-2015 school year

@kaggle.nycopendata_high_schools

Scores
@kaggle.nycopendata_high_schools.scores

  • 55.97 KB
  • 435 rows
  • 22 columns
school_id

School ID

school_name

School Name

borough

Borough

building_code

Building Code

street_address

Street Address

city

City

state

State

zip_code

Zip Code

latitude

Latitude

longitude

Longitude

phone_number

Phone Number

start_time

Start Time

end_time

End Time

student_enrollment

Student Enrollment

percent_white

Percent White

percent_black

Percent Black

percent_hispanic

Percent Hispanic

percent_asian

Percent Asian

average_score_sat_math

Average Score (SAT Math)

average_score_sat_reading

Average Score (SAT Reading)

average_score_sat_writing

Average Score (SAT Writing)

percent_tested

Percent Tested

02M260Clinton School Writers and ArtistsManhattanM933425 West 33rd StreetManhattanNY1000140.75321-73.99786212-695-9114nannannannannannannan
06M211Inwood Early College for Health and Information TechnologiesManhattanM052650 Academy StreetManhattanNY1000240.86605-73.92486718-935-3660 8:30 AM3:00 PM873.4%21.8%67.8%4.6%nan
01M539New Explorations into Science, Technology and Math High SchoolManhattanM022111 Columbia StreetManhattanNY1000240.71873-73.97943212-677-51908:15 AM4:00 PM173528.6%13.3%18.0%38.5%65760160191.0%
02M294Essex Street AcademyManhattanM445350 Grand StreetManhattanNY1000240.71687-73.98953212-475-47738:00 AM2:45 PM35811.7%38.5%41.3%5.9%39541138778.9%
02M308Lower Manhattan Arts AcademyManhattanM445350 Grand StreetManhattanNY1000240.71687-73.98953212-505-01438:30 AM3:00 PM3833.1%28.2%56.9%8.6%41842841565.1%
02M545High School for Dual Language and Asian StudiesManhattanM445350 Grand StreetManhattanNY1000240.71687-73.98953212-475-40978:00 AM3:35 PM4161.7%3.1%5.5%88.9%61345346395.9%
01M292Henry Street School for International StudiesManhattanM056220 Henry StreetManhattanNY1000240.71376-73.98526212-406-94118:30 AM3:30 PM2553.9%24.4%56.6%13.2%41040638159.7%
01M696Bard High School Early CollegeManhattanM097525 East Houston StreetManhattanNY1000240.71896-73.97607212-995-84799:00 AM3:50 PM54545.3%17.2%18.7%17.1%63464163970.8%
02M305Urban Assembly Academy of Government and LawManhattanM445350 Grand StreetManhattanNY1000240.71687-73.98953212-505-07458:32 AM3:45 PM3292.7%41.9%49.2%5.8%38939538180.8%
01M509Marta Valle High SchoolManhattanM025145 Stanton StreetManhattanNY1000240.72057-73.98567212-473-81528:00 AM3:30 PM3632.5%39.9%51.2%5.8%43841339435.6%

CREATE TABLE scores (
  "school_id" VARCHAR,
  "school_name" VARCHAR,
  "borough" VARCHAR,
  "building_code" VARCHAR,
  "street_address" VARCHAR,
  "city" VARCHAR,
  "state" VARCHAR,
  "zip_code" BIGINT,
  "latitude" DOUBLE,
  "longitude" DOUBLE,
  "phone_number" VARCHAR,
  "start_time" VARCHAR,
  "end_time" VARCHAR,
  "student_enrollment" DOUBLE,
  "percent_white" VARCHAR,
  "percent_black" VARCHAR,
  "percent_hispanic" VARCHAR,
  "percent_asian" VARCHAR,
  "average_score_sat_math" DOUBLE,
  "average_score_sat_reading" DOUBLE,
  "average_score_sat_writing" DOUBLE,
  "percent_tested" VARCHAR
);

Share link

Anyone who has the link will be able to view this.