Exploring SAT Scores of New York City: Data Cleaning & Preparation¶
This project takes a look at the 2012 SAT scores from New York City high schools, and explores insights and correlations found in related data. For ease of reading and to allow for a more in-depth discussion of the data cleaning processes, this project is split into two separate Jupyter notebooks: the first for data cleaning/preparation, and the second covering visualization and analysis.
Although inspired by — and running largely parallel to — this blog post from Dataquest, these two notebooks seek to better explain steps and reasoning that were glossed over (or left out entirely) in the original post.
In addition, there are a number of variances from the Dataquest version. In the first notebook, notable differences are the inclusion of the attendance
dataset, the exclusion of the (entirely inapplicable) math_test_results
dataset, and a different approach to cleaning the class_size
and graduation
data. Furthermore, a more thorough look at the final data reveals several other features that have a stronger correlation to SAT scores than those outlined in the blog post. These will be examined in the second notebook, which dives far deeper into the analysis of the data, including several custom visualizations and some basic significance and hypothesis testing.
The datasets used for this project can be found at:
Data Cleaning and Exploration¶
To begin, we will import Pandas and NumPy and set up Pandas to display up to 500 rows and columns. This avoids the notorious truncated format, where Pandas only shows the first few and last few columns (or rows) of a table, with elipses (...
) in between.
import pandas as pd
import numpy as np
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
If the .csv files do not yet have clear, short names, now is a good time to rename them for convenience and clarity. After renaming the files, we convert each to a Pandas DataFrame and add each DataFrame to a Python dictionary. Doing so will make looping through each dataset easier in the long run.
files = ['ap_2010.csv',
'attendance.csv',
'class_size.csv',
'demographics.csv',
'graduation.csv',
'hs_directory.csv',
'sat_results.csv']
data = {}
for f in files:
d = pd.read_csv('data/{0}'.format(f))
data[f.replace('.csv', '')] = d
Now, let's take a look at the data. First we'll examine the column names of each dataset, and then we'll briefly scan the values to get an idea of the information in each. In particular, we want to look for any similarities in the datasets that will allow us to directly compare specific qualities of a given school to its students' SAT performance.
for key, value in data.items():
print('\n' + key + '\n')
print(data[key].columns)
ap_2010 Index(['DBN', 'SchoolName', 'AP Test Takers ', 'Total Exams Taken', 'Number of Exams with scores 3 4 or 5'], dtype='object') attendance Index(['District', 'YTD % Attendance (Avg)', 'YTD Enrollment(Avg)'], dtype='object') class_size Index(['CSD', 'BOROUGH', 'SCHOOL CODE', 'SCHOOL NAME', 'GRADE ', 'PROGRAM TYPE', 'CORE SUBJECT (MS CORE and 9-12 ONLY)', 'CORE COURSE (MS CORE and 9-12 ONLY)', 'SERVICE CATEGORY(K-9* ONLY)', 'NUMBER OF STUDENTS / SEATS FILLED', 'NUMBER OF SECTIONS', 'AVERAGE CLASS SIZE', 'SIZE OF SMALLEST CLASS', 'SIZE OF LARGEST CLASS', 'DATA SOURCE', 'SCHOOLWIDE PUPIL-TEACHER RATIO'], dtype='object') demographics Index(['DBN', 'Name', 'schoolyear', 'fl_percent', 'frl_percent', 'total_enrollment', 'prek', 'k', 'grade1', 'grade2', 'grade3', 'grade4', 'grade5', 'grade6', 'grade7', 'grade8', 'grade9', 'grade10', 'grade11', 'grade12', 'ell_num', 'ell_percent', 'sped_num', 'sped_percent', 'ctt_num', 'selfcontained_num', 'asian_num', 'asian_per', 'black_num', 'black_per', 'hispanic_num', 'hispanic_per', 'white_num', 'white_per', 'male_num', 'male_per', 'female_num', 'female_per'], dtype='object') graduation Index(['Demographic', 'DBN', 'School Name', 'Cohort', 'Total Cohort', 'Total Grads - n', 'Total Grads - % of cohort', 'Total Regents - n', 'Total Regents - % of cohort', 'Total Regents - % of grads', 'Advanced Regents - n', 'Advanced Regents - % of cohort', 'Advanced Regents - % of grads', 'Regents w/o Advanced - n', 'Regents w/o Advanced - % of cohort', 'Regents w/o Advanced - % of grads', 'Local - n', 'Local - % of cohort', 'Local - % of grads', 'Still Enrolled - n', 'Still Enrolled - % of cohort', 'Dropped Out - n', 'Dropped Out - % of cohort'], dtype='object') hs_directory Index(['dbn', 'school_name', 'borough', 'building_code', 'phone_number', 'fax_number', 'grade_span_min', 'grade_span_max', 'expgrade_span_min', 'expgrade_span_max', 'bus', 'subway', 'primary_address_line_1', 'city', 'state_code', 'postcode', 'website', 'total_students', 'campus_name', 'school_type', 'overview_paragraph', 'program_highlights', 'language_classes', 'advancedplacement_courses', 'online_ap_courses', 'online_language_courses', 'extracurricular_activities', 'psal_sports_boys', 'psal_sports_girls', 'psal_sports_coed', 'school_sports', 'partner_cbo', 'partner_hospital', 'partner_highered', 'partner_cultural', 'partner_nonprofit', 'partner_corporate', 'partner_financial', 'partner_other', 'addtl_info1', 'addtl_info2', 'start_time', 'end_time', 'se_services', 'ell_programs', 'school_accessibility_description', 'number_programs', 'priority01', 'priority02', 'priority03', 'priority04', 'priority05', 'priority06', 'priority07', 'priority08', 'priority09', 'priority10', 'Location 1', 'Community Board', 'Council District', 'Census Tract', 'BIN', 'BBL', 'NTA'], dtype='object') sat_results Index(['DBN', 'SCHOOL NAME', 'Num of SAT Test Takers', 'SAT Critical Reading Avg. Score', 'SAT Math Avg. Score', 'SAT Writing Avg. Score'], dtype='object')
for key, value in data.items():
print('\n' + key + '\n')
print(value.head())
ap_2010 DBN SchoolName AP Test Takers \ 0 01M448 UNIVERSITY NEIGHBORHOOD H.S. 39.0 1 01M450 EAST SIDE COMMUNITY HS 19.0 2 01M515 LOWER EASTSIDE PREP 24.0 3 01M539 NEW EXPLORATIONS SCI,TECH,MATH 255.0 4 02M296 High School of Hospitality Management NaN Total Exams Taken Number of Exams with scores 3 4 or 5 0 49.0 10.0 1 21.0 NaN 2 26.0 24.0 3 377.0 191.0 4 NaN NaN attendance District YTD % Attendance (Avg) YTD Enrollment(Avg) 0 DISTRICT 01 91.18 12367 1 DISTRICT 02 89.01 60823 2 DISTRICT 03 89.28 21962 3 DISTRICT 04 91.13 14252 4 DISTRICT 05 89.08 13170 class_size CSD BOROUGH SCHOOL CODE SCHOOL NAME GRADE PROGRAM TYPE \ 0 1 M M015 P.S. 015 Roberto Clemente 0K GEN ED 1 1 M M015 P.S. 015 Roberto Clemente 0K CTT 2 1 M M015 P.S. 015 Roberto Clemente 01 GEN ED 3 1 M M015 P.S. 015 Roberto Clemente 01 CTT 4 1 M M015 P.S. 015 Roberto Clemente 02 GEN ED CORE SUBJECT (MS CORE and 9-12 ONLY) CORE COURSE (MS CORE and 9-12 ONLY) \ 0 - - 1 - - 2 - - 3 - - 4 - - SERVICE CATEGORY(K-9* ONLY) NUMBER OF STUDENTS / SEATS FILLED \ 0 - 19.0 1 - 21.0 2 - 17.0 3 - 17.0 4 - 15.0 NUMBER OF SECTIONS AVERAGE CLASS SIZE SIZE OF SMALLEST CLASS \ 0 1.0 19.0 19.0 1 1.0 21.0 21.0 2 1.0 17.0 17.0 3 1.0 17.0 17.0 4 1.0 15.0 15.0 SIZE OF LARGEST CLASS DATA SOURCE SCHOOLWIDE PUPIL-TEACHER RATIO 0 19.0 ATS NaN 1 21.0 ATS NaN 2 17.0 ATS NaN 3 17.0 ATS NaN 4 15.0 ATS NaN demographics DBN Name schoolyear fl_percent frl_percent \ 0 01M015 P.S. 015 ROBERTO CLEMENTE 20052006 89.4 NaN 1 01M015 P.S. 015 ROBERTO CLEMENTE 20062007 89.4 NaN 2 01M015 P.S. 015 ROBERTO CLEMENTE 20072008 89.4 NaN 3 01M015 P.S. 015 ROBERTO CLEMENTE 20082009 89.4 NaN 4 01M015 P.S. 015 ROBERTO CLEMENTE 20092010 96.5 total_enrollment prek k grade1 grade2 grade3 grade4 grade5 grade6 grade7 \ 0 281 15 36 40 33 38 52 29 38 NaN 1 243 15 29 39 38 34 42 46 NaN NaN 2 261 18 43 39 36 38 47 40 NaN NaN 3 252 17 37 44 32 34 39 49 NaN NaN 4 208 16 40 28 32 30 24 38 NaN NaN grade8 grade9 grade10 grade11 grade12 ell_num ell_percent sped_num \ 0 NaN NaN NaN NaN NaN 36.0 12.8 57.0 1 NaN NaN NaN NaN NaN 38.0 15.6 55.0 2 NaN NaN NaN NaN NaN 52.0 19.9 60.0 3 NaN NaN NaN NaN NaN 48.0 19.0 62.0 4 NaN NaN NaN NaN NaN 40.0 19.2 46.0 sped_percent ctt_num selfcontained_num asian_num asian_per black_num \ 0 20.3 25 9 10 3.6 74 1 22.6 19 15 18 7.4 68 2 23.0 20 14 16 6.1 77 3 24.6 21 17 16 6.3 75 4 22.1 14 14 16 7.7 67 black_per hispanic_num hispanic_per white_num white_per male_num \ 0 26.3 189 67.3 5 1.8 158.0 1 28.0 153 63.0 4 1.6 140.0 2 29.5 157 60.2 7 2.7 143.0 3 29.8 149 59.1 7 2.8 149.0 4 32.2 118 56.7 6 2.9 124.0 male_per female_num female_per 0 56.2 123.0 43.8 1 57.6 103.0 42.4 2 54.8 118.0 45.2 3 59.1 103.0 40.9 4 59.6 84.0 40.4 graduation Demographic DBN School Name Cohort \ 0 Total Cohort 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL 2003 1 Total Cohort 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL 2004 2 Total Cohort 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL 2005 3 Total Cohort 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL 2006 4 Total Cohort 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL 2006 Aug Total Cohort Total Grads - n Total Grads - % of cohort Total Regents - n \ 0 5 s NaN s 1 55 37 67.3 17 2 64 43 67.2 27 3 78 43 55.1 36 4 78 44 56.4 37 Total Regents - % of cohort Total Regents - % of grads \ 0 NaN NaN 1 30.9 45.9 2 42.2 62.8 3 46.2 83.7 4 47.4 84.1 Advanced Regents - n Advanced Regents - % of cohort \ 0 s NaN 1 0 0.0 2 0 0.0 3 0 0.0 4 0 0.0 Advanced Regents - % of grads Regents w/o Advanced - n \ 0 NaN s 1 0.0 17 2 0.0 27 3 0.0 36 4 0.0 37 Regents w/o Advanced - % of cohort Regents w/o Advanced - % of grads \ 0 NaN NaN 1 30.9 45.9 2 42.2 62.8 3 46.2 83.7 4 47.4 84.1 Local - n Local - % of cohort Local - % of grads Still Enrolled - n \ 0 s NaN NaN s 1 20 36.4 54.1 15 2 16 25.0 37.2 9 3 7 9.0 16.3 16 4 7 9.0 15.9 15 Still Enrolled - % of cohort Dropped Out - n Dropped Out - % of cohort 0 NaN s NaN 1 27.3 3 5.5 2 14.1 9 14.1 3 20.5 11 14.1 4 19.2 11 14.1 hs_directory dbn school_name borough \ 0 21K540 John Dewey High School Brooklyn 1 15K429 Brooklyn School for Global Studies Brooklyn 2 24Q530 International High School at LaGuardia Communi... Queens 3 05M367 Academy for Social Action: A College Board School Manhattan 4 27Q260 Frederick Douglass Academy VI High School Queens building_code phone_number fax_number grade_span_min grade_span_max \ 0 K540 718-373-6400 718-266-4385 9.0 12 1 K293 718-694-9741 718-694-9745 6.0 12 2 Q520 718-392-3433 718-392-3443 9.0 12 3 M043 212-234-3102 212-234-8597 9.0 12 4 Q465 718-471-2154 718-471-2890 9.0 12 expgrade_span_min expgrade_span_max \ 0 NaN NaN 1 NaN NaN 2 NaN NaN 3 NaN NaN 4 NaN NaN bus \ 0 B1, B4, B64, B82 1 B103, B45, B57, B61, B62, B63, B65 2 B24, Q100, Q101, Q102, Q32, Q39, Q60, Q67 3 Bx15, Bx33, M10, M100, M101, M104, M11, M3, M4... 4 Q113, Q22 subway primary_address_line_1 \ 0 D to Bay 50th St ; F to Ave X ; N to Gravesend... 50 Avenue X 1 A, C to Hoyt & Schermerhorn ; F, G to Bergen St 284 Baltic Street 2 7 to Rawson St-33rd St ; E, M, R to Queens Plaza 45-35 Van Dam Street 3 1, A, B, C, D to 125th St 509 West 129 Street 4 A to Beach 25th St-Wavecrest 8-21 Bay 25 Street city state_code postcode \ 0 Brooklyn NY 11223 1 Brooklyn NY 11201 2 Long Island City NY 11101 3 New York NY 10027 4 Far Rockaway NY 11691 website total_students \ 0 http://johndeweyhighschool.org 1937.0 1 www.mybsgs.com 275.0 2 www.ihsnyc.org 503.0 3 http://schools.nyc.gov/schoolportals/05/M367 309.0 4 http://schools.nyc.gov/schoolportals/27/Q260 412.0 campus_name school_type \ 0 NaN NaN 1 NaN Consortium School 2 Middle College Campus Consortium, International School 3 NaN NaN 4 Far Rockaway Educational Campus NaN overview_paragraph \ 0 We offer an innovative form of education that ... 1 At The Brooklyn School for Global Studies, all... 2 We are a small multicultural high school on th... 3 In collaboration with the College Board, Acade... 4 Frederick Douglass Academy (FDA) VI High Schoo... program_highlights \ 0 Computer Science Institute, Medical & Health P... 1 ILearn NYC and iZone School (Online Blended Le... 2 English instruction in all classes with Native... 3 Career and Technical Education courses in Digi... 4 Advisory, Graphic Arts Design, Teaching Intern... language_classes \ 0 Chinese, French, Italian, Russian, Spanish 1 Spanish 2 American Sign Language, Arabic, Bengali, Chine... 3 Spanish 4 Spanish advancedplacement_courses \ 0 Art History, Biology, Calculus AB, Calculus BC... 1 Art History, Calculus AB, English Language and... 2 Biology, Calculus AB, Chemistry, Chinese Langu... 3 Art History, Calculus AB, English Language and... 4 Calculus AB, English Language and Composition,... online_ap_courses \ 0 NaN 1 Art History, Calculus AB 2 NaN 3 NaN 4 Biology, Physics B online_language_courses \ 0 NaN 1 Arabic, Bengali, Chinese, Chinese (Cantonese),... 2 NaN 3 NaN 4 French, Spanish extracurricular_activities \ 0 Anime, Asian-American, ASPIRA of New York Lead... 1 Academic Enrichment, Cheerleading, Art Classes... 2 Access to LaGuardia Community College faciliti... 3 Sports and Arts Foundation, Digital Video Prod... 4 After-school Program, Book, Writing, Homework ... psal_sports_boys \ 0 Basketball, Cross Country, Football, Outdoor T... 1 Basketball, Volleyball 2 Basketball, Golf, Handball, Outdoor Track, Soc... 3 NaN 4 Basketball, Cross Country, Indoor Track, Outdo... psal_sports_girls psal_sports_coed \ 0 Basketball, Cross Country, Football, Outdoor T... NaN 1 Basketball, Volleyball NaN 2 Basketball, Golf, Handball, Outdoor Track, Soc... NaN 3 NaN NaN 4 Basketball, Cross Country, Indoor Track, Outdo... NaN school_sports \ 0 We also offer a variety of after-school sports... 1 Rugby, Cheerleading 2 International High School athletes join with s... 3 Boys Varsity Basketball, Girls Varsity Softbal... 4 Step Team, Modern Dance, Hip Hop Dance partner_cbo \ 0 Jewish Board of Family and Children’s Services... 1 Catholic Charities Out of School Time (OST) Hi... 2 Global Kids, Young Citizens’ Center of New Yor... 3 College Board, Turnaround for Children, Sports... 4 NaN partner_hospital \ 0 Coney Island Hospital Center, JASA Scheuer Hou... 1 SUNY Downstate School-Based Health Clinic 2 NaN 3 Harlem Hospital, Foundling Foundation 4 Jamaica Hospital Medical Center, Peninsula Hos... partner_highered \ 0 Kingsborough Community College, Medgar Evers C... 1 Young Women’s Leadership Network: College Boun... 2 LaGuardia Community College 3 The City College of New York (CUNY), Wheelock ... 4 York College, Brooklyn College, St. John's Col... partner_cultural \ 0 Theatre Development Fund (TDF), Center for Art... 1 Palazzo Strozzi Renaissance Award Essay Compet... 2 Earsay Theater Arts 3 ArtsConnection, Music Theatre International 4 NaN partner_nonprofit partner_corporate \ 0 National Academy Foundation (NAF), Prospect Pa... NaN 1 NaN NaN 2 Internationals Network for Public Schools (INP... Shearman & Sterling 3 The College Board, College Bound Initiative,Tu... NaN 4 Queens District Attorney, Sports and Arts Foun... Replications, Inc. partner_financial \ 0 Citigroup, Ernst & Young , Federal Reserve Ban... 1 NaN 2 NaN 3 NaN 4 Citibank partner_other \ 0 National Aeronautics Space Administration (NAS... 1 NaN 2 YMCA (Swimming) 3 NaN 4 New York Road Runners Foundation (NYRRF) addtl_info1 \ 0 Community Service Requirement 1 Saturday School Test Prep, Dedicated 9th Grade... 2 Portfolio Assessment required for graduation 3 Uniform Required: school shirt with logo, gray... 4 Uniform Required: plain white collared shirt, ... addtl_info2 start_time end_time \ 0 NaN 8:13 AM 3:05 PM 1 Extended Day Program, Uniform Required 8:45 AM 3:10 PM 2 Community Service Requirement, Extended Day Pr... 8:00 AM 3:30 PM 3 NaN 8:35 AM 3:45 PM 4 Extended Day Program, Student Summer Orientati... 7:45 AM 2:05 PM se_services \ 0 This school will provide students with disabil... 1 This school will provide students with disabil... 2 This school will provide students with disabil... 3 This school will provide students with disabil... 4 This school will provide students with disabil... ell_programs \ 0 ESL; Transitional Bilingual Program: Chinese 1 ESL 2 ESL 3 ESL 4 ESL school_accessibility_description number_programs \ 0 Not Functionally Accessible 8 1 Not Functionally Accessible 1 2 Functionally Accessible 1 3 Not Functionally Accessible 1 4 Not Functionally Accessible 1 priority01 \ 0 Priority to Brooklyn students or residents 1 Priority to continuing 8th graders 2 Open only to New York City residents living in... 3 Priority to continuing 8th graders 4 Priority to Queens students or residents who a... priority02 \ 0 Then to New York City residents 1 Then to Districts 13, 14, 15 and 16 students o... 2 NaN 3 Then to New York City residents who attend an ... 4 Then to New York City residents who attend an ... priority03 \ 0 For K56B only: Open only to students whose hom... 1 Then to Brooklyn students or residents 2 NaN 3 Then to New York City residents 4 Then to Queens students or residents priority04 priority05 priority06 priority07 \ 0 NaN NaN NaN NaN 1 Then to New York City residents NaN NaN NaN 2 NaN NaN NaN NaN 3 NaN NaN NaN NaN 4 Then to New York City residents NaN NaN NaN priority08 priority09 priority10 \ 0 NaN NaN NaN 1 NaN NaN NaN 2 NaN NaN NaN 3 NaN NaN NaN 4 NaN NaN NaN Location 1 Community Board \ 0 50 Avenue\nX Brooklyn, NY 11223\n(40.589238098... 13.0 1 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... 6.0 2 45 35 Van Dam Street\nLong Island City, NY 111... 2.0 3 509 West 129 Street\nNew York, NY 10027\n(40.8... 9.0 4 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... 14.0 Council District Census Tract BIN BBL \ 0 47.0 308.0 3194998.0 3.071850e+09 1 33.0 69.0 3006401.0 3.004020e+09 2 26.0 179.0 4003442.0 4.002490e+09 3 7.0 219.0 1059723.0 1.019840e+09 4 31.0 100802.0 4300730.0 4.157360e+09 NTA 0 Gravesend ... 1 DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hi... 2 Hunters Point-Sunnyside-West Maspeth ... 3 Manhattanville ... 4 Far Rockaway-Bayswater ... sat_results DBN SCHOOL NAME \ 0 01M292 HENRY STREET SCHOOL FOR INTERNATIONAL STUDIES 1 01M448 UNIVERSITY NEIGHBORHOOD HIGH SCHOOL 2 01M450 EAST SIDE COMMUNITY SCHOOL 3 01M458 FORSYTH SATELLITE ACADEMY 4 01M509 MARTA VALLE HIGH SCHOOL Num of SAT Test Takers SAT Critical Reading Avg. Score SAT Math Avg. Score \ 0 29 355 404 1 91 383 423 2 70 377 402 3 7 414 401 4 44 390 433 SAT Writing Avg. Score 0 363 1 366 2 370 3 359 4 384
From a cursory look at each dataset, we see that most have a column named DBN
. A quick Google search tells us that this is a unique identifier for each NYC school, so this is likely our best column to join our data on. However, before we can do that, we will need to create a DBN
column for class_size
and hs_directory
. Because our attendance
dataset lists districts and not individual schools we will need to add it in seperately at the end.
At first glance, each DBN appears to be a combination of the CSD
and SCHOOL CODE
columns of our class_size
dataset. Since CSD
seems likely to be the school district number, we should examine this further to see if we have an easy way of creating a new column for joining attendance
.
To do this, we'll take a look at the unique values for the CSD
column of class_size
and the District
column of attendance
.
np.sort(data['class_size']['CSD'].unique())
array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32], dtype=int64)
data['attendance']['District'].unique()
array(['DISTRICT 01', 'DISTRICT 02', 'DISTRICT 03', 'DISTRICT 04', 'DISTRICT 05', 'DISTRICT 06', 'DISTRICT 07', 'DISTRICT 08', 'DISTRICT 09', 'DISTRICT 10', 'DISTRICT 11', 'DISTRICT 12', 'DISTRICT 13', 'DISTRICT 14', 'DISTRICT 15', 'DISTRICT 16', 'DISTRICT 17', 'DISTRICT 18', 'DISTRICT 19', 'DISTRICT 20', 'DISTRICT 21', 'DISTRICT 22', 'DISTRICT 23', 'DISTRICT 24', 'DISTRICT 25', 'DISTRICT 26', 'DISTRICT 27', 'DISTRICT 28', 'DISTRICT 29', 'DISTRICT 30', 'DISTRICT 31', 'DISTRICT 32', 'SPECIAL ED DISTRICT 75', 'ALTERNATIVE HIGH SCHOOLS', 'Citywide'], dtype=object)
Although it appears CSD
represents the district, we see that our attendance
dataset includes three additional districts.
We know we do not need the citywide attendance numbers, but what about SPECIAL ED DISTRICT 75
AND ALTERNATIVE HIGH SCHOOLS
? Since what we are really concerned with is SAT scores, we look to that dataset to determine whether to include the extra districts:
s = data['sat_results']['DBN']
print(s[s.str.contains('7.\w{4}', regex=True)])
468 75K371 469 75M035 470 75Q256 471 75Q811 472 75R025 473 75X012 474 75X754 475 79M645 476 79Q950 477 79X490 Name: DBN, dtype: object
sat_results
contains data for two districts that begin with 7: District 75 and District 79. A Google search confirms that District 79 is the ALTERNATIVE HIGH SCHOOLS
value in our attendance
dataset.
For uniformity, we can update attendance
to reflect this and drop the Citywide
row since we will not be using that data.
print(data['attendance'].tail())
District YTD % Attendance (Avg) YTD Enrollment(Avg) 30 DISTRICT 31 90.98 59373 31 DISTRICT 32 89.28 15297 32 SPECIAL ED DISTRICT 75 83.21 21435 33 ALTERNATIVE HIGH SCHOOLS 63.81 7288 34 Citywide 89.99 1002463
data['attendance'].loc[33, 'District'] = 'ALTERNATIVE DISTRICT 79'
data['attendance'] = data['attendance'].drop(index=34)
print(data['attendance'].tail())
District YTD % Attendance (Avg) YTD Enrollment(Avg) 29 DISTRICT 30 92.79 39742 30 DISTRICT 31 90.98 59373 31 DISTRICT 32 89.28 15297 32 SPECIAL ED DISTRICT 75 83.21 21435 33 ALTERNATIVE DISTRICT 79 63.81 7288
To keep in mind while we move forward, it is useful to know which datasets include districts 75 and 79. The easiest way of doing this is looping through each and printing out the max DBN.
for k, v in data.items():
if 'DBN' in data[k].columns:
print('\n' + k + ':')
print(data[k]['DBN'].max())
elif 'dbn' in data[k].columns:
print('\n' + k + ':')
print(data[k]['dbn'].max())
else:
print('\n' + k + ':')
print('No DBN column')
ap_2010: 32K556 attendance: No DBN column class_size: No DBN column demographics: 32K564 graduation: 32K564 hs_directory: 32K556 sat_results: 79X490
Now we will add a DBN
column to class_size
and hs_directory
. In doing so, we make sure to add a zero padding to the beginning of the CSD
column for districts 1 through 9.
data['hs_directory'].rename(columns={'dbn' : 'DBN'}, inplace=True)
data['class_size']['DBN'] = data['class_size'].apply(lambda x: '{0:02d}{1}'.format(x['CSD'], x['SCHOOL CODE']), axis=1)
print(data['class_size']['DBN'].max())
32K564
Next, we need to add in the surveys before combining our datasets. However, if we simply try to read these files in using pd.read_csv
we run into a an error: UnicodeDecodeError: 'utf-8' codec can't decode byte 0x96 in position 34: invalid start byte
.
Since the characters in the range 0x80-0x9F are specific to Windows-1252, that is likely the encoding we should use. Just to double check, we can look up the Windows-1252 character at code point 0x96 (-
) and search for it in gened.txt
. (It turns out there is one -
in the text file that is likely throwing the error.)
survey1 = pd.read_csv('2011_School_Survey/gened.txt', delimiter='\t', encoding='windows-1252')
survey2 = pd.read_csv('2011_School_Survey/d75.txt', delimiter='\t', encoding='windows-1252')
survey = pd.concat([survey1, survey2], axis=0, sort=False)
Now that we have the surveys accessible as DataFrames, we will need to pare them down to only what we need. As a first step, we should update survey
to only include the columns that we need. This is where the Survey Data Dictionary
file becomes invaluable, as it tells us that most of the columns are individual survey questions/responses as opposed to the score each school received.
#We do not want to add an additional ~3000 columns to our data unless we can use it.
print(survey.shape)
print(survey.columns)
(1702, 2773) Index(['dbn', 'bn', 'schoolname', 'd75', 'studentssurveyed', 'highschool', 'schooltype', 'rr_s', 'rr_t', 'rr_p', ... 's_q14_2', 's_q14_3', 's_q14_4', 's_q14_5', 's_q14_6', 's_q14_7', 's_q14_8', 's_q14_9', 's_q14_10', 's_q14_11'], dtype='object', length=2773)
survey.rename(columns={'dbn' : 'DBN'}, inplace=True)
survey_fields = ['DBN', 'rr_s', 'rr_t', 'rr_p', 'N_s', 'N_t', 'N_p', 'saf_p_11', 'com_p_11', 'eng_p_11', 'aca_p_11', 'saf_t_11', 'com_t_11', 'eng_t_11', 'aca_t_11', 'saf_s_11', 'com_s_11', 'eng_s_11', 'aca_s_11', 'saf_tot_11', 'com_tot_11', 'eng_tot_11', 'aca_tot_11']
survey = survey.loc[:, survey_fields]
data['survey'] = survey
print(survey.shape)
(1702, 23)
Handling Duplicate DBNs¶
With the surveys added to our data dictionary, we now have to get rid of rows with duplicate DBNs since our sat_results
data has one row per school. To quickly identify which datasets need this, we can print the number of rows that have a duplicate DBN:
for k, v in data.items():
if k != 'attendance':
print('\n'+ k + ':')
print('Duplicate schools: ')
print(data[k].duplicated(['DBN']).sum())
ap_2010: Duplicate schools: 1 class_size: Duplicate schools: 26124 demographics: Duplicate schools: 8481 graduation: Duplicate schools: 24673 hs_directory: Duplicate schools: 0 sat_results: Duplicate schools: 0 survey: Duplicate schools: 0
Since ap_2010
has only one duplicate, we should find it and see whether it is disposable.
prev = ''
for dbn in data['ap_2010']['DBN']:
if dbn == prev:
print(data['ap_2010'][data['ap_2010']['DBN'] == dbn])
else:
prev = dbn
DBN SchoolName \ 51 04M610 THE YOUNG WOMEN'S LEADERSHIP SCHOOL OF EAST HA... 52 04M610 YOUNG WOMEN'S LEADERSHIP SCH AP Test Takers Total Exams Taken Number of Exams with scores 3 4 or 5 51 41.0 55.0 29.0 52 NaN NaN NaN
This particular duplicate seems to be a mistake and doesn't appear to serve any purpose, so we can simply drop it and move on to the next dataset.
data['ap_2010'] = data['ap_2010'].drop(index=52)
data['ap_2010'][data['ap_2010']['DBN'] == '04M610']
DBN | SchoolName | AP Test Takers | Total Exams Taken | Number of Exams with scores 3 4 or 5 | |
---|---|---|---|---|---|
51 | 04M610 | THE YOUNG WOMEN'S LEADERSHIP SCHOOL OF EAST HA... | 41.0 | 55.0 | 29.0 |
When we examine the class_size
dataset we can see that each school is split into multiple rows by three criteria — the grade or grade-range, the program type, and finally the class subject. Since we are interested in class size from all subjects, but only for high school, we will begin by limiting the data to only those rows represeting grades 9 through 12.
PROGRAM TYPE
. While it could be argued that we only want to include class size for gen ed classes (as alternate programs may have small classes, bringing down the mean), the author of this notebook believes there are two persuasive reasons to include alternative program types.
- The
sat_results
data only distinguishes between special ed districts, but not special ed programs within a school. Thus, some of the scores from a regular district school will be from students in a special ed program. - The
CTT
program type stands for "Collaborative Team-Teaching", a program type that has a roughly 60/40 split of gen ed and special ed students. To exclude this program type would be to exclude a sizeable portion of potential test-taking students.
class_size = data['class_size']
class_size = class_size[class_size['GRADE '] == '09-12']
By grouping the data by DBN
and aggregating by the mean, we are left with only one row per DBN and only the columns containing numerical values.
class_size = class_size.groupby('DBN').mean().reset_index()
class_size.head()
DBN | CSD | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | SCHOOLWIDE PUPIL-TEACHER RATIO | |
---|---|---|---|---|---|---|---|---|
0 | 01M292 | 1 | 65.384615 | 2.923077 | 22.700000 | 20.115385 | 25.307692 | NaN |
1 | 01M332 | 1 | 29.833333 | 1.666667 | 18.250000 | 17.666667 | 19.000000 | NaN |
2 | 01M378 | 1 | 33.000000 | 1.000000 | 33.000000 | 33.000000 | 33.000000 | NaN |
3 | 01M448 | 1 | 103.923077 | 4.423077 | 23.800000 | 20.115385 | 28.000000 | NaN |
4 | 01M450 | 1 | 53.535714 | 2.464286 | 21.928571 | 20.464286 | 23.250000 | NaN |
Looking at the head of class_size
, we see that the student-teacher ratio was not calculated. Although we could add this back in, the ratios are schoolwide and likely combine data for lower grades. Dropping the column in this case is appropriate.
class_size = class_size.drop(columns=['SCHOOLWIDE PUPIL-TEACHER RATIO'])
class_size.head()
DBN | CSD | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | |
---|---|---|---|---|---|---|---|
0 | 01M292 | 1 | 65.384615 | 2.923077 | 22.700000 | 20.115385 | 25.307692 |
1 | 01M332 | 1 | 29.833333 | 1.666667 | 18.250000 | 17.666667 | 19.000000 |
2 | 01M378 | 1 | 33.000000 | 1.000000 | 33.000000 | 33.000000 | 33.000000 |
3 | 01M448 | 1 | 103.923077 | 4.423077 | 23.800000 | 20.115385 | 28.000000 |
4 | 01M450 | 1 | 53.535714 | 2.464286 | 21.928571 | 20.464286 | 23.250000 |
data['class_size'] = class_size
The demographics
data appears to be split by schoolyear
and also contains a number of columns for lower grades. We will drop the unnecessary columns and select only the 2011-2012 school year.
demographics = data['demographics']
demographics.head(10)
DBN | Name | schoolyear | fl_percent | frl_percent | total_enrollment | prek | k | grade1 | grade2 | grade3 | grade4 | grade5 | grade6 | grade7 | grade8 | grade9 | grade10 | grade11 | grade12 | ell_num | ell_percent | sped_num | sped_percent | ctt_num | selfcontained_num | asian_num | asian_per | black_num | black_per | hispanic_num | hispanic_per | white_num | white_per | male_num | male_per | female_num | female_per | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20052006 | 89.4 | NaN | 281 | 15 | 36 | 40 | 33 | 38 | 52 | 29 | 38 | NaN | NaN | NaN | NaN | NaN | NaN | 36.0 | 12.8 | 57.0 | 20.3 | 25 | 9 | 10 | 3.6 | 74 | 26.3 | 189 | 67.3 | 5 | 1.8 | 158.0 | 56.2 | 123.0 | 43.8 |
1 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20062007 | 89.4 | NaN | 243 | 15 | 29 | 39 | 38 | 34 | 42 | 46 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 38.0 | 15.6 | 55.0 | 22.6 | 19 | 15 | 18 | 7.4 | 68 | 28.0 | 153 | 63.0 | 4 | 1.6 | 140.0 | 57.6 | 103.0 | 42.4 |
2 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20072008 | 89.4 | NaN | 261 | 18 | 43 | 39 | 36 | 38 | 47 | 40 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 52.0 | 19.9 | 60.0 | 23.0 | 20 | 14 | 16 | 6.1 | 77 | 29.5 | 157 | 60.2 | 7 | 2.7 | 143.0 | 54.8 | 118.0 | 45.2 |
3 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20082009 | 89.4 | NaN | 252 | 17 | 37 | 44 | 32 | 34 | 39 | 49 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 48.0 | 19.0 | 62.0 | 24.6 | 21 | 17 | 16 | 6.3 | 75 | 29.8 | 149 | 59.1 | 7 | 2.8 | 149.0 | 59.1 | 103.0 | 40.9 |
4 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20092010 | 96.5 | 208 | 16 | 40 | 28 | 32 | 30 | 24 | 38 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 40.0 | 19.2 | 46.0 | 22.1 | 14 | 14 | 16 | 7.7 | 67 | 32.2 | 118 | 56.7 | 6 | 2.9 | 124.0 | 59.6 | 84.0 | 40.4 | |
5 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20102011 | 96.5 | 203 | 13 | 37 | 35 | 33 | 30 | 30 | 25 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 30.0 | 14.8 | 46.0 | 22.7 | 21 | 9 | 13 | 6.4 | 75 | 36.9 | 110 | 54.2 | 4 | 2.0 | 113.0 | 55.7 | 90.0 | 44.3 | |
6 | 01M015 | P.S. 015 ROBERTO CLEMENTE | 20112012 | NaN | 89.4 | 189 | 13 | 31 | 35 | 28 | 25 | 28 | 29 | 20.0 | 10.6 | 40.0 | 21.2 | 23 | 7 | 12 | 6.3 | 63 | 33.3 | 109 | 57.7 | 4 | 2.1 | 97.0 | 51.3 | 92.0 | 48.7 | |||||||
7 | 01M019 | P.S. 019 ASHER LEVY | 20052006 | 61.5 | NaN | 402 | 15 | 43 | 55 | 53 | 68 | 59 | 64 | 45 | NaN | NaN | NaN | NaN | NaN | NaN | 37.0 | 9.2 | 93.0 | 23.1 | 7 | 37 | 40 | 10.0 | 103 | 25.6 | 207 | 51.5 | 39 | 9.7 | 214.0 | 53.2 | 188.0 | 46.8 |
8 | 01M019 | P.S. 019 ASHER LEVY | 20062007 | 61.5 | NaN | 312 | 13 | 37 | 45 | 52 | 47 | 61 | 57 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 30.0 | 9.6 | 72.0 | 23.1 | 13 | 22 | 30 | 9.6 | 70 | 22.4 | 172 | 55.1 | 19 | 6.1 | 157.0 | 50.3 | 155.0 | 49.7 |
9 | 01M019 | P.S. 019 ASHER LEVY | 20072008 | 61.5 | NaN | 338 | 28 | 48 | 46 | 47 | 53 | 48 | 68 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 40.0 | 11.8 | 75.0 | 22.2 | 12 | 19 | 42 | 12.4 | 72 | 21.3 | 186 | 55.0 | 22 | 6.5 | 162.0 | 47.9 | 176.0 | 52.1 |
demographics.columns
Index(['DBN', 'Name', 'schoolyear', 'fl_percent', 'frl_percent', 'total_enrollment', 'prek', 'k', 'grade1', 'grade2', 'grade3', 'grade4', 'grade5', 'grade6', 'grade7', 'grade8', 'grade9', 'grade10', 'grade11', 'grade12', 'ell_num', 'ell_percent', 'sped_num', 'sped_percent', 'ctt_num', 'selfcontained_num', 'asian_num', 'asian_per', 'black_num', 'black_per', 'hispanic_num', 'hispanic_per', 'white_num', 'white_per', 'male_num', 'male_per', 'female_num', 'female_per'], dtype='object')
As the data dictionary provided on the download page for this dataset was not very thorough, significant internet digging is required to fully understand the columns. In particular, the fl_percent
, frl_percent
and selfcontained_num
columns were not self-explanatory.
Luckily, the Kaggle Column Info
table found here sheds some light. We now see that selfcontained_num
represents the number of special ed students who are in special ed-only classes as opposed to the mixed CTT classes.
We also find that fl_percent
represents the percentage of students who qualified for, and received, free school lunches annually through the 2008-2009 school year. From the 2009-2010 school year onward, fl_percent
was not recorded and free and reduced-price lunches were recorded together under the column frl_percent
. Thus, for the year we are interested in (2011-2012) fl_percent
contains only NaN
values and should be dropped.
demographics = demographics.drop(columns=['fl_percent', 'prek', 'k', 'grade1', 'grade2', 'grade3', 'grade4', 'grade5', 'grade6', 'grade7', 'grade8'])
demographics = demographics[demographics['schoolyear'] == 20112012]
demographics.dtypes
DBN object Name object schoolyear int64 frl_percent float64 total_enrollment int64 grade9 object grade10 object grade11 object grade12 object ell_num float64 ell_percent float64 sped_num float64 sped_percent float64 ctt_num object selfcontained_num object asian_num int64 asian_per float64 black_num int64 black_per float64 hispanic_num int64 hispanic_per float64 white_num int64 white_per float64 male_num float64 male_per float64 female_num float64 female_per float64 dtype: object
When we take a look at the remaining data types for each demographics
column, we see that some columns we expected to contain numbers are Pandas' object
type. On further examination, we see that these numbers are saved as strings. Converting these columns into a numerical data type now will save us headaches down the road when we have to handle missing data.
demographics['selfcontained_num'].unique()
array(['7', '16', '31', '4', '28', '9', '21', '25', '36', '29', '0', '12', '35', '24', '11', '13', '18', '10', '19', '2', '14', '26', '17', '20', '1', '6', '33', '8', '44', '3', '5', ' ', '15', '47', '45', '80', '108', '30', '42', '66', '78', '32', '43', '22', '38', '34', '60', '53', '63', '23', '127', '49', '52', '41', '54', '39', '51', '48', '61', '27', '46', '55', '57', '74', '59', '50', '87', '120', '88', '56', '65', '85', '90', '37', '92', '347', '69', '64', '73', '62', '76', '82', '119', '77', '110', '124', '81', '72', '79', '352', '153', '75', '67', '95', '40', '258', '70', '113', '58', '97', '167', '68', '133', '71', '93', '125', '182', '270', '186', '83', '126', '249', '100', '118', '122', '89', '96', '112', '162', '137', '173', '214', '138', '91', '103', '109', '135', '147', '114', '102', '111', '176', '121', '98', '86', '101', '151', '172', '308'], dtype=object)
string_nums = ['grade9', 'grade10', 'grade11', 'grade12', 'ctt_num', 'selfcontained_num']
for col in string_nums:
demographics[col] = pd.to_numeric(demographics[col], errors='coerce')
data['demographics'] = demographics
data['demographics'].dtypes
DBN object Name object schoolyear int64 frl_percent float64 total_enrollment int64 grade9 float64 grade10 float64 grade11 float64 grade12 float64 ell_num float64 ell_percent float64 sped_num float64 sped_percent float64 ctt_num float64 selfcontained_num float64 asian_num int64 asian_per float64 black_num int64 black_per float64 hispanic_num int64 hispanic_per float64 white_num int64 white_per float64 male_num float64 male_per float64 female_num float64 female_per float64 dtype: object
Finally, we take a look at our graduation
dataset, which we know has over 24,000 duplicate DBNs. It appears to be split by cohort and Demographic, so we first check out the values for those two columns.
graduation = data['graduation']
print(graduation.shape)
graduation.head(10)
(25096, 23)
Demographic | DBN | School Name | Cohort | Total Cohort | Total Grads - n | Total Grads - % of cohort | Total Regents - n | Total Regents - % of cohort | Total Regents - % of grads | Advanced Regents - n | Advanced Regents - % of cohort | Advanced Regents - % of grads | Regents w/o Advanced - n | Regents w/o Advanced - % of cohort | Regents w/o Advanced - % of grads | Local - n | Local - % of cohort | Local - % of grads | Still Enrolled - n | Still Enrolled - % of cohort | Dropped Out - n | Dropped Out - % of cohort | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Total Cohort | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL | 2003 | 5 | s | NaN | s | NaN | NaN | s | NaN | NaN | s | NaN | NaN | s | NaN | NaN | s | NaN | s | NaN |
1 | Total Cohort | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL | 2004 | 55 | 37 | 67.3 | 17 | 30.9 | 45.9 | 0 | 0.0 | 0.0 | 17 | 30.9 | 45.9 | 20 | 36.4 | 54.1 | 15 | 27.3 | 3 | 5.5 |
2 | Total Cohort | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL | 2005 | 64 | 43 | 67.2 | 27 | 42.2 | 62.8 | 0 | 0.0 | 0.0 | 27 | 42.2 | 62.8 | 16 | 25.0 | 37.2 | 9 | 14.1 | 9 | 14.1 |
3 | Total Cohort | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL | 2006 | 78 | 43 | 55.1 | 36 | 46.2 | 83.7 | 0 | 0.0 | 0.0 | 36 | 46.2 | 83.7 | 7 | 9.0 | 16.3 | 16 | 20.5 | 11 | 14.1 |
4 | Total Cohort | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL | 2006 Aug | 78 | 44 | 56.4 | 37 | 47.4 | 84.1 | 0 | 0.0 | 0.0 | 37 | 47.4 | 84.1 | 7 | 9.0 | 15.9 | 15 | 19.2 | 11 | 14.1 |
5 | Total Cohort | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 2001 | 64 | 46 | 71.9 | 32 | 50.0 | 69.6 | 7 | 10.9 | 15.2 | 25 | 39.1 | 54.3 | 14 | 21.9 | 30.4 | 10 | 15.6 | 6 | 9.4 |
6 | Total Cohort | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 2002 | 52 | 33 | 63.5 | 19 | 36.5 | 57.6 | 8 | 15.4 | 24.2 | 11 | 21.2 | 33.3 | 14 | 26.9 | 42.4 | 16 | 30.8 | 1 | 1.9 |
7 | Total Cohort | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 2003 | 87 | 67 | 77.0 | 39 | 44.8 | 58.2 | 11 | 12.6 | 16.4 | 28 | 32.2 | 41.8 | 28 | 32.2 | 41.8 | 9 | 10.3 | 11 | 12.6 |
8 | Total Cohort | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 2004 | 112 | 75 | 67.0 | 36 | 32.1 | 48.0 | 6 | 5.4 | 8.0 | 30 | 26.8 | 40.0 | 39 | 34.8 | 52.0 | 33 | 29.5 | 4 | 3.6 |
9 | Total Cohort | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 2005 | 121 | 64 | 52.9 | 35 | 28.9 | 54.7 | 4 | 3.3 | 6.3 | 31 | 25.6 | 48.4 | 29 | 24.0 | 45.3 | 41 | 33.9 | 11 | 9.1 |
print(graduation['Demographic'].unique())
['Total Cohort' 'Asian' 'Male' 'Black' 'English Language Learners' 'Hispanic' 'White' 'English Proficient Students' 'Special Education Students' 'General Education Students' 'Female']
print(graduation['Cohort'].unique())
['2003' '2004' '2005' '2006' '2006 Aug' '2001' '2002']
We only care about the graduation statistics for the whole school, so we limit our data to the Demographic Total Cohort
. It is also useful to check the number of individual DBNs at this point, since this is the number of rows we want after cleaning the dataset.
graduation = data['graduation'][data['graduation']['Demographic'] == 'Total Cohort']
graduation.DBN.nunique()
423
As we only have data on the cohorts from 2001-2006 (graduating classes of 2005-2010), selecting a single cohort would not be appropriate here — particularly since the SAT results are from 2012. However, a historic graduation average for the included schools may indicate a broader, schoolwide trend. To achieve this, we will group by DBN and take the mean of the combined cohorts. Just like with our class_size
dataset, this will leave us with one line per DBN and only the relevant numeric columns.
graduation = graduation.groupby('DBN').mean().reset_index()
print(graduation.shape)
data['graduation'] = graduation
(423, 13)
If we run our test for duplicate rows now, we should have nothing but zeros.
for k, v in data.items():
if k != 'attendance':
print('\n'+ k + ':')
print('Duplicate schools: ')
print(data[k].duplicated(['DBN']).sum())
ap_2010: Duplicate schools: 0 class_size: Duplicate schools: 0 demographics: Duplicate schools: 0 graduation: Duplicate schools: 0 hs_directory: Duplicate schools: 0 sat_results: Duplicate schools: 0 survey: Duplicate schools: 0
Feature Engineering¶
Now that our data is clean and ready to process, we need to create any columns needed for analysis and combine everything into one DataFrame.
Given that we are interested in correlations to SAT scores, we should start by creating a column that lists the average total score for each school. To do this, we simply convert the Reading, Math and Writing scores to numbers and add them together.
data['sat_results'].dtypes
DBN object SCHOOL NAME object Num of SAT Test Takers object SAT Critical Reading Avg. Score object SAT Math Avg. Score object SAT Writing Avg. Score object dtype: object
sat_results = data['sat_results']
scores = [
'Num of SAT Test Takers', #while not a score, we want this column to be numeric
'SAT Critical Reading Avg. Score',
'SAT Math Avg. Score',
'SAT Writing Avg. Score'
]
for score in scores:
sat_results[score] = pd.to_numeric(sat_results[score], errors='coerce')
sat_results['sat_score'] = sat_results[scores[1]] + sat_results[scores[2]] + sat_results[scores[3]]
print(sat_results.dtypes)
print(sat_results['sat_score'].head())
DBN object SCHOOL NAME object Num of SAT Test Takers float64 SAT Critical Reading Avg. Score float64 SAT Math Avg. Score float64 SAT Writing Avg. Score float64 sat_score float64 dtype: object 0 1122.0 1 1172.0 2 1149.0 3 1174.0 4 1207.0 Name: sat_score, dtype: float64
When converting the columns to numeric values, we specified errors='coerce'
, which allowed Pandas to change values labeled 's'
to Nan
values. The NYC OpenData download pages note that an 's'
signifies the record contained fewer than five students and was suppressed. Unfortunately, nearly 60 New York schools in sat_results
had fewer than five students take the SAT in 2012, which leaves a significant gap in our data.
print(sat_results['sat_score'].isna().sum())
57
Since sat_results
is our primary dataset, we won't drop these rows. Instead, we will fill the missing data with the mean of each score, fill in 2
for the number of test takers (the mean of the numbers below five), and flag these rows by adding a new column is_suppressed
.
lambda1 = lambda x: 0 if pd.notnull(x) else 1
sat_results['is_suppressed'] = sat_results['sat_score'].apply(lambda1)
sat_results[scores[0]] = sat_results[scores[0]].fillna(value=2)
sat_results = sat_results.fillna(sat_results.mean())
There is no need for the extra decimal places, so we can round all numeric values to zero decimal places and save this DataFrame back into our data
dictionary.
sat_results = sat_results.round(0)
data['sat_results'] = sat_results
data['sat_results'].head(25)
DBN | SCHOOL NAME | Num of SAT Test Takers | SAT Critical Reading Avg. Score | SAT Math Avg. Score | SAT Writing Avg. Score | sat_score | is_suppressed | |
---|---|---|---|---|---|---|---|---|
0 | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL STUDIES | 29.0 | 355.0 | 404.0 | 363.0 | 1122.0 | 0 |
1 | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 91.0 | 383.0 | 423.0 | 366.0 | 1172.0 | 0 |
2 | 01M450 | EAST SIDE COMMUNITY SCHOOL | 70.0 | 377.0 | 402.0 | 370.0 | 1149.0 | 0 |
3 | 01M458 | FORSYTH SATELLITE ACADEMY | 7.0 | 414.0 | 401.0 | 359.0 | 1174.0 | 0 |
4 | 01M509 | MARTA VALLE HIGH SCHOOL | 44.0 | 390.0 | 433.0 | 384.0 | 1207.0 | 0 |
5 | 01M515 | LOWER EAST SIDE PREPARATORY HIGH SCHOOL | 112.0 | 332.0 | 557.0 | 316.0 | 1205.0 | 0 |
6 | 01M539 | NEW EXPLORATIONS INTO SCIENCE, TECHNOLOGY AND ... | 159.0 | 522.0 | 574.0 | 525.0 | 1621.0 | 0 |
7 | 01M650 | CASCADES HIGH SCHOOL | 18.0 | 417.0 | 418.0 | 411.0 | 1246.0 | 0 |
8 | 01M696 | BARD HIGH SCHOOL EARLY COLLEGE | 130.0 | 624.0 | 604.0 | 628.0 | 1856.0 | 0 |
9 | 02M047 | 47 THE AMERICAN SIGN LANGUAGE AND ENGLISH SECO... | 16.0 | 395.0 | 400.0 | 387.0 | 1182.0 | 0 |
10 | 02M288 | FOOD AND FINANCE HIGH SCHOOL | 62.0 | 409.0 | 393.0 | 392.0 | 1194.0 | 0 |
11 | 02M294 | ESSEX STREET ACADEMY | 53.0 | 394.0 | 384.0 | 378.0 | 1156.0 | 0 |
12 | 02M296 | HIGH SCHOOL OF HOSPITALITY MANAGEMENT | 58.0 | 374.0 | 375.0 | 362.0 | 1111.0 | 0 |
13 | 02M298 | PACE HIGH SCHOOL | 85.0 | 423.0 | 438.0 | 432.0 | 1293.0 | 0 |
14 | 02M300 | URBAN ASSEMBLY SCHOOL OF DESIGN AND CONSTRUCTI... | 48.0 | 404.0 | 449.0 | 416.0 | 1269.0 | 0 |
15 | 02M303 | FACING HISTORY SCHOOL, THE | 76.0 | 353.0 | 358.0 | 340.0 | 1051.0 | 0 |
16 | 02M305 | URBAN ASSEMBLY ACADEMY OF GOVERNMENT AND LAW, THE | 50.0 | 375.0 | 388.0 | 385.0 | 1148.0 | 0 |
17 | 02M308 | LOWER MANHATTAN ARTS ACADEMY | 40.0 | 403.0 | 392.0 | 405.0 | 1200.0 | 0 |
18 | 02M313 | JAMES BALDWIN SCHOOL, THE: A SCHOOL FOR EXPEDI... | 69.0 | 408.0 | 390.0 | 390.0 | 1188.0 | 0 |
19 | 02M316 | URBAN ASSEMBLY SCHOOL OF BUSINESS FOR YOUNG WO... | 42.0 | 373.0 | 370.0 | 384.0 | 1127.0 | 0 |
20 | 02M374 | GRAMERCY ARTS HIGH SCHOOL | 60.0 | 391.0 | 391.0 | 394.0 | 1176.0 | 0 |
21 | 02M376 | NYC ISCHOOL | 92.0 | 473.0 | 483.0 | 479.0 | 1435.0 | 0 |
22 | 02M392 | MANHATTAN BUSINESS ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 |
23 | 02M393 | BUSINESS OF SPORTS SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 |
24 | 02M394 | EMMA LAZARUS HIGH SCHOOL | 79.0 | 319.0 | 512.0 | 357.0 | 1188.0 | 0 |
We also want to take advantage of the Location 1
variable listed in the hs_directory
dataset.
If we print out the first value in the Location 1
column, we see it is a string containing the address, followed by the coordinates. To make the best use of this information, we will split it into two columns for the latitude and longitude of each school and ensure those values are numeric.
data['hs_directory']['Location 1'][0]
'50 Avenue\nX Brooklyn, NY 11223\n(40.589238098, -73.981746524)'
lat_lambda = lambda x: x.split('\n')[-1].replace('(', '').replace(')', '').split(', ')[0]
lon_lambda = lambda x: x.split('\n')[-1].replace('(', '').replace(')', '').split(', ')[1]
data['hs_directory']['lat'] = data['hs_directory']['Location 1'].apply(lat_lambda)
data['hs_directory']['lon'] = data['hs_directory']['Location 1'].apply(lon_lambda)
for c in ['lat', 'lon']:
data['hs_directory'][c] = pd.to_numeric(data['hs_directory'][c])
print(data['hs_directory'].dtypes)
data['hs_directory'].head()
DBN object school_name object borough object building_code object phone_number object fax_number object grade_span_min float64 grade_span_max int64 expgrade_span_min float64 expgrade_span_max float64 bus object subway object primary_address_line_1 object city object state_code object postcode int64 website object total_students float64 campus_name object school_type object overview_paragraph object program_highlights object language_classes object advancedplacement_courses object online_ap_courses object online_language_courses object extracurricular_activities object psal_sports_boys object psal_sports_girls object psal_sports_coed object school_sports object partner_cbo object partner_hospital object partner_highered object partner_cultural object partner_nonprofit object partner_corporate object partner_financial object partner_other object addtl_info1 object addtl_info2 object start_time object end_time object se_services object ell_programs object school_accessibility_description object number_programs int64 priority01 object priority02 object priority03 object priority04 object priority05 object priority06 object priority07 object priority08 object priority09 object priority10 object Location 1 object Community Board float64 Council District float64 Census Tract float64 BIN float64 BBL float64 NTA object lat float64 lon float64 dtype: object
DBN | school_name | borough | building_code | phone_number | fax_number | grade_span_min | grade_span_max | expgrade_span_min | expgrade_span_max | bus | subway | primary_address_line_1 | city | state_code | postcode | website | total_students | campus_name | school_type | overview_paragraph | program_highlights | language_classes | advancedplacement_courses | online_ap_courses | online_language_courses | extracurricular_activities | psal_sports_boys | psal_sports_girls | psal_sports_coed | school_sports | partner_cbo | partner_hospital | partner_highered | partner_cultural | partner_nonprofit | partner_corporate | partner_financial | partner_other | addtl_info1 | addtl_info2 | start_time | end_time | se_services | ell_programs | school_accessibility_description | number_programs | priority01 | priority02 | priority03 | priority04 | priority05 | priority06 | priority07 | priority08 | priority09 | priority10 | Location 1 | Community Board | Council District | Census Tract | BIN | BBL | NTA | lat | lon | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 21K540 | John Dewey High School | Brooklyn | K540 | 718-373-6400 | 718-266-4385 | 9.0 | 12 | NaN | NaN | B1, B4, B64, B82 | D to Bay 50th St ; F to Ave X ; N to Gravesend... | 50 Avenue X | Brooklyn | NY | 11223 | http://johndeweyhighschool.org | 1937.0 | NaN | NaN | We offer an innovative form of education that ... | Computer Science Institute, Medical & Health P... | Chinese, French, Italian, Russian, Spanish | Art History, Biology, Calculus AB, Calculus BC... | NaN | NaN | Anime, Asian-American, ASPIRA of New York Lead... | Basketball, Cross Country, Football, Outdoor T... | Basketball, Cross Country, Football, Outdoor T... | NaN | We also offer a variety of after-school sports... | Jewish Board of Family and Children’s Services... | Coney Island Hospital Center, JASA Scheuer Hou... | Kingsborough Community College, Medgar Evers C... | Theatre Development Fund (TDF), Center for Art... | National Academy Foundation (NAF), Prospect Pa... | NaN | Citigroup, Ernst & Young , Federal Reserve Ban... | National Aeronautics Space Administration (NAS... | Community Service Requirement | NaN | 8:13 AM | 3:05 PM | This school will provide students with disabil... | ESL; Transitional Bilingual Program: Chinese | Not Functionally Accessible | 8 | Priority to Brooklyn students or residents | Then to New York City residents | For K56B only: Open only to students whose hom... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 50 Avenue\nX Brooklyn, NY 11223\n(40.589238098... | 13.0 | 47.0 | 308.0 | 3194998.0 | 3.071850e+09 | Gravesend ... | 40.589238 | -73.981747 |
1 | 15K429 | Brooklyn School for Global Studies | Brooklyn | K293 | 718-694-9741 | 718-694-9745 | 6.0 | 12 | NaN | NaN | B103, B45, B57, B61, B62, B63, B65 | A, C to Hoyt & Schermerhorn ; F, G to Bergen St | 284 Baltic Street | Brooklyn | NY | 11201 | www.mybsgs.com | 275.0 | NaN | Consortium School | At The Brooklyn School for Global Studies, all... | ILearn NYC and iZone School (Online Blended Le... | Spanish | Art History, Calculus AB, English Language and... | Art History, Calculus AB | Arabic, Bengali, Chinese, Chinese (Cantonese),... | Academic Enrichment, Cheerleading, Art Classes... | Basketball, Volleyball | Basketball, Volleyball | NaN | Rugby, Cheerleading | Catholic Charities Out of School Time (OST) Hi... | SUNY Downstate School-Based Health Clinic | Young Women’s Leadership Network: College Boun... | Palazzo Strozzi Renaissance Award Essay Compet... | NaN | NaN | NaN | NaN | Saturday School Test Prep, Dedicated 9th Grade... | Extended Day Program, Uniform Required | 8:45 AM | 3:10 PM | This school will provide students with disabil... | ESL | Not Functionally Accessible | 1 | Priority to continuing 8th graders | Then to Districts 13, 14, 15 and 16 students o... | Then to Brooklyn students or residents | Then to New York City residents | NaN | NaN | NaN | NaN | NaN | NaN | 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... | 6.0 | 33.0 | 69.0 | 3006401.0 | 3.004020e+09 | DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hi... | 40.685452 | -73.993491 |
2 | 24Q530 | International High School at LaGuardia Communi... | Queens | Q520 | 718-392-3433 | 718-392-3443 | 9.0 | 12 | NaN | NaN | B24, Q100, Q101, Q102, Q32, Q39, Q60, Q67 | 7 to Rawson St-33rd St ; E, M, R to Queens Plaza | 45-35 Van Dam Street | Long Island City | NY | 11101 | www.ihsnyc.org | 503.0 | Middle College Campus | Consortium, International School | We are a small multicultural high school on th... | English instruction in all classes with Native... | American Sign Language, Arabic, Bengali, Chine... | Biology, Calculus AB, Chemistry, Chinese Langu... | NaN | NaN | Access to LaGuardia Community College faciliti... | Basketball, Golf, Handball, Outdoor Track, Soc... | Basketball, Golf, Handball, Outdoor Track, Soc... | NaN | International High School athletes join with s... | Global Kids, Young Citizens’ Center of New Yor... | NaN | LaGuardia Community College | Earsay Theater Arts | Internationals Network for Public Schools (INP... | Shearman & Sterling | NaN | YMCA (Swimming) | Portfolio Assessment required for graduation | Community Service Requirement, Extended Day Pr... | 8:00 AM | 3:30 PM | This school will provide students with disabil... | ESL | Functionally Accessible | 1 | Open only to New York City residents living in... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 45 35 Van Dam Street\nLong Island City, NY 111... | 2.0 | 26.0 | 179.0 | 4003442.0 | 4.002490e+09 | Hunters Point-Sunnyside-West Maspeth ... | 40.744150 | -73.933627 |
3 | 05M367 | Academy for Social Action: A College Board School | Manhattan | M043 | 212-234-3102 | 212-234-8597 | 9.0 | 12 | NaN | NaN | Bx15, Bx33, M10, M100, M101, M104, M11, M3, M4... | 1, A, B, C, D to 125th St | 509 West 129 Street | New York | NY | 10027 | http://schools.nyc.gov/schoolportals/05/M367 | 309.0 | NaN | NaN | In collaboration with the College Board, Acade... | Career and Technical Education courses in Digi... | Spanish | Art History, Calculus AB, English Language and... | NaN | NaN | Sports and Arts Foundation, Digital Video Prod... | NaN | NaN | NaN | Boys Varsity Basketball, Girls Varsity Softbal... | College Board, Turnaround for Children, Sports... | Harlem Hospital, Foundling Foundation | The City College of New York (CUNY), Wheelock ... | ArtsConnection, Music Theatre International | The College Board, College Bound Initiative,Tu... | NaN | NaN | NaN | Uniform Required: school shirt with logo, gray... | NaN | 8:35 AM | 3:45 PM | This school will provide students with disabil... | ESL | Not Functionally Accessible | 1 | Priority to continuing 8th graders | Then to New York City residents who attend an ... | Then to New York City residents | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 509 West 129 Street\nNew York, NY 10027\n(40.8... | 9.0 | 7.0 | 219.0 | 1059723.0 | 1.019840e+09 | Manhattanville ... | 40.815230 | -73.955201 |
4 | 27Q260 | Frederick Douglass Academy VI High School | Queens | Q465 | 718-471-2154 | 718-471-2890 | 9.0 | 12 | NaN | NaN | Q113, Q22 | A to Beach 25th St-Wavecrest | 8-21 Bay 25 Street | Far Rockaway | NY | 11691 | http://schools.nyc.gov/schoolportals/27/Q260 | 412.0 | Far Rockaway Educational Campus | NaN | Frederick Douglass Academy (FDA) VI High Schoo... | Advisory, Graphic Arts Design, Teaching Intern... | Spanish | Calculus AB, English Language and Composition,... | Biology, Physics B | French, Spanish | After-school Program, Book, Writing, Homework ... | Basketball, Cross Country, Indoor Track, Outdo... | Basketball, Cross Country, Indoor Track, Outdo... | NaN | Step Team, Modern Dance, Hip Hop Dance | NaN | Jamaica Hospital Medical Center, Peninsula Hos... | York College, Brooklyn College, St. John's Col... | NaN | Queens District Attorney, Sports and Arts Foun... | Replications, Inc. | Citibank | New York Road Runners Foundation (NYRRF) | Uniform Required: plain white collared shirt, ... | Extended Day Program, Student Summer Orientati... | 7:45 AM | 2:05 PM | This school will provide students with disabil... | ESL | Not Functionally Accessible | 1 | Priority to Queens students or residents who a... | Then to New York City residents who attend an ... | Then to Queens students or residents | Then to New York City residents | NaN | NaN | NaN | NaN | NaN | NaN | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.0 | 31.0 | 100802.0 | 4300730.0 | 4.157360e+09 | Far Rockaway-Bayswater ... | 40.601989 | -73.762834 |
At this point, we see that we can pare down the number of columns in hs_directory
. While more data is usually better, columns such as phone_number
and fax_number
will not yield any useful information for our purposes. Removing them from our hs_directory
data and creating our own boolean features such as has_ap
will help focus our analysis.
directory_cols = ['DBN', 'school_name', 'borough', 'building_code', 'grade_span_min', 'grade_span_max',
'city', 'postcode', 'total_students', 'school_type', 'language_classes', 'advancedplacement_courses',
'online_ap_courses', 'online_language_courses', 'start_time', 'end_time', 'number_programs',
'Location 1', 'Community Board', 'Council District', 'lat', 'lon']
data['hs_directory'] = data['hs_directory'][directory_cols]
data['hs_directory'].columns
Index(['DBN', 'school_name', 'borough', 'building_code', 'grade_span_min', 'grade_span_max', 'city', 'postcode', 'total_students', 'school_type', 'language_classes', 'advancedplacement_courses', 'online_ap_courses', 'online_language_courses', 'start_time', 'end_time', 'number_programs', 'Location 1', 'Community Board', 'Council District', 'lat', 'lon'], dtype='object')
# Creating boolean features for AP and language courses
data['hs_directory']['has_lang'] = data['hs_directory']['language_classes'].apply(lambda x: 0 if pd.isnull(x) else 1)
data['hs_directory']['has_ap'] = data['hs_directory']['advancedplacement_courses'].apply(lambda x: 0 if pd.isnull(x) else 1)
data['hs_directory']['has_online_lang'] = data['hs_directory']['online_language_courses'].apply(lambda x: 0 if pd.isnull(x) else 1)
data['hs_directory']['has_online_ap'] = data['hs_directory']['online_ap_courses'].apply(lambda x: 0 if pd.isnull(x) else 1)
data['hs_directory'].head(10)
DBN | school_name | borough | building_code | grade_span_min | grade_span_max | city | postcode | total_students | school_type | language_classes | advancedplacement_courses | online_ap_courses | online_language_courses | start_time | end_time | number_programs | Location 1 | Community Board | Council District | lat | lon | has_lang | has_ap | has_online_lang | has_online_ap | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 21K540 | John Dewey High School | Brooklyn | K540 | 9.0 | 12 | Brooklyn | 11223 | 1937.0 | NaN | Chinese, French, Italian, Russian, Spanish | Art History, Biology, Calculus AB, Calculus BC... | NaN | NaN | 8:13 AM | 3:05 PM | 8 | 50 Avenue\nX Brooklyn, NY 11223\n(40.589238098... | 13.0 | 47.0 | 40.589238 | -73.981747 | 1 | 1 | 0 | 0 |
1 | 15K429 | Brooklyn School for Global Studies | Brooklyn | K293 | 6.0 | 12 | Brooklyn | 11201 | 275.0 | Consortium School | Spanish | Art History, Calculus AB, English Language and... | Art History, Calculus AB | Arabic, Bengali, Chinese, Chinese (Cantonese),... | 8:45 AM | 3:10 PM | 1 | 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... | 6.0 | 33.0 | 40.685452 | -73.993491 | 1 | 1 | 1 | 1 |
2 | 24Q530 | International High School at LaGuardia Communi... | Queens | Q520 | 9.0 | 12 | Long Island City | 11101 | 503.0 | Consortium, International School | American Sign Language, Arabic, Bengali, Chine... | Biology, Calculus AB, Chemistry, Chinese Langu... | NaN | NaN | 8:00 AM | 3:30 PM | 1 | 45 35 Van Dam Street\nLong Island City, NY 111... | 2.0 | 26.0 | 40.744150 | -73.933627 | 1 | 1 | 0 | 0 |
3 | 05M367 | Academy for Social Action: A College Board School | Manhattan | M043 | 9.0 | 12 | New York | 10027 | 309.0 | NaN | Spanish | Art History, Calculus AB, English Language and... | NaN | NaN | 8:35 AM | 3:45 PM | 1 | 509 West 129 Street\nNew York, NY 10027\n(40.8... | 9.0 | 7.0 | 40.815230 | -73.955201 | 1 | 1 | 0 | 0 |
4 | 27Q260 | Frederick Douglass Academy VI High School | Queens | Q465 | 9.0 | 12 | Far Rockaway | 11691 | 412.0 | NaN | Spanish | Calculus AB, English Language and Composition,... | Biology, Physics B | French, Spanish | 7:45 AM | 2:05 PM | 1 | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.0 | 31.0 | 40.601989 | -73.762834 | 1 | 1 | 1 | 1 |
5 | 21K559 | Life Academy High School for Film and Music | Brooklyn | K400 | 9.0 | 12 | Brooklyn | 11214 | 260.0 | NaN | Spanish | NaN | Biology, English Literature and Composition, E... | NaN | 8:15 AM | 3:00 PM | 1 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.0 | 47.0 | 40.593594 | -73.984729 | 1 | 0 | 0 | 1 |
6 | 16K393 | Frederick Douglass Academy IV Secondary School | Brooklyn | K026 | 9.0 | 12 | Brooklyn | 11221 | 155.0 | NaN | French, Spanish | English Language and Composition, United State... | French Language and Culture | NaN | 8:00 AM | 2:20 PM | 1 | 1014 Lafayette Avenue\nBrooklyn, NY 11221\n(40... | 3.0 | 36.0 | 40.692134 | -73.931503 | 1 | 1 | 0 | 1 |
7 | 08X305 | Pablo Neruda Academy | Bronx | X450 | 9.0 | 12 | Bronx | 10473 | 335.0 | NaN | Spanish | Art History, English Language and Composition,... | NaN | Spanish | 8:00 AM | 3:50 PM | 1 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.0 | 18.0 | 40.822304 | -73.855961 | 1 | 1 | 1 | 0 |
8 | 03M485 | Fiorello H. LaGuardia High School of Music & A... | Manhattan | M485 | 9.0 | 12 | New York | 10023 | 2730.0 | Specialized School | French, Italian, Japanese, Spanish | Art History, Biology, Calculus AB, Calculus BC... | NaN | Spanish | 8:00 AM | 4:00 PM | 6 | 100 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.0 | 6.0 | 40.773671 | -73.985269 | 1 | 1 | 1 | 0 |
9 | 02M305 | Urban Assembly Academy of Government and Law, The | Manhattan | M445 | 9.0 | 12 | New York | 10002 | 326.0 | NaN | Spanish | English Literature and Composition, Microecono... | NaN | NaN | 8:32 AM | 3:45 PM | 1 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.0 | 1.0 | 40.716867 | -73.989532 | 1 | 1 | 0 | 0 |
Features representing the existence of a particular language program may also lead to some interesting insights. To create these, we must first fill in the Nan
values to avoid throwing an error.
data['hs_directory']['language_classes'] = data['hs_directory']['language_classes'].fillna(value='No Language Classes')
data['hs_directory']['has_spanish'] = data['hs_directory']['language_classes'].apply(lambda x: 1 if 'Spanish' in x else 0)
data['hs_directory']['has_french'] = data['hs_directory']['language_classes'].apply(lambda x: 1 if 'French' in x else 0)
data['hs_directory']['has_chinese'] = data['hs_directory']['language_classes'].apply(lambda x: 1 if 'Chinese' in x else 0)
data['hs_directory']['has_russian'] = data['hs_directory']['language_classes'].apply(lambda x: 1 if 'Russian' in x else 0)
print(data['hs_directory'].dtypes)
data['hs_directory'].head(15)
DBN object school_name object borough object building_code object grade_span_min float64 grade_span_max int64 city object postcode int64 total_students float64 school_type object language_classes object advancedplacement_courses object online_ap_courses object online_language_courses object start_time object end_time object number_programs int64 Location 1 object Community Board float64 Council District float64 lat float64 lon float64 has_lang int64 has_ap int64 has_online_lang int64 has_online_ap int64 has_spanish int64 has_french int64 has_chinese int64 has_russian int64 dtype: object
DBN | school_name | borough | building_code | grade_span_min | grade_span_max | city | postcode | total_students | school_type | language_classes | advancedplacement_courses | online_ap_courses | online_language_courses | start_time | end_time | number_programs | Location 1 | Community Board | Council District | lat | lon | has_lang | has_ap | has_online_lang | has_online_ap | has_spanish | has_french | has_chinese | has_russian | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 21K540 | John Dewey High School | Brooklyn | K540 | 9.0 | 12 | Brooklyn | 11223 | 1937.0 | NaN | Chinese, French, Italian, Russian, Spanish | Art History, Biology, Calculus AB, Calculus BC... | NaN | NaN | 8:13 AM | 3:05 PM | 8 | 50 Avenue\nX Brooklyn, NY 11223\n(40.589238098... | 13.0 | 47.0 | 40.589238 | -73.981747 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
1 | 15K429 | Brooklyn School for Global Studies | Brooklyn | K293 | 6.0 | 12 | Brooklyn | 11201 | 275.0 | Consortium School | Spanish | Art History, Calculus AB, English Language and... | Art History, Calculus AB | Arabic, Bengali, Chinese, Chinese (Cantonese),... | 8:45 AM | 3:10 PM | 1 | 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... | 6.0 | 33.0 | 40.685452 | -73.993491 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 |
2 | 24Q530 | International High School at LaGuardia Communi... | Queens | Q520 | 9.0 | 12 | Long Island City | 11101 | 503.0 | Consortium, International School | American Sign Language, Arabic, Bengali, Chine... | Biology, Calculus AB, Chemistry, Chinese Langu... | NaN | NaN | 8:00 AM | 3:30 PM | 1 | 45 35 Van Dam Street\nLong Island City, NY 111... | 2.0 | 26.0 | 40.744150 | -73.933627 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
3 | 05M367 | Academy for Social Action: A College Board School | Manhattan | M043 | 9.0 | 12 | New York | 10027 | 309.0 | NaN | Spanish | Art History, Calculus AB, English Language and... | NaN | NaN | 8:35 AM | 3:45 PM | 1 | 509 West 129 Street\nNew York, NY 10027\n(40.8... | 9.0 | 7.0 | 40.815230 | -73.955201 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
4 | 27Q260 | Frederick Douglass Academy VI High School | Queens | Q465 | 9.0 | 12 | Far Rockaway | 11691 | 412.0 | NaN | Spanish | Calculus AB, English Language and Composition,... | Biology, Physics B | French, Spanish | 7:45 AM | 2:05 PM | 1 | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.0 | 31.0 | 40.601989 | -73.762834 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 |
5 | 21K559 | Life Academy High School for Film and Music | Brooklyn | K400 | 9.0 | 12 | Brooklyn | 11214 | 260.0 | NaN | Spanish | NaN | Biology, English Literature and Composition, E... | NaN | 8:15 AM | 3:00 PM | 1 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.0 | 47.0 | 40.593594 | -73.984729 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 |
6 | 16K393 | Frederick Douglass Academy IV Secondary School | Brooklyn | K026 | 9.0 | 12 | Brooklyn | 11221 | 155.0 | NaN | French, Spanish | English Language and Composition, United State... | French Language and Culture | NaN | 8:00 AM | 2:20 PM | 1 | 1014 Lafayette Avenue\nBrooklyn, NY 11221\n(40... | 3.0 | 36.0 | 40.692134 | -73.931503 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
7 | 08X305 | Pablo Neruda Academy | Bronx | X450 | 9.0 | 12 | Bronx | 10473 | 335.0 | NaN | Spanish | Art History, English Language and Composition,... | NaN | Spanish | 8:00 AM | 3:50 PM | 1 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.0 | 18.0 | 40.822304 | -73.855961 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
8 | 03M485 | Fiorello H. LaGuardia High School of Music & A... | Manhattan | M485 | 9.0 | 12 | New York | 10023 | 2730.0 | Specialized School | French, Italian, Japanese, Spanish | Art History, Biology, Calculus AB, Calculus BC... | NaN | Spanish | 8:00 AM | 4:00 PM | 6 | 100 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.0 | 6.0 | 40.773671 | -73.985269 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
9 | 02M305 | Urban Assembly Academy of Government and Law, The | Manhattan | M445 | 9.0 | 12 | New York | 10002 | 326.0 | NaN | Spanish | English Literature and Composition, Microecono... | NaN | NaN | 8:32 AM | 3:45 PM | 1 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.0 | 1.0 | 40.716867 | -73.989532 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
10 | 11X509 | High School of Language and Innovation | Bronx | X415 | 9.0 | 12 | Bronx | 10469 | 255.0 | NaN | Chinese, Korean, Russian | Calculus AB | NaN | NaN | 8:25 AM | 3:15 PM | 1 | 925 Astor Avenue\nBronx, NY 10469\n(40.8596983... | 11.0 | 13.0 | 40.859698 | -73.860741 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
11 | 17K122 | Pathways in Technology Early College High Scho... | Brooklyn | K625 | 9.0 | 12 | Brooklyn | 11213 | 330.0 | NYC P-Tech 9-14 School | No Language Classes | NaN | NaN | NaN | 8:15 AM | 4:30 PM | 1 | 150 Albany Avenue\nBrooklyn, NY 11213\n(40.675... | 8.0 | 36.0 | 40.675402 | -73.938881 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
12 | 08X348 | Schuylerville Preparatory High School | Bronx | X405 | 9.0 | 11 | Bronx | 10461 | 95.0 | NaN | Latin, Spanish Native Language Arts | NaN | NaN | NaN | 8:00 AM | 3:40 PM | 1 | 3000 East Tremont Avenue\nBronx, NY 10461\n(40... | 10.0 | 13.0 | 40.840514 | -73.838121 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
13 | 24Q236 | International High School for Health Sciences | Queens | Q455 | 9.0 | 11 | Elmhurst | 11373 | 50.0 | International School | No Language Classes | NaN | NaN | NaN | 8:30 AM | 3:30 PM | 1 | 48 01 90 Street\nElmhurst, NY 11373\n(40.74120... | 4.0 | 25.0 | 40.741205 | -73.874730 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
14 | 23K644 | Eagle Academy for Young Men II | Brooklyn | K271 | 6.0 | 12 | Brooklyn | 11233 | 513.0 | All-Boys School | Spanish | Biology, Calculus AB, Chemistry, English Liter... | NaN | NaN | 8:45 AM | 3:00 PM | 1 | 1137 Herkimer Street\nBrooklyn, NY 11233\n(40.... | 16.0 | 41.0 | 40.677826 | -73.915823 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
Finally, we see that our start_time
and end_time
columns are not numerical data. In the off-chance of a correlation with start and end times, we will convert them into numerical values and fill any null values with the mean.
times = ['start_time', 'end_time']
for c in times:
data['hs_directory'][c] = data['hs_directory'][c].str.split(' ').str[0].str.replace(':', '')
data['hs_directory'][c] = pd.to_numeric(data['hs_directory'][c])
data['hs_directory'][c] = data['hs_directory'][c].fillna(data['hs_directory'][c].mean())
data['hs_directory'][c] = data['hs_directory'][c].round(0)
data['hs_directory'][times].head()
start_time | end_time | |
---|---|---|
0 | 813.0 | 305.0 |
1 | 845.0 | 310.0 |
2 | 800.0 | 330.0 |
3 | 835.0 | 345.0 |
4 | 745.0 | 205.0 |
Combining our Data¶
Our data is now ready to be consolidated into one DataFrame for analysis. There are a number of ways we could do this, but for this project we are only really interested in the schools for which we have SAT data. What this means is that we want to join the data in a way that preserves all rows of sat_results
, but only keeps rows from our other datasets that correspond to those schools.
To start off, we can take a look at the shapes of our data sets to understand what our final DataFrame should look like.
for k, v in data.items():
print(k)
print(v.shape)
ap_2010 (257, 5) attendance (34, 3) class_size (590, 7) demographics (1509, 27) graduation (423, 13) hs_directory (435, 30) sat_results (478, 8) survey (1702, 23)
We know it should have the same number of rows as sat_results
(478), and that our final column count will be six less than the sum of our current column count (we are joining six datasets to sat_results
on the DBN
column). Now we can combine our data and check to see if we lose any columns.
To begin combining our data, we start with the sat_results
dataset and join each dataset that has a DBN
column using a left
join. This will preserve all rows in sat_results
as well as all columns from all datasets, but drop rows where the DBN is not in our SAT data.
names = [k for k, v in data.items()]
full = data['sat_results']
for name in names:
if name not in ['sat_results', 'attendance']:
full = full.merge(data[name], on='DBN', how='left')
full.shape
(478, 107)
Now we will create a school_dist
feature for our full
and attendance
datasets and left join attenance
into full
.
full['school_dist'] = full['DBN'].apply(lambda x: x[:2])
dist_lambda = lambda x: x.split(' ')[-1]
data['attendance']['school_dist'] = data['attendance']['District'].apply(dist_lambda)
full = full.merge(data['attendance'], on='school_dist', how='left')
full.head()
DBN | SCHOOL NAME | Num of SAT Test Takers | SAT Critical Reading Avg. Score | SAT Math Avg. Score | SAT Writing Avg. Score | sat_score | is_suppressed | SchoolName | AP Test Takers | Total Exams Taken | Number of Exams with scores 3 4 or 5 | CSD | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | Name | schoolyear | frl_percent | total_enrollment | grade9 | grade10 | grade11 | grade12 | ell_num | ell_percent | sped_num | sped_percent | ctt_num | selfcontained_num | asian_num | asian_per | black_num | black_per | hispanic_num | hispanic_per | white_num | white_per | male_num | male_per | female_num | female_per | Total Cohort | Total Grads - % of cohort | Total Regents - % of cohort | Total Regents - % of grads | Advanced Regents - % of cohort | Advanced Regents - % of grads | Regents w/o Advanced - % of cohort | Regents w/o Advanced - % of grads | Local - % of cohort | Local - % of grads | Still Enrolled - % of cohort | Dropped Out - % of cohort | school_name | borough | building_code | grade_span_min | grade_span_max | city | postcode | total_students | school_type | language_classes | advancedplacement_courses | online_ap_courses | online_language_courses | start_time | end_time | number_programs | Location 1 | Community Board | Council District | lat | lon | has_lang | has_ap | has_online_lang | has_online_ap | has_spanish | has_french | has_chinese | has_russian | rr_s | rr_t | rr_p | N_s | N_t | N_p | saf_p_11 | com_p_11 | eng_p_11 | aca_p_11 | saf_t_11 | com_t_11 | eng_t_11 | aca_t_11 | saf_s_11 | com_s_11 | eng_s_11 | aca_s_11 | saf_tot_11 | com_tot_11 | eng_tot_11 | aca_tot_11 | school_dist | District | YTD % Attendance (Avg) | YTD Enrollment(Avg) | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL STUDIES | 29.0 | 355.0 | 404.0 | 363.0 | 1122.0 | 0 | NaN | NaN | NaN | NaN | 1.0 | 65.384615 | 2.923077 | 22.700000 | 20.115385 | 25.307692 | HENRY STREET SCHOOL FOR INTERNATIONAL STUDIES | 20112012.0 | 88.6 | 422.0 | 98.0 | 79.0 | 80.0 | 50.0 | 94.0 | 22.3 | 105.0 | 24.9 | 34.0 | 35.0 | 59.0 | 14.0 | 123.0 | 29.1 | 227.0 | 53.8 | 7.0 | 1.7 | 259.0 | 61.4 | 163.0 | 38.6 | 56.000000 | 61.500000 | 41.675000 | 69.125000 | 0.000000 | 0.000000 | 41.675000 | 69.125000 | 19.850000 | 30.875000 | 20.275000 | 11.950000 | Henry Street School for International Studies | Manhattan | M056 | 6.0 | 12.0 | New York | 10002.0 | 323.0 | NaN | Chinese (Mandarin), Spanish | Psychology | Chinese Language and Culture, Spanish Literatu... | Chinese (Mandarin), Spanish | 830.0 | 330.0 | 1.0 | 220 Henry Street\nNew York, NY 10002\n(40.7137... | 3.0 | 1.0 | 40.713764 | -73.985260 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 89.0 | 70.0 | 39.0 | 379.0 | 26.0 | 151.0 | 7.8 | 7.7 | 7.4 | 7.6 | 6.3 | 5.3 | 6.1 | 6.5 | 6.0 | 5.6 | 6.1 | 6.7 | 6.7 | 6.2 | 6.6 | 7.0 | 01 | DISTRICT 01 | 91.18 | 12367 |
1 | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 91.0 | 383.0 | 423.0 | 366.0 | 1172.0 | 0 | UNIVERSITY NEIGHBORHOOD H.S. | 39.0 | 49.0 | 10.0 | 1.0 | 103.923077 | 4.423077 | 23.800000 | 20.115385 | 28.000000 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 20112012.0 | 71.8 | 394.0 | 109.0 | 97.0 | 93.0 | 95.0 | 83.0 | 21.1 | 86.0 | 21.8 | 55.0 | 10.0 | 115.0 | 29.2 | 89.0 | 22.6 | 181.0 | 45.9 | 9.0 | 2.3 | 226.0 | 57.4 | 168.0 | 42.6 | 97.714286 | 60.485714 | 37.157143 | 62.471429 | 8.657143 | 14.071429 | 28.528571 | 48.385714 | 23.314286 | 37.528571 | 26.957143 | 9.828571 | University Neighborhood High School | Manhattan | M446 | 9.0 | 12.0 | New York | 10002.0 | 299.0 | NaN | Chinese, Spanish | Calculus AB, Chinese Language and Culture, Eng... | NaN | Chinese (Cantonese), Chinese (Mandarin), Spanish | 815.0 | 315.0 | 3.0 | 200 Monroe Street\nNew York, NY 10002\n(40.712... | 3.0 | 1.0 | 40.712332 | -73.984797 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 84.0 | 95.0 | 10.0 | 385.0 | 37.0 | 46.0 | 7.9 | 7.4 | 7.2 | 7.3 | 6.6 | 5.8 | 6.6 | 7.3 | 6.0 | 5.7 | 6.3 | 7.0 | 6.8 | 6.3 | 6.7 | 7.2 | 01 | DISTRICT 01 | 91.18 | 12367 |
2 | 01M450 | EAST SIDE COMMUNITY SCHOOL | 70.0 | 377.0 | 402.0 | 370.0 | 1149.0 | 0 | EAST SIDE COMMUNITY HS | 19.0 | 21.0 | NaN | 1.0 | 53.535714 | 2.464286 | 21.928571 | 20.464286 | 23.250000 | EAST SIDE COMMUNITY HIGH SCHOOL | 20112012.0 | 71.8 | 598.0 | 101.0 | 93.0 | 77.0 | 86.0 | 30.0 | 5.0 | 158.0 | 26.4 | 91.0 | 19.0 | 58.0 | 9.7 | 143.0 | 23.9 | 331.0 | 55.4 | 62.0 | 10.4 | 327.0 | 54.7 | 271.0 | 45.3 | 79.571429 | 70.385714 | 66.000000 | 93.828571 | 0.000000 | 0.000000 | 66.000000 | 93.828571 | 4.357143 | 6.171429 | 17.614286 | 10.742857 | East Side Community School | Manhattan | M060 | 6.0 | 12.0 | New York | 10009.0 | 649.0 | Consortium School | No Language Classes | Calculus AB, English Literature and Composition | NaN | American Sign Language, Arabic, Chinese (Manda... | 830.0 | 330.0 | 1.0 | 420 East 12 Street\nNew York, NY 10009\n(40.72... | 3.0 | 2.0 | 40.729783 | -73.983041 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 98.0 | 28.0 | NaN | 42.0 | 150.0 | 8.7 | 8.2 | 8.1 | 8.4 | 7.3 | 8.0 | 8.0 | 8.8 | NaN | NaN | NaN | NaN | 7.9 | 7.9 | 7.9 | 8.4 | 01 | DISTRICT 01 | 91.18 | 12367 |
3 | 01M458 | FORSYTH SATELLITE ACADEMY | 7.0 | 414.0 | 401.0 | 359.0 | 1174.0 | 0 | NaN | NaN | NaN | NaN | 1.0 | 28.600000 | 1.200000 | 23.000000 | 22.600000 | 23.400000 | SATELLITE ACADEMY HS @ FORSYTHE STREET | 20112012.0 | 72.8 | 224.0 | 131.0 | 49.0 | 44.0 | NaN | 9.0 | 4.0 | 20.0 | 8.9 | 3.0 | 0.0 | 5.0 | 2.2 | 77.0 | 34.4 | 133.0 | 59.4 | 8.0 | 3.6 | 97.0 | 43.3 | 127.0 | 56.7 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 40.0 | 100.0 | 23.0 | 66.0 | 10.0 | 37.0 | 8.1 | 7.0 | 6.7 | 7.6 | 8.5 | 8.2 | 8.9 | 8.9 | 6.8 | 6.1 | 6.1 | 6.8 | 7.8 | 7.1 | 7.2 | 7.8 | 01 | DISTRICT 01 | 91.18 | 12367 |
4 | 01M509 | MARTA VALLE HIGH SCHOOL | 44.0 | 390.0 | 433.0 | 384.0 | 1207.0 | 0 | NaN | NaN | NaN | NaN | 1.0 | 49.851852 | 2.296296 | 19.370370 | 17.370370 | 21.481481 | MARTA VALLE SECONDARY SCHOOL | 20112012.0 | 80.7 | 367.0 | 143.0 | 100.0 | 51.0 | 73.0 | 41.0 | 11.2 | 95.0 | 25.9 | 28.0 | 36.0 | 34.0 | 9.3 | 116.0 | 31.6 | 209.0 | 56.9 | 6.0 | 1.6 | 170.0 | 46.3 | 197.0 | 53.7 | 73.571429 | 49.914286 | 31.385714 | 61.157143 | 10.571429 | 19.628571 | 20.814286 | 41.514286 | 18.514286 | 38.842857 | 29.857143 | 14.342857 | Marta Valle High School | Manhattan | M025 | 9.0 | 12.0 | New York | 10002.0 | 401.0 | NaN | French, Spanish | English Literature and Composition, Studio Art... | NaN | Spanish | 800.0 | 330.0 | 1.0 | 145 Stanton Street\nNew York, NY 10002\n(40.72... | 3.0 | 1.0 | 40.720569 | -73.985673 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.0 | 100.0 | 21.0 | 306.0 | 29.0 | 69.0 | 7.7 | 7.4 | 7.2 | 7.3 | 6.4 | 5.3 | 6.1 | 6.8 | 6.4 | 5.9 | 6.4 | 7.0 | 6.9 | 6.2 | 6.6 | 7.0 | 01 | DISTRICT 01 | 91.18 | 12367 |
To verify that we lost no columns, we print out the number of columns in full
and the combined total of all columns from our data
dictionary. If we merged our data successfully, full
should have six columns fewer.
full_columns = [full.columns[x] for x in range(len(full.columns))]
all_columns = []
for name in names:
all_columns += [data[name].columns[x] for x in range(len(data[name].columns))]
print(len(full_columns), len(all_columns))
111 117
Filling in missing values¶
Our last step before analyzing the data is to fill in any missing values that we have left. Although there is never a perfect way to address this, we can use our knowledge of the data to determine the best method for each case. For this data, we will use a combination of dropping columns we don't need, filling Nan
s with values extracted from elsewhere in the dataset, and filling empty values with either 0
or the column's mean for the remainder.
To begin, we look at the total number of missing values in each column and look for redundant or otherwise unhelpful columns that we missed in our earlier cleaning of the datasets.
full.isna().sum()
DBN 0 SCHOOL NAME 0 Num of SAT Test Takers 0 SAT Critical Reading Avg. Score 0 SAT Math Avg. Score 0 SAT Writing Avg. Score 0 sat_score 0 is_suppressed 0 SchoolName 225 AP Test Takers 246 Total Exams Taken 246 Number of Exams with scores 3 4 or 5 327 CSD 44 NUMBER OF STUDENTS / SEATS FILLED 44 NUMBER OF SECTIONS 44 AVERAGE CLASS SIZE 44 SIZE OF SMALLEST CLASS 44 SIZE OF LARGEST CLASS 44 Name 28 schoolyear 28 frl_percent 28 total_enrollment 28 grade9 41 grade10 29 grade11 44 grade12 60 ell_num 28 ell_percent 28 sped_num 28 sped_percent 28 ctt_num 38 selfcontained_num 38 asian_num 28 asian_per 28 black_num 28 black_per 28 hispanic_num 28 hispanic_per 28 white_num 28 white_per 28 male_num 28 male_per 28 female_num 28 female_per 28 Total Cohort 89 Total Grads - % of cohort 110 Total Regents - % of cohort 110 Total Regents - % of grads 110 Advanced Regents - % of cohort 110 Advanced Regents - % of grads 110 Regents w/o Advanced - % of cohort 110 Regents w/o Advanced - % of grads 110 Local - % of cohort 110 Local - % of grads 110 Still Enrolled - % of cohort 110 Dropped Out - % of cohort 110 school_name 109 borough 109 building_code 109 grade_span_min 111 grade_span_max 109 city 109 postcode 109 total_students 109 school_type 406 language_classes 109 advancedplacement_courses 170 online_ap_courses 425 online_language_courses 422 start_time 109 end_time 109 number_programs 109 Location 1 109 Community Board 111 Council District 111 lat 109 lon 109 has_lang 109 has_ap 109 has_online_lang 109 has_online_ap 109 has_spanish 109 has_french 109 has_chinese 109 has_russian 109 rr_s 8 rr_t 8 rr_p 8 N_s 12 N_t 8 N_p 9 saf_p_11 9 com_p_11 9 eng_p_11 9 aca_p_11 9 saf_t_11 8 com_t_11 8 eng_t_11 8 aca_t_11 8 saf_s_11 12 com_s_11 12 eng_s_11 12 aca_s_11 12 saf_tot_11 8 com_tot_11 8 eng_tot_11 8 aca_tot_11 8 school_dist 0 District 0 YTD % Attendance (Avg) 0 YTD Enrollment(Avg) 0 dtype: int64
full['building_code'].unique()[:100]
array(['M056', 'M446', 'M060', nan, 'M025', 'M022', 'M097', 'M047', 'M535', 'M445', 'M131', 'M282', 'M460', 'M615', 'M440', 'M625', 'M834', 'M475', 'M017', 'M874', 'M070', 'M660', 'M855', 'M824', 'M894', 'M620', 'M873', 'M480', 'M477', 'M833', 'M520', 'M486', 'M896', 'M877', 'M600', 'M488', 'M645', 'M490', 'M470', 'M088', 'M837', 'M485', 'M045', 'M435', 'M495', 'M013', 'M895', 'M107', 'M136', 'M125', 'M043', 'M010', 'M970', 'M812', 'M218', 'M814', 'M143', 'M052', 'M465', 'M540', 'M876', 'X149', 'X139', 'X884', 'X470', 'X162', 'X155', 'X790', 'X183', 'X600', 'X392', 'X174', 'X405', 'X450', 'X039', 'X972', 'X410', 'X465', 'X970', 'X002', 'X004', 'X400', 'X166', 'X082', 'X460', 'X148', 'X876', 'X141', 'X475', 'X137', 'X143', 'X435', 'X430', 'X368', 'X440', 'X445', 'X905', 'X455', 'X425', 'X362'], dtype=object)
Immediately, we see that there are a handful of repeat school name columns and a CSD
column that are missing data. As these are redundant, we will simply drop these columns. There is also a column titled building_code
that has over 100 missing values. Upon further inspection, we see that this is nearly identical to the SCHOOL CODE
column from our class_size
dataset that we already dropped. As this information is already in DBN
, we can drop this column as well.
cols_to_drop = ['SchoolName', 'Name', 'school_name', 'CSD', 'building_code']
full = full.drop(columns=cols_to_drop)
One column with a large number of missing values is school_type
. Although this is a categorical column, we can use it to generate more numeric columns for our analysis. To do this, we can fill in the null values with a generic term and use each school type as new boolean column for our full
dataset.
print(full['school_type'].unique())
[nan 'Consortium School' 'CTE School' 'All-Girls School' 'International School' 'Consortium, International School' 'Specialized School' 'All-Boys School']
full['school_type'] = full['school_type'].fillna(value='Traditional')
full['is_consort'] = full['school_type'].apply(lambda x: 1 if x == 'Consortium School' else 0)
full['is_CTE'] = full['school_type'].apply(lambda x: 1 if x == 'CTE School' else 0)
full['is_allgirls'] = full['school_type'].apply(lambda x: 1 if x == 'All-Girls School' else 0)
full['is_intl'] = full['school_type'].apply(lambda x: 1 if x == 'International School' else 0)
full['is_consort_intl'] = full['school_type'].apply(lambda x: 1 if x == 'Consortium, International School' else 0)
full['is_specialized'] = full['school_type'].apply(lambda x: 1 if x == 'Specialized School' else 0)
full['is_allboys'] = full['school_type'].apply(lambda x: 1 if x == 'All-Boys School' else 0)
We are also missing a significant amount of data on AP test takers. For this data, we will only look for correlations in those schools that have AP Test data, and fill the missing values with 0
.
ap_cols = ['AP Test Takers ', 'Total Exams Taken', 'Number of Exams with scores 3 4 or 5']
print(full[ap_cols].dtypes)
full[ap_cols] = full[ap_cols].fillna(value=0)
#full.isna().sum()
AP Test Takers float64 Total Exams Taken float64 Number of Exams with scores 3 4 or 5 float64 dtype: object
Our language and AP class columns also have over 100 missing values. Just as with the AP columns above, we will not assume any schools missing this data have those courses. We will fill in the categorical columns with a value of 'No courses'
and the boolean columns with a value of 0
.
ap_lang = ['language_classes', 'advancedplacement_courses', 'online_ap_courses', 'online_language_courses']
full[ap_lang] = full[ap_lang].fillna(value='No courses')
bools = ['has_lang', 'has_ap', 'has_online_lang', 'has_online_ap', 'has_spanish', 'has_french', 'has_chinese', 'has_russian']
full[bools] = full[bools].fillna(value=0)
full.isna().sum()
DBN 0 SCHOOL NAME 0 Num of SAT Test Takers 0 SAT Critical Reading Avg. Score 0 SAT Math Avg. Score 0 SAT Writing Avg. Score 0 sat_score 0 is_suppressed 0 AP Test Takers 0 Total Exams Taken 0 Number of Exams with scores 3 4 or 5 0 NUMBER OF STUDENTS / SEATS FILLED 44 NUMBER OF SECTIONS 44 AVERAGE CLASS SIZE 44 SIZE OF SMALLEST CLASS 44 SIZE OF LARGEST CLASS 44 schoolyear 28 frl_percent 28 total_enrollment 28 grade9 41 grade10 29 grade11 44 grade12 60 ell_num 28 ell_percent 28 sped_num 28 sped_percent 28 ctt_num 38 selfcontained_num 38 asian_num 28 asian_per 28 black_num 28 black_per 28 hispanic_num 28 hispanic_per 28 white_num 28 white_per 28 male_num 28 male_per 28 female_num 28 female_per 28 Total Cohort 89 Total Grads - % of cohort 110 Total Regents - % of cohort 110 Total Regents - % of grads 110 Advanced Regents - % of cohort 110 Advanced Regents - % of grads 110 Regents w/o Advanced - % of cohort 110 Regents w/o Advanced - % of grads 110 Local - % of cohort 110 Local - % of grads 110 Still Enrolled - % of cohort 110 Dropped Out - % of cohort 110 borough 109 grade_span_min 111 grade_span_max 109 city 109 postcode 109 total_students 109 school_type 0 language_classes 0 advancedplacement_courses 0 online_ap_courses 0 online_language_courses 0 start_time 109 end_time 109 number_programs 109 Location 1 109 Community Board 111 Council District 111 lat 109 lon 109 has_lang 0 has_ap 0 has_online_lang 0 has_online_ap 0 has_spanish 0 has_french 0 has_chinese 0 has_russian 0 rr_s 8 rr_t 8 rr_p 8 N_s 12 N_t 8 N_p 9 saf_p_11 9 com_p_11 9 eng_p_11 9 aca_p_11 9 saf_t_11 8 com_t_11 8 eng_t_11 8 aca_t_11 8 saf_s_11 12 com_s_11 12 eng_s_11 12 aca_s_11 12 saf_tot_11 8 com_tot_11 8 eng_tot_11 8 aca_tot_11 8 school_dist 0 District 0 YTD % Attendance (Avg) 0 YTD Enrollment(Avg) 0 is_consort 0 is_CTE 0 is_allgirls 0 is_intl 0 is_consort_intl 0 is_specialized 0 is_allboys 0 dtype: int64
Among the remaining columns there are many missing values that we simply cannot infer from the rest of the data. However, there are a few more columns that we can fill in from the information we already have. In particular, the borough
, lat
and lon
columns are not too diffucult to fill in to some degree of accuracy with merely what we have in our full
dataset.
For borough
we will isolate the letter in each school's DBN and fill in the corresponding borough if it is missing. Each of the five letters in the DBNs represent a different borough of NYC: M
for Manhattan, K
for Brooklyn (Kings County), X
for Bronx, Q
for Queens and R
for Staten Island (Richmond County).
def find_borough(x):
if x[2] == 'M':
return 'Manhattan'
elif x[2] == 'K':
return 'Brooklyn'
elif x[2] == 'X':
return 'Bronx'
elif x[2] == 'Q':
return 'Queens'
else:
return 'Staten Island'
full['borough'] = full['DBN'].apply(find_borough)
For our lat
and lon
columns, we could theoretically look up the addresses of all 109 missing schools on Google and find the coordinates from there. However, for our purposes, we don't need their locations to be so accurate as to justify the time that would take. Instead, we will fill in each latitude and longitude with the mean coordinates of the school district it is in. Since districts 75 and 79 have no physical boundaries, we will fill those missing values with the mean coordinates of the borough instead.
dist_coords = full[['lat', 'lon']].groupby(full['school_dist']).mean().reset_index()
boro_coords = full[['lat', 'lon']].groupby(full['borough']).mean().reset_index()
print(boro_coords)
dist_coords
borough lat lon 0 Bronx 40.844908 -73.890242 1 Brooklyn 40.665784 -73.947509 2 Manhattan 40.765282 -73.975853 3 Queens 40.715683 -73.835808 4 Staten Island 40.595680 -74.125726
school_dist | lat | lon | |
---|---|---|---|
0 | 01 | 40.719022 | -73.982377 |
1 | 02 | 40.739540 | -73.991099 |
2 | 03 | 40.781574 | -73.977370 |
3 | 04 | 40.793572 | -73.942534 |
4 | 05 | 40.817077 | -73.949251 |
5 | 06 | 40.848970 | -73.932502 |
6 | 07 | 40.816815 | -73.919971 |
7 | 08 | 40.823004 | -73.864576 |
8 | 09 | 40.836349 | -73.906240 |
9 | 10 | 40.870345 | -73.898360 |
10 | 11 | 40.873138 | -73.856120 |
11 | 12 | 40.831412 | -73.886946 |
12 | 13 | 40.692865 | -73.977016 |
13 | 14 | 40.711599 | -73.948360 |
14 | 15 | 40.675972 | -73.989255 |
15 | 16 | 40.686497 | -73.928188 |
16 | 17 | 40.661319 | -73.954519 |
17 | 18 | 40.641863 | -73.914726 |
18 | 19 | 40.676547 | -73.882158 |
19 | 20 | 40.626751 | -74.006191 |
20 | 21 | 40.593596 | -73.978465 |
21 | 22 | 40.618285 | -73.952288 |
22 | 23 | 40.668586 | -73.912298 |
23 | 24 | 40.740621 | -73.911518 |
24 | 25 | 40.745414 | -73.815558 |
25 | 26 | 40.748507 | -73.759176 |
26 | 27 | 40.638828 | -73.807823 |
27 | 28 | 40.709697 | -73.805547 |
28 | 29 | 40.685276 | -73.752740 |
29 | 30 | 40.755398 | -73.932306 |
30 | 31 | 40.595680 | -74.125726 |
31 | 32 | 40.696295 | -73.917124 |
32 | 75 | NaN | NaN |
33 | 79 | NaN | NaN |
def fill_coords(x, coord='lat'):
if (pd.isna(x[coord])) & (x['school_dist'] in ['75', '79']):
return (boro_coords[coord][boro_coords['borough'] == x['borough']]).values[0]
elif pd.isna(x[coord]):
return (dist_coords[coord][dist_coords['school_dist'] == x['school_dist']]).values[0]
else:
return x[coord]
full['lat'] = full.apply(fill_coords, coord='lat', axis=1)
full['lon'] = full.apply(fill_coords, coord='lon', axis=1)
full.isna().sum()
DBN 0 SCHOOL NAME 0 Num of SAT Test Takers 0 SAT Critical Reading Avg. Score 0 SAT Math Avg. Score 0 SAT Writing Avg. Score 0 sat_score 0 is_suppressed 0 AP Test Takers 0 Total Exams Taken 0 Number of Exams with scores 3 4 or 5 0 NUMBER OF STUDENTS / SEATS FILLED 44 NUMBER OF SECTIONS 44 AVERAGE CLASS SIZE 44 SIZE OF SMALLEST CLASS 44 SIZE OF LARGEST CLASS 44 schoolyear 28 frl_percent 28 total_enrollment 28 grade9 41 grade10 29 grade11 44 grade12 60 ell_num 28 ell_percent 28 sped_num 28 sped_percent 28 ctt_num 38 selfcontained_num 38 asian_num 28 asian_per 28 black_num 28 black_per 28 hispanic_num 28 hispanic_per 28 white_num 28 white_per 28 male_num 28 male_per 28 female_num 28 female_per 28 Total Cohort 89 Total Grads - % of cohort 110 Total Regents - % of cohort 110 Total Regents - % of grads 110 Advanced Regents - % of cohort 110 Advanced Regents - % of grads 110 Regents w/o Advanced - % of cohort 110 Regents w/o Advanced - % of grads 110 Local - % of cohort 110 Local - % of grads 110 Still Enrolled - % of cohort 110 Dropped Out - % of cohort 110 borough 0 grade_span_min 111 grade_span_max 109 city 109 postcode 109 total_students 109 school_type 0 language_classes 0 advancedplacement_courses 0 online_ap_courses 0 online_language_courses 0 start_time 109 end_time 109 number_programs 109 Location 1 109 Community Board 111 Council District 111 lat 0 lon 0 has_lang 0 has_ap 0 has_online_lang 0 has_online_ap 0 has_spanish 0 has_french 0 has_chinese 0 has_russian 0 rr_s 8 rr_t 8 rr_p 8 N_s 12 N_t 8 N_p 9 saf_p_11 9 com_p_11 9 eng_p_11 9 aca_p_11 9 saf_t_11 8 com_t_11 8 eng_t_11 8 aca_t_11 8 saf_s_11 12 com_s_11 12 eng_s_11 12 aca_s_11 12 saf_tot_11 8 com_tot_11 8 eng_tot_11 8 aca_tot_11 8 school_dist 0 District 0 YTD % Attendance (Avg) 0 YTD Enrollment(Avg) 0 is_consort 0 is_CTE 0 is_allgirls 0 is_intl 0 is_consort_intl 0 is_specialized 0 is_allboys 0 dtype: int64
Unfortunately, our data leaves few if any clues for imputing the remaining missing values. While not perfect, our best option is to fill in the values with each column's mean.
After doing so — if everything has gone correctly — all of our numeric columns should be filled.
full = full.fillna(full.mean())
print(full.isna().sum())
DBN 0 SCHOOL NAME 0 Num of SAT Test Takers 0 SAT Critical Reading Avg. Score 0 SAT Math Avg. Score 0 SAT Writing Avg. Score 0 sat_score 0 is_suppressed 0 AP Test Takers 0 Total Exams Taken 0 Number of Exams with scores 3 4 or 5 0 NUMBER OF STUDENTS / SEATS FILLED 0 NUMBER OF SECTIONS 0 AVERAGE CLASS SIZE 0 SIZE OF SMALLEST CLASS 0 SIZE OF LARGEST CLASS 0 schoolyear 0 frl_percent 0 total_enrollment 0 grade9 0 grade10 0 grade11 0 grade12 0 ell_num 0 ell_percent 0 sped_num 0 sped_percent 0 ctt_num 0 selfcontained_num 0 asian_num 0 asian_per 0 black_num 0 black_per 0 hispanic_num 0 hispanic_per 0 white_num 0 white_per 0 male_num 0 male_per 0 female_num 0 female_per 0 Total Cohort 0 Total Grads - % of cohort 0 Total Regents - % of cohort 0 Total Regents - % of grads 0 Advanced Regents - % of cohort 0 Advanced Regents - % of grads 0 Regents w/o Advanced - % of cohort 0 Regents w/o Advanced - % of grads 0 Local - % of cohort 0 Local - % of grads 0 Still Enrolled - % of cohort 0 Dropped Out - % of cohort 0 borough 0 grade_span_min 0 grade_span_max 0 city 109 postcode 0 total_students 0 school_type 0 language_classes 0 advancedplacement_courses 0 online_ap_courses 0 online_language_courses 0 start_time 0 end_time 0 number_programs 0 Location 1 109 Community Board 0 Council District 0 lat 0 lon 0 has_lang 0 has_ap 0 has_online_lang 0 has_online_ap 0 has_spanish 0 has_french 0 has_chinese 0 has_russian 0 rr_s 0 rr_t 0 rr_p 0 N_s 0 N_t 0 N_p 0 saf_p_11 0 com_p_11 0 eng_p_11 0 aca_p_11 0 saf_t_11 0 com_t_11 0 eng_t_11 0 aca_t_11 0 saf_s_11 0 com_s_11 0 eng_s_11 0 aca_s_11 0 saf_tot_11 0 com_tot_11 0 eng_tot_11 0 aca_tot_11 0 school_dist 0 District 0 YTD % Attendance (Avg) 0 YTD Enrollment(Avg) 0 is_consort 0 is_CTE 0 is_allgirls 0 is_intl 0 is_consort_intl 0 is_specialized 0 is_allboys 0 dtype: int64
With our data cleaning complete, we can take a look at our full
dataset and save it to .csv format for later use.
full.to_csv('sat_data_clean.csv', index=False)
full
DBN | SCHOOL NAME | Num of SAT Test Takers | SAT Critical Reading Avg. Score | SAT Math Avg. Score | SAT Writing Avg. Score | sat_score | is_suppressed | AP Test Takers | Total Exams Taken | Number of Exams with scores 3 4 or 5 | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | schoolyear | frl_percent | total_enrollment | grade9 | grade10 | grade11 | grade12 | ell_num | ell_percent | sped_num | sped_percent | ctt_num | selfcontained_num | asian_num | asian_per | black_num | black_per | hispanic_num | hispanic_per | white_num | white_per | male_num | male_per | female_num | female_per | Total Cohort | Total Grads - % of cohort | Total Regents - % of cohort | Total Regents - % of grads | Advanced Regents - % of cohort | Advanced Regents - % of grads | Regents w/o Advanced - % of cohort | Regents w/o Advanced - % of grads | Local - % of cohort | Local - % of grads | Still Enrolled - % of cohort | Dropped Out - % of cohort | borough | grade_span_min | grade_span_max | city | postcode | total_students | school_type | language_classes | advancedplacement_courses | online_ap_courses | online_language_courses | start_time | end_time | number_programs | Location 1 | Community Board | Council District | lat | lon | has_lang | has_ap | has_online_lang | has_online_ap | has_spanish | has_french | has_chinese | has_russian | rr_s | rr_t | rr_p | N_s | N_t | N_p | saf_p_11 | com_p_11 | eng_p_11 | aca_p_11 | saf_t_11 | com_t_11 | eng_t_11 | aca_t_11 | saf_s_11 | com_s_11 | eng_s_11 | aca_s_11 | saf_tot_11 | com_tot_11 | eng_tot_11 | aca_tot_11 | school_dist | District | YTD % Attendance (Avg) | YTD Enrollment(Avg) | is_consort | is_CTE | is_allgirls | is_intl | is_consort_intl | is_specialized | is_allboys | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 01M292 | HENRY STREET SCHOOL FOR INTERNATIONAL STUDIES | 29.0 | 355.0 | 404.0 | 363.0 | 1122.0 | 0 | 0.0 | 0.0 | 0.0 | 65.384615 | 2.923077 | 22.700000 | 20.115385 | 25.307692 | 20112012.0 | 88.600000 | 422.000000 | 98.00000 | 79.000000 | 80.000000 | 50.000000 | 94.000000 | 22.300000 | 105.000000 | 24.900000 | 34.000000 | 35.000000 | 59.000000 | 14.000000 | 123.000000 | 29.100000 | 227.000000 | 53.800000 | 7.000000 | 1.700000 | 259.000000 | 61.400000 | 163.000000 | 38.600000 | 56.000000 | 61.500000 | 41.675000 | 69.125000 | 0.000000 | 0.000000 | 41.675000 | 69.125000 | 19.850000 | 30.875000 | 20.275000 | 11.950000 | Manhattan | 6.000000 | 12.0 | New York | 10002.00000 | 323.00000 | Traditional | Chinese (Mandarin), Spanish | Psychology | Chinese Language and Culture, Spanish Literatu... | Chinese (Mandarin), Spanish | 830.000000 | 330.000000 | 1.000000 | 220 Henry Street\nNew York, NY 10002\n(40.7137... | 3.000000 | 1.000000 | 40.713764 | -73.985260 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 89.000000 | 70.000000 | 39.000000 | 379.000000 | 26.000000 | 151.000000 | 7.800000 | 7.700000 | 7.400000 | 7.600000 | 6.300000 | 5.300000 | 6.100000 | 6.500000 | 6.000000 | 5.600000 | 6.100000 | 6.700000 | 6.700000 | 6.200000 | 6.600000 | 7.000000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 01M448 | UNIVERSITY NEIGHBORHOOD HIGH SCHOOL | 91.0 | 383.0 | 423.0 | 366.0 | 1172.0 | 0 | 39.0 | 49.0 | 10.0 | 103.923077 | 4.423077 | 23.800000 | 20.115385 | 28.000000 | 20112012.0 | 71.800000 | 394.000000 | 109.00000 | 97.000000 | 93.000000 | 95.000000 | 83.000000 | 21.100000 | 86.000000 | 21.800000 | 55.000000 | 10.000000 | 115.000000 | 29.200000 | 89.000000 | 22.600000 | 181.000000 | 45.900000 | 9.000000 | 2.300000 | 226.000000 | 57.400000 | 168.000000 | 42.600000 | 97.714286 | 60.485714 | 37.157143 | 62.471429 | 8.657143 | 14.071429 | 28.528571 | 48.385714 | 23.314286 | 37.528571 | 26.957143 | 9.828571 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 299.00000 | Traditional | Chinese, Spanish | Calculus AB, Chinese Language and Culture, Eng... | No courses | Chinese (Cantonese), Chinese (Mandarin), Spanish | 815.000000 | 315.000000 | 3.000000 | 200 Monroe Street\nNew York, NY 10002\n(40.712... | 3.000000 | 1.000000 | 40.712332 | -73.984797 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 84.000000 | 95.000000 | 10.000000 | 385.000000 | 37.000000 | 46.000000 | 7.900000 | 7.400000 | 7.200000 | 7.300000 | 6.600000 | 5.800000 | 6.600000 | 7.300000 | 6.000000 | 5.700000 | 6.300000 | 7.000000 | 6.800000 | 6.300000 | 6.700000 | 7.200000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
2 | 01M450 | EAST SIDE COMMUNITY SCHOOL | 70.0 | 377.0 | 402.0 | 370.0 | 1149.0 | 0 | 19.0 | 21.0 | 0.0 | 53.535714 | 2.464286 | 21.928571 | 20.464286 | 23.250000 | 20112012.0 | 71.800000 | 598.000000 | 101.00000 | 93.000000 | 77.000000 | 86.000000 | 30.000000 | 5.000000 | 158.000000 | 26.400000 | 91.000000 | 19.000000 | 58.000000 | 9.700000 | 143.000000 | 23.900000 | 331.000000 | 55.400000 | 62.000000 | 10.400000 | 327.000000 | 54.700000 | 271.000000 | 45.300000 | 79.571429 | 70.385714 | 66.000000 | 93.828571 | 0.000000 | 0.000000 | 66.000000 | 93.828571 | 4.357143 | 6.171429 | 17.614286 | 10.742857 | Manhattan | 6.000000 | 12.0 | New York | 10009.00000 | 649.00000 | Consortium School | No Language Classes | Calculus AB, English Literature and Composition | No courses | American Sign Language, Arabic, Chinese (Manda... | 830.000000 | 330.000000 | 1.000000 | 420 East 12 Street\nNew York, NY 10009\n(40.72... | 3.000000 | 2.000000 | 40.729783 | -73.983041 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 98.000000 | 28.000000 | 516.257511 | 42.000000 | 150.000000 | 8.700000 | 8.200000 | 8.100000 | 8.400000 | 7.300000 | 8.000000 | 8.000000 | 8.800000 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.900000 | 7.900000 | 7.900000 | 8.400000 | 01 | DISTRICT 01 | 91.18 | 12367 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
3 | 01M458 | FORSYTH SATELLITE ACADEMY | 7.0 | 414.0 | 401.0 | 359.0 | 1174.0 | 0 | 0.0 | 0.0 | 0.0 | 28.600000 | 1.200000 | 23.000000 | 22.600000 | 23.400000 | 20112012.0 | 72.800000 | 224.000000 | 131.00000 | 49.000000 | 44.000000 | 147.334928 | 9.000000 | 4.000000 | 20.000000 | 8.900000 | 3.000000 | 0.000000 | 5.000000 | 2.200000 | 77.000000 | 34.400000 | 133.000000 | 59.400000 | 8.000000 | 3.600000 | 97.000000 | 43.300000 | 127.000000 | 56.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.719022 | -73.982377 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 40.000000 | 100.000000 | 23.000000 | 66.000000 | 10.000000 | 37.000000 | 8.100000 | 7.000000 | 6.700000 | 7.600000 | 8.500000 | 8.200000 | 8.900000 | 8.900000 | 6.800000 | 6.100000 | 6.100000 | 6.800000 | 7.800000 | 7.100000 | 7.200000 | 7.800000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
4 | 01M509 | MARTA VALLE HIGH SCHOOL | 44.0 | 390.0 | 433.0 | 384.0 | 1207.0 | 0 | 0.0 | 0.0 | 0.0 | 49.851852 | 2.296296 | 19.370370 | 17.370370 | 21.481481 | 20112012.0 | 80.700000 | 367.000000 | 143.00000 | 100.000000 | 51.000000 | 73.000000 | 41.000000 | 11.200000 | 95.000000 | 25.900000 | 28.000000 | 36.000000 | 34.000000 | 9.300000 | 116.000000 | 31.600000 | 209.000000 | 56.900000 | 6.000000 | 1.600000 | 170.000000 | 46.300000 | 197.000000 | 53.700000 | 73.571429 | 49.914286 | 31.385714 | 61.157143 | 10.571429 | 19.628571 | 20.814286 | 41.514286 | 18.514286 | 38.842857 | 29.857143 | 14.342857 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 401.00000 | Traditional | French, Spanish | English Literature and Composition, Studio Art... | No courses | Spanish | 800.000000 | 330.000000 | 1.000000 | 145 Stanton Street\nNew York, NY 10002\n(40.72... | 3.000000 | 1.000000 | 40.720569 | -73.985673 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 21.000000 | 306.000000 | 29.000000 | 69.000000 | 7.700000 | 7.400000 | 7.200000 | 7.300000 | 6.400000 | 5.300000 | 6.100000 | 6.800000 | 6.400000 | 5.900000 | 6.400000 | 7.000000 | 6.900000 | 6.200000 | 6.600000 | 7.000000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
5 | 01M515 | LOWER EAST SIDE PREPARATORY HIGH SCHOOL | 112.0 | 332.0 | 557.0 | 316.0 | 1205.0 | 0 | 24.0 | 26.0 | 24.0 | 131.117647 | 5.529412 | 22.876471 | 15.764706 | 28.588235 | 20112012.0 | 77.000000 | 562.000000 | 199.09611 | 261.000000 | 209.000000 | 92.000000 | 453.000000 | 80.600000 | 7.000000 | 1.200000 | 0.000000 | 2.000000 | 476.000000 | 84.700000 | 29.000000 | 5.200000 | 50.000000 | 8.900000 | 5.000000 | 0.900000 | 302.000000 | 53.700000 | 260.000000 | 46.300000 | 183.285714 | 48.942857 | 36.414286 | 74.571429 | 22.028571 | 44.771429 | 14.371429 | 29.785714 | 12.628571 | 25.585714 | 34.385714 | 16.442857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.719022 | -73.982377 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 100.000000 | 86.000000 | 454.000000 | 36.000000 | 389.000000 | 8.300000 | 7.200000 | 7.400000 | 7.500000 | 9.100000 | 7.300000 | 8.700000 | 9.100000 | 8.000000 | 6.300000 | 7.000000 | 7.300000 | 8.500000 | 7.000000 | 7.700000 | 8.000000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
6 | 01M539 | NEW EXPLORATIONS INTO SCIENCE, TECHNOLOGY AND ... | 159.0 | 522.0 | 574.0 | 525.0 | 1621.0 | 0 | 255.0 | 377.0 | 191.0 | 156.368421 | 6.157895 | 25.510526 | 19.473684 | 31.210526 | 20112012.0 | 23.000000 | 1613.000000 | 117.00000 | 123.000000 | 147.000000 | 157.000000 | 4.000000 | 0.200000 | 43.000000 | 2.700000 | 2.000000 | 0.000000 | 448.000000 | 27.800000 | 189.000000 | 11.700000 | 229.000000 | 14.200000 | 725.000000 | 44.900000 | 794.000000 | 49.200000 | 819.000000 | 50.800000 | 40.428571 | 98.520000 | 98.180000 | 99.660000 | 77.380000 | 78.660000 | 20.820000 | 21.000000 | 0.340000 | 0.340000 | 0.820000 | 0.660000 | Manhattan | 8.457766 | 12.0 | New York | 10002.00000 | 1725.00000 | Traditional | Chinese (Mandarin), French, Italian, Latin, Sp... | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 815.000000 | 400.000000 | 1.000000 | 111 Columbia Street\nNew York, NY 10002\n(40.7... | 3.000000 | 2.000000 | 40.718725 | -73.979426 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 98.000000 | 68.000000 | 51.000000 | 923.000000 | 67.000000 | 736.000000 | 8.500000 | 7.900000 | 7.900000 | 8.400000 | 7.600000 | 5.600000 | 5.900000 | 7.300000 | 7.300000 | 6.400000 | 7.000000 | 7.700000 | 7.800000 | 6.700000 | 6.900000 | 7.800000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
7 | 01M650 | CASCADES HIGH SCHOOL | 18.0 | 417.0 | 418.0 | 411.0 | 1246.0 | 0 | 0.0 | 0.0 | 0.0 | 64.125000 | 2.937500 | 21.781250 | 18.687500 | 24.750000 | 20112012.0 | 69.800000 | 218.000000 | 5.00000 | 89.000000 | 59.000000 | 65.000000 | 7.000000 | 3.200000 | 15.000000 | 6.900000 | 1.000000 | 0.000000 | 1.000000 | 0.500000 | 99.000000 | 45.400000 | 108.000000 | 49.500000 | 9.000000 | 4.100000 | 87.000000 | 39.900000 | 131.000000 | 60.100000 | 87.285714 | 38.414286 | 18.557143 | 42.585714 | 0.000000 | 0.000000 | 18.557143 | 42.585714 | 19.828571 | 57.414286 | 52.614286 | 8.142857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.719022 | -73.982377 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 86.000000 | 19.000000 | 125.000000 | 12.000000 | 30.000000 | 9.000000 | 8.400000 | 8.100000 | 8.600000 | 7.600000 | 7.500000 | 8.300000 | 8.700000 | 8.100000 | 6.900000 | 7.900000 | 8.400000 | 8.300000 | 7.600000 | 8.100000 | 8.600000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
8 | 01M696 | BARD HIGH SCHOOL EARLY COLLEGE | 130.0 | 624.0 | 604.0 | 628.0 | 1856.0 | 0 | 0.0 | 0.0 | 0.0 | 214.166667 | 10.250000 | 20.975000 | 17.166667 | 24.250000 | 20112012.0 | 18.000000 | 617.000000 | 184.00000 | 162.000000 | 128.000000 | 143.000000 | 1.000000 | 0.200000 | 5.000000 | 0.800000 | 0.000000 | 0.000000 | 93.000000 | 15.100000 | 93.000000 | 15.100000 | 112.000000 | 18.200000 | 307.000000 | 49.800000 | 193.000000 | 31.300000 | 424.000000 | 68.700000 | 123.571429 | 95.100000 | 94.728571 | 99.600000 | 0.000000 | 0.000000 | 94.728571 | 99.600000 | 0.371429 | 0.400000 | 4.071429 | 0.814286 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 560.00000 | Traditional | Chinese (Mandarin), Latin, Spanish | No courses | No courses | No courses | 900.000000 | 350.000000 | 1.000000 | 525 East Houston Street\nNew York, NY 10002\n(... | 3.000000 | 2.000000 | 40.718962 | -73.976066 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 98.000000 | 81.000000 | 50.000000 | 561.000000 | 30.000000 | 283.000000 | 8.800000 | 8.200000 | 8.300000 | 9.100000 | 8.200000 | 7.400000 | 7.500000 | 8.300000 | 8.300000 | 7.300000 | 8.000000 | 8.900000 | 8.500000 | 7.600000 | 8.000000 | 8.700000 | 01 | DISTRICT 01 | 91.18 | 12367 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
9 | 02M047 | 47 THE AMERICAN SIGN LANGUAGE AND ENGLISH SECO... | 16.0 | 395.0 | 400.0 | 387.0 | 1182.0 | 0 | 0.0 | 0.0 | 0.0 | 28.150000 | 1.650000 | 16.365000 | 15.550000 | 17.250000 | 20112012.0 | 66.900000 | 174.000000 | 50.00000 | 63.000000 | 38.000000 | 23.000000 | 14.000000 | 8.000000 | 56.000000 | 32.200000 | 34.000000 | 10.000000 | 3.000000 | 1.700000 | 56.000000 | 32.200000 | 103.000000 | 59.200000 | 11.000000 | 6.300000 | 74.000000 | 42.500000 | 100.000000 | 57.500000 | 19.142857 | 63.166667 | 26.900000 | 42.866667 | 0.000000 | 0.000000 | 26.900000 | 42.866667 | 36.266667 | 57.133333 | 23.166667 | 6.833333 | Manhattan | 9.000000 | 12.0 | New York | 10010.00000 | 184.00000 | Traditional | American Sign Language | No courses | No courses | No courses | 845.000000 | 345.000000 | 1.000000 | 223 East 23 Street\nNew York, NY 10010\n(40.73... | 6.000000 | 2.000000 | 40.738599 | -73.982512 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 72.000000 | 76.000000 | 30.000000 | 109.000000 | 16.000000 | 43.000000 | 8.900000 | 7.700000 | 7.900000 | 8.100000 | 8.100000 | 6.100000 | 7.700000 | 7.200000 | 7.300000 | 6.300000 | 7.000000 | 7.500000 | 8.100000 | 6.700000 | 7.500000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
10 | 02M288 | FOOD AND FINANCE HIGH SCHOOL | 62.0 | 409.0 | 393.0 | 392.0 | 1194.0 | 0 | 0.0 | 0.0 | 0.0 | 73.416667 | 3.166667 | 22.645833 | 20.416667 | 25.000000 | 20112012.0 | 68.400000 | 433.000000 | 135.00000 | 122.000000 | 88.000000 | 88.000000 | 9.000000 | 2.100000 | 80.000000 | 18.500000 | 69.000000 | 4.000000 | 13.000000 | 3.000000 | 191.000000 | 44.100000 | 206.000000 | 47.600000 | 21.000000 | 4.800000 | 195.000000 | 45.000000 | 238.000000 | 55.000000 | 52.857143 | 80.100000 | 68.825000 | 86.275000 | 0.000000 | 0.000000 | 68.825000 | 86.275000 | 11.275000 | 13.725000 | 11.025000 | 7.075000 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 443.00000 | CTE School | Spanish | English Language and Composition, Environmenta... | No courses | No courses | 740.000000 | 230.000000 | 1.000000 | 525 West 50Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.765027 | -73.992517 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 100.000000 | 57.000000 | 348.000000 | 35.000000 | 229.000000 | 7.600000 | 7.000000 | 6.900000 | 7.600000 | 7.300000 | 7.100000 | 7.800000 | 7.700000 | 6.200000 | 5.700000 | 6.100000 | 7.200000 | 7.000000 | 6.600000 | 6.900000 | 7.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
11 | 02M294 | ESSEX STREET ACADEMY | 53.0 | 394.0 | 384.0 | 378.0 | 1156.0 | 0 | 0.0 | 0.0 | 0.0 | 52.000000 | 3.428571 | 14.980952 | 13.000000 | 17.095238 | 20112012.0 | 60.800000 | 343.000000 | 93.00000 | 97.000000 | 69.000000 | 84.000000 | 13.000000 | 3.800000 | 70.000000 | 20.400000 | 41.000000 | 2.000000 | 14.000000 | 4.100000 | 95.000000 | 27.700000 | 208.000000 | 60.600000 | 26.000000 | 7.600000 | 183.000000 | 53.400000 | 160.000000 | 46.600000 | 59.333333 | 77.175000 | 64.025000 | 83.650000 | 0.000000 | 0.000000 | 64.025000 | 83.650000 | 13.150000 | 16.350000 | 15.550000 | 6.350000 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 349.00000 | Consortium School | French, Spanish | Spanish Language and Culture | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.000000 | 1.000000 | 40.716867 | -73.989532 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 48.000000 | 56.000000 | 9.000000 | 150.000000 | 15.000000 | 28.000000 | 8.700000 | 8.100000 | 7.900000 | 8.300000 | 8.000000 | 7.700000 | 7.900000 | 8.900000 | 7.400000 | 6.500000 | 7.300000 | 7.600000 | 7.900000 | 7.300000 | 7.700000 | 8.200000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
12 | 02M296 | HIGH SCHOOL OF HOSPITALITY MANAGEMENT | 58.0 | 374.0 | 375.0 | 362.0 | 1111.0 | 0 | 0.0 | 0.0 | 0.0 | 78.296296 | 3.481481 | 23.222222 | 18.370370 | 27.222222 | 20112012.0 | 72.400000 | 419.000000 | 154.00000 | 101.000000 | 79.000000 | 85.000000 | 40.000000 | 9.500000 | 62.000000 | 14.800000 | 30.000000 | 17.000000 | 22.000000 | 5.300000 | 111.000000 | 26.500000 | 277.000000 | 66.100000 | 9.000000 | 2.100000 | 135.000000 | 32.200000 | 284.000000 | 67.800000 | 65.200000 | 77.850000 | 63.325000 | 81.025000 | 2.300000 | 2.875000 | 61.000000 | 78.150000 | 14.550000 | 18.975000 | 14.325000 | 6.600000 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 431.00000 | Traditional | Italian | English Literature and Composition, United Sta... | No courses | No courses | 900.000000 | 345.000000 | 1.000000 | 525 West 50Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.765027 | -73.992517 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 96.000000 | 56.000000 | 233.000000 | 27.000000 | 204.000000 | 8.000000 | 7.300000 | 7.100000 | 7.500000 | 8.600000 | 8.100000 | 8.700000 | 8.900000 | 7.100000 | 6.500000 | 7.000000 | 7.400000 | 7.900000 | 7.300000 | 7.600000 | 8.000000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
13 | 02M298 | PACE HIGH SCHOOL | 85.0 | 423.0 | 438.0 | 432.0 | 1293.0 | 0 | 21.0 | 21.0 | 0.0 | 61.965517 | 2.827586 | 22.893103 | 20.793103 | 25.344828 | 20112012.0 | 56.700000 | 414.000000 | 118.00000 | 104.000000 | 99.000000 | 93.000000 | 9.000000 | 2.200000 | 57.000000 | 13.800000 | 45.000000 | 3.000000 | 42.000000 | 10.100000 | 134.000000 | 32.400000 | 174.000000 | 42.000000 | 16.000000 | 3.900000 | 181.000000 | 43.700000 | 233.000000 | 56.300000 | 66.666667 | 84.900000 | 82.525000 | 97.200000 | 33.450000 | 39.275000 | 49.100000 | 57.925000 | 2.375000 | 2.800000 | 8.050000 | 4.175000 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 421.00000 | Traditional | Spanish | Calculus AB, Environmental Science, United Sta... | Biology, Chemistry, Chinese Language and Cultu... | No courses | 900.000000 | 315.000000 | 1.000000 | 100 Hester Street\nNew York, NY 10002\n(40.716... | 3.000000 | 1.000000 | 40.716412 | -73.992676 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 46.000000 | 392.000000 | 29.000000 | 184.000000 | 7.500000 | 7.100000 | 6.900000 | 7.500000 | 6.600000 | 6.300000 | 6.800000 | 7.100000 | 6.600000 | 6.200000 | 6.700000 | 7.500000 | 6.900000 | 6.600000 | 6.800000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
14 | 02M300 | URBAN ASSEMBLY SCHOOL OF DESIGN AND CONSTRUCTI... | 48.0 | 404.0 | 449.0 | 416.0 | 1269.0 | 0 | 99.0 | 117.0 | 10.0 | 68.909091 | 2.909091 | 24.140909 | 20.363636 | 27.590909 | 20112012.0 | 75.300000 | 431.000000 | 140.00000 | 106.000000 | 109.000000 | 76.000000 | 47.000000 | 10.900000 | 86.000000 | 20.000000 | 63.000000 | 12.000000 | 26.000000 | 6.000000 | 126.000000 | 29.200000 | 255.000000 | 59.200000 | 21.000000 | 4.900000 | 323.000000 | 74.900000 | 108.000000 | 25.100000 | 55.000000 | 69.000000 | 63.100000 | 91.400000 | 1.875000 | 2.575000 | 61.200000 | 88.825000 | 5.900000 | 8.600000 | 22.950000 | 6.850000 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 427.00000 | Traditional | German, Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 315.000000 | 1.000000 | 525 West 50Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.765027 | -73.992517 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 85.000000 | 34.000000 | 349.000000 | 23.000000 | 124.000000 | 8.600000 | 7.900000 | 7.700000 | 8.100000 | 7.300000 | 6.000000 | 6.900000 | 7.500000 | 6.500000 | 5.700000 | 6.100000 | 7.200000 | 7.500000 | 6.500000 | 6.900000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
15 | 02M303 | FACING HISTORY SCHOOL, THE | 76.0 | 353.0 | 358.0 | 340.0 | 1051.0 | 0 | 42.0 | 44.0 | 0.0 | 68.640000 | 3.080000 | 23.012000 | 19.120000 | 26.920000 | 20112012.0 | 75.600000 | 451.000000 | 185.00000 | 115.000000 | 93.000000 | 58.000000 | 94.000000 | 20.800000 | 98.000000 | 21.700000 | 78.000000 | 9.000000 | 3.000000 | 0.700000 | 106.000000 | 23.500000 | 330.000000 | 73.200000 | 11.000000 | 2.400000 | 228.000000 | 50.600000 | 223.000000 | 49.400000 | 62.000000 | 50.633333 | 50.633333 | 100.000000 | 0.000000 | 0.000000 | 50.633333 | 100.000000 | 0.000000 | 0.000000 | 27.066667 | 19.466667 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 417.00000 | Consortium School | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 835.000000 | 300.000000 | 1.000000 | 525 West 50Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.765027 | -73.992517 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 100.000000 | 53.000000 | 319.000000 | 36.000000 | 200.000000 | 8.200000 | 7.800000 | 7.600000 | 8.000000 | 7.400000 | 7.400000 | 7.700000 | 7.900000 | 7.000000 | 6.600000 | 6.800000 | 7.400000 | 7.500000 | 7.300000 | 7.300000 | 7.800000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
16 | 02M305 | URBAN ASSEMBLY ACADEMY OF GOVERNMENT AND LAW, THE | 50.0 | 375.0 | 388.0 | 385.0 | 1148.0 | 0 | 25.0 | 37.0 | 15.0 | 60.200000 | 2.833333 | 21.786667 | 19.100000 | 24.433333 | 20112012.0 | 68.300000 | 312.000000 | 118.00000 | 67.000000 | 74.000000 | 53.000000 | 19.000000 | 6.100000 | 53.000000 | 17.000000 | 40.000000 | 5.000000 | 12.000000 | 3.800000 | 130.000000 | 41.700000 | 158.000000 | 50.600000 | 11.000000 | 3.500000 | 137.000000 | 43.900000 | 175.000000 | 56.100000 | 48.250000 | 74.066667 | 63.266667 | 85.333333 | 0.966667 | 1.333333 | 62.300000 | 84.000000 | 10.833333 | 14.666667 | 7.066667 | 15.233333 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 326.00000 | Traditional | Spanish | English Literature and Composition, Microecono... | No courses | No courses | 832.000000 | 345.000000 | 1.000000 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.000000 | 1.000000 | 40.716867 | -73.989532 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 79.000000 | 4.000000 | 223.000000 | 15.000000 | 12.000000 | 7.500000 | 7.400000 | 7.300000 | 7.700000 | 5.400000 | 4.300000 | 5.800000 | 6.000000 | 6.000000 | 6.000000 | 6.000000 | 7.200000 | 6.100000 | 5.600000 | 6.200000 | 6.800000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
17 | 02M308 | LOWER MANHATTAN ARTS ACADEMY | 40.0 | 403.0 | 392.0 | 405.0 | 1200.0 | 0 | 0.0 | 0.0 | 0.0 | 65.115385 | 3.153846 | 22.223077 | 20.000000 | 24.692308 | 20112012.0 | 62.200000 | 336.000000 | 124.00000 | 90.000000 | 75.000000 | 47.000000 | 13.000000 | 3.900000 | 83.000000 | 24.700000 | 47.000000 | 3.000000 | 32.000000 | 9.500000 | 103.000000 | 30.700000 | 187.000000 | 55.700000 | 12.000000 | 3.600000 | 134.000000 | 39.900000 | 202.000000 | 60.100000 | 51.500000 | 71.933333 | 47.300000 | 66.033333 | 2.000000 | 2.700000 | 45.300000 | 63.333333 | 24.666667 | 33.966667 | 17.200000 | 9.333333 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 362.00000 | Traditional | Spanish | Calculus AB, Physics B | English Language and Composition, Spanish Lang... | No courses | 830.000000 | 300.000000 | 1.000000 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.000000 | 1.000000 | 40.716867 | -73.989532 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 54.000000 | 15.000000 | 240.000000 | 13.000000 | 45.000000 | 7.800000 | 7.400000 | 7.300000 | 7.400000 | 7.400000 | 7.500000 | 7.700000 | 8.000000 | 6.600000 | 5.800000 | 6.700000 | 7.300000 | 7.300000 | 6.900000 | 7.200000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
18 | 02M313 | JAMES BALDWIN SCHOOL, THE: A SCHOOL FOR EXPEDI... | 69.0 | 408.0 | 390.0 | 390.0 | 1188.0 | 0 | 0.0 | 0.0 | 0.0 | 42.200000 | 1.850000 | 22.845000 | 21.350000 | 24.350000 | 20112012.0 | 51.000000 | 248.000000 | 15.00000 | 74.000000 | 60.000000 | 99.000000 | 12.000000 | 4.800000 | 32.000000 | 12.900000 | 17.000000 | 1.000000 | 10.000000 | 4.000000 | 85.000000 | 34.300000 | 135.000000 | 54.400000 | 16.000000 | 6.500000 | 130.000000 | 52.400000 | 118.000000 | 47.600000 | 51.500000 | 47.380000 | 25.660000 | 54.520000 | 0.000000 | 0.000000 | 25.660000 | 54.520000 | 21.680000 | 45.480000 | 37.620000 | 11.300000 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 100.000000 | 27.000000 | 146.000000 | 18.000000 | 55.000000 | 8.500000 | 8.000000 | 7.800000 | 7.900000 | 7.500000 | 7.500000 | 7.900000 | 8.300000 | 7.600000 | 7.400000 | 7.400000 | 8.200000 | 7.900000 | 7.600000 | 7.700000 | 8.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
19 | 02M316 | URBAN ASSEMBLY SCHOOL OF BUSINESS FOR YOUNG WO... | 42.0 | 373.0 | 370.0 | 384.0 | 1127.0 | 0 | 0.0 | 0.0 | 0.0 | 74.590909 | 2.818182 | 27.727273 | 25.909091 | 28.681818 | 20112012.0 | 74.900000 | 378.000000 | 129.00000 | 118.000000 | 77.000000 | 54.000000 | 10.000000 | 2.600000 | 59.000000 | 15.600000 | 41.000000 | 2.000000 | 13.000000 | 3.400000 | 177.000000 | 46.800000 | 183.000000 | 48.400000 | 5.000000 | 1.300000 | 0.000000 | 0.000000 | 378.000000 | 100.000000 | 44.600000 | 72.600000 | 55.533333 | 75.866667 | 10.000000 | 13.700000 | 45.533333 | 62.166667 | 17.100000 | 24.133333 | 18.400000 | 6.766667 | Manhattan | 9.000000 | 12.0 | New York | 10004.00000 | 412.00000 | All-Girls School | Spanish | Chemistry, Spanish Language and Culture, Unite... | Chemistry | No courses | 835.000000 | 330.000000 | 1.000000 | 26 Broadway\nNew York, NY 10004\n(40.705234939... | 1.000000 | 1.000000 | 40.705235 | -74.013315 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 95.000000 | 61.000000 | 294.000000 | 21.000000 | 206.000000 | 8.400000 | 7.600000 | 7.500000 | 7.900000 | 7.000000 | 6.200000 | 6.500000 | 7.400000 | 6.800000 | 6.400000 | 6.700000 | 7.600000 | 7.400000 | 6.700000 | 6.900000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
20 | 02M374 | GRAMERCY ARTS HIGH SCHOOL | 60.0 | 391.0 | 391.0 | 394.0 | 1176.0 | 0 | 0.0 | 0.0 | 0.0 | 70.360000 | 2.480000 | 28.828000 | 26.080000 | 31.000000 | 20112012.0 | 59.000000 | 495.000000 | 153.00000 | 151.000000 | 117.000000 | 74.000000 | 15.000000 | 3.000000 | 61.000000 | 12.300000 | 54.000000 | 0.000000 | 14.000000 | 2.800000 | 224.000000 | 45.300000 | 223.000000 | 45.100000 | 33.000000 | 6.700000 | 130.000000 | 26.300000 | 365.000000 | 73.700000 | 84.666667 | 75.033333 | 43.266667 | 57.400000 | 0.733333 | 0.966667 | 42.566667 | 56.466667 | 31.766667 | 42.600000 | 14.933333 | 6.633333 | Manhattan | 9.000000 | 12.0 | New York | 10003.00000 | 548.00000 | Traditional | Italian | No courses | No courses | No courses | 815.000000 | 330.000000 | 3.000000 | 40 Irving Place\nNew York, NY 10003\n(40.73551... | 6.000000 | 2.000000 | 40.735519 | -73.987604 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 97.000000 | 59.000000 | 428.000000 | 33.000000 | 264.000000 | 8.200000 | 7.600000 | 7.700000 | 8.100000 | 6.400000 | 5.500000 | 6.700000 | 6.700000 | 6.100000 | 6.000000 | 6.300000 | 7.200000 | 6.900000 | 6.400000 | 6.900000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
21 | 02M376 | NYC ISCHOOL | 92.0 | 473.0 | 483.0 | 479.0 | 1435.0 | 0 | 0.0 | 0.0 | 0.0 | 107.133333 | 3.400000 | 35.786667 | 24.266667 | 49.200000 | 20112012.0 | 34.600000 | 433.000000 | 118.00000 | 114.000000 | 104.000000 | 97.000000 | 2.000000 | 0.500000 | 47.000000 | 10.900000 | 18.000000 | 1.000000 | 50.000000 | 11.500000 | 89.000000 | 20.600000 | 186.000000 | 43.000000 | 104.000000 | 24.000000 | 211.000000 | 48.700000 | 222.000000 | 51.300000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10013.00000 | 433.00000 | Traditional | French, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 900.000000 | 400.000000 | 1.000000 | 131 Avenue\nOf The Americas New York, NY 10013... | 2.000000 | 3.000000 | 40.724353 | -74.004759 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 89.000000 | 95.000000 | 37.000000 | 278.000000 | 18.000000 | 114.000000 | 8.600000 | 8.300000 | 7.800000 | 8.000000 | 7.700000 | 6.500000 | 6.800000 | 7.400000 | 7.800000 | 7.000000 | 7.600000 | 8.100000 | 8.000000 | 7.300000 | 7.400000 | 7.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
22 | 02M392 | MANHATTAN BUSINESS ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 59.142857 | 2.285714 | 25.878571 | 24.642857 | 27.071429 | 20112012.0 | 64.000000 | 332.000000 | 148.00000 | 91.000000 | 93.000000 | 147.334928 | 33.000000 | 9.900000 | 46.000000 | 13.900000 | 38.000000 | 2.000000 | 22.000000 | 6.600000 | 98.000000 | 29.500000 | 195.000000 | 58.700000 | 16.000000 | 4.800000 | 196.000000 | 59.000000 | 136.000000 | 41.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 426.00000 | Traditional | Spanish | Statistics | No courses | French, Spanish | 830.000000 | 315.000000 | 1.000000 | 351 West 18 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742888 | -74.002127 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 94.000000 | 40.000000 | 172.000000 | 17.000000 | 81.000000 | 8.300000 | 8.000000 | 7.600000 | 8.200000 | 7.400000 | 7.500000 | 7.500000 | 8.200000 | 6.900000 | 6.400000 | 6.800000 | 7.500000 | 7.500000 | 7.300000 | 7.300000 | 8.000000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
23 | 02M393 | BUSINESS OF SPORTS SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 75.866667 | 3.400000 | 22.706667 | 19.266667 | 25.400000 | 20112012.0 | 58.700000 | 304.000000 | 150.00000 | 114.000000 | 40.000000 | 147.334928 | 23.000000 | 7.600000 | 65.000000 | 21.400000 | 37.000000 | 4.000000 | 5.000000 | 1.600000 | 108.000000 | 35.500000 | 174.000000 | 57.200000 | 13.000000 | 4.300000 | 220.000000 | 72.400000 | 84.000000 | 27.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 420.00000 | CTE School | Spanish | English Language and Composition, Environmenta... | No courses | French, Spanish | 850.000000 | 330.000000 | 1.000000 | 439 West 49Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.763362 | -73.990509 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 39.000000 | 194.000000 | 18.000000 | 80.000000 | 8.100000 | 7.600000 | 7.500000 | 7.900000 | 6.200000 | 5.800000 | 6.600000 | 7.000000 | 6.200000 | 6.100000 | 6.300000 | 7.000000 | 6.800000 | 6.500000 | 6.800000 | 7.300000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
24 | 02M394 | EMMA LAZARUS HIGH SCHOOL | 79.0 | 319.0 | 512.0 | 357.0 | 1188.0 | 0 | 0.0 | 0.0 | 0.0 | 108.000000 | 4.500000 | 24.700000 | 16.500000 | 31.700000 | 20112012.0 | 97.000000 | 250.000000 | 13.00000 | 156.000000 | 80.000000 | 1.000000 | 207.000000 | 82.800000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 156.000000 | 62.400000 | 18.000000 | 7.200000 | 66.000000 | 26.400000 | 10.000000 | 4.000000 | 128.000000 | 51.200000 | 122.000000 | 48.800000 | 10.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 93.000000 | 67.000000 | 228.000000 | 13.000000 | 149.000000 | 8.900000 | 7.800000 | 7.600000 | 8.000000 | 8.200000 | 6.000000 | 7.200000 | 7.800000 | 8.200000 | 7.100000 | 7.300000 | 8.000000 | 8.400000 | 7.000000 | 7.400000 | 7.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
25 | 02M399 | THE HIGH SCHOOL FOR LANGUAGE AND DIPLOMACY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 62.157895 | 3.473684 | 18.626316 | 16.263158 | 22.368421 | 20112012.0 | 80.800000 | 244.000000 | 109.00000 | 57.000000 | 78.000000 | 147.334928 | 69.000000 | 28.300000 | 41.000000 | 16.800000 | 14.000000 | 15.000000 | 108.000000 | 44.300000 | 38.000000 | 15.600000 | 80.000000 | 32.800000 | 13.000000 | 5.300000 | 117.000000 | 48.000000 | 127.000000 | 52.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10003.00000 | 358.00000 | Traditional | American Sign Language, Arabic, Chinese (Manda... | Biology, Calculus BC, Chinese Language and Cul... | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 40 Irving Place\nNew York, NY 10003\n(40.73551... | 6.000000 | 2.000000 | 40.735519 | -73.987604 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 84.000000 | 50.000000 | 36.000000 | 123.000000 | 7.000000 | 52.000000 | 8.100000 | 7.300000 | 7.100000 | 7.300000 | 6.300000 | 3.200000 | 4.100000 | 5.000000 | 6.600000 | 5.700000 | 6.300000 | 6.900000 | 7.000000 | 5.400000 | 5.800000 | 6.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
26 | 02M400 | HIGH SCHOOL FOR ENVIRONMENTAL STUDIES | 263.0 | 465.0 | 493.0 | 461.0 | 1419.0 | 0 | 213.0 | 298.0 | 152.0 | 223.103448 | 7.620690 | 24.851724 | 18.827586 | 28.137931 | 20112012.0 | 56.400000 | 1394.000000 | 398.00000 | 383.000000 | 314.000000 | 299.000000 | 99.000000 | 7.100000 | 201.000000 | 14.400000 | 70.000000 | 47.000000 | 233.000000 | 16.700000 | 206.000000 | 14.800000 | 797.000000 | 57.200000 | 155.000000 | 11.100000 | 703.000000 | 50.400000 | 691.000000 | 49.600000 | 341.285714 | 75.442857 | 60.400000 | 80.028571 | 22.971429 | 30.371429 | 37.442857 | 49.628571 | 15.014286 | 19.971429 | 15.542857 | 6.600000 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 1312.00000 | Traditional | French, Italian, Spanish | Biology, Calculus AB, Calculus BC, English Lan... | Human Geography, Microeconomics | No courses | 815.000000 | 300.000000 | 2.000000 | 444 West 56 Street\nNew York, NY 10019\n(40.76... | 4.000000 | 3.000000 | 40.767762 | -73.987511 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 81.000000 | 97.000000 | 24.000000 | 1114.000000 | 69.000000 | 323.000000 | 8.300000 | 7.600000 | 7.600000 | 7.700000 | 7.300000 | 6.400000 | 7.100000 | 7.400000 | 7.100000 | 6.200000 | 7.000000 | 7.800000 | 7.600000 | 6.700000 | 7.200000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
27 | 02M407 | INSTITUTE FOR COLLABORATIVE EDUCATION | 54.0 | 492.0 | 465.0 | 467.0 | 1424.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 17.900000 | 489.000000 | 63.00000 | 71.000000 | 73.000000 | 64.000000 | 2.000000 | 0.400000 | 43.000000 | 8.800000 | 3.000000 | 2.000000 | 31.000000 | 6.300000 | 50.000000 | 10.200000 | 86.000000 | 17.600000 | 267.000000 | 54.600000 | 270.000000 | 55.200000 | 219.000000 | 44.800000 | 54.428571 | 77.128571 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 77.128571 | 100.000000 | 19.400000 | 3.242857 | Manhattan | 6.000000 | 12.0 | New York | 10003.00000 | 468.00000 | Consortium School | Spanish | No courses | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 345 East 15Th Street\nNew York, NY 10003\n(40.... | 6.000000 | 2.000000 | 40.732485 | -73.983053 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 93.000000 | 45.000000 | 464.000000 | 25.000000 | 203.000000 | 8.300000 | 8.200000 | 8.200000 | 8.500000 | 8.100000 | 8.100000 | 8.800000 | 9.000000 | 7.500000 | 7.800000 | 7.900000 | 8.300000 | 8.000000 | 8.000000 | 8.300000 | 8.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
28 | 02M408 | PROFESSIONAL PERFORMING ARTS HIGH SCHOOL | 94.0 | 509.0 | 490.0 | 523.0 | 1522.0 | 0 | 20.0 | 20.0 | 15.0 | 104.882353 | 3.529412 | 28.952941 | 25.117647 | 31.588235 | 20112012.0 | 23.500000 | 502.000000 | 94.00000 | 103.000000 | 112.000000 | 106.000000 | 10.000000 | 2.000000 | 16.000000 | 3.200000 | 1.000000 | 0.000000 | 35.000000 | 7.000000 | 96.000000 | 19.100000 | 119.000000 | 23.700000 | 210.000000 | 41.800000 | 127.000000 | 25.300000 | 375.000000 | 74.700000 | 85.857143 | 78.928571 | 64.342857 | 70.000000 | 14.557143 | 16.028571 | 49.785714 | 53.971429 | 14.614286 | 30.000000 | 19.557143 | 1.500000 | Manhattan | 6.000000 | 12.0 | New York | 10036.00000 | 512.00000 | Traditional | Spanish | Biology, English Literature and Composition | No courses | No courses | 815.000000 | 330.000000 | 4.000000 | 328 West 48 Street\nNew York, NY 10036\n(40.76... | 4.000000 | 3.000000 | 40.761433 | -73.988024 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 100.000000 | 31.000000 | 408.000000 | 23.000000 | 141.000000 | 8.100000 | 7.000000 | 7.100000 | 7.100000 | 7.800000 | 7.600000 | 8.400000 | 7.900000 | 7.100000 | 5.900000 | 6.500000 | 7.200000 | 7.700000 | 6.900000 | 7.300000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
29 | 02M411 | BARUCH COLLEGE CAMPUS HIGH SCHOOL | 104.0 | 496.0 | 563.0 | 518.0 | 1577.0 | 0 | 78.0 | 115.0 | 88.0 | 171.533333 | 6.000000 | 26.573333 | 19.400000 | 31.533333 | 20112012.0 | 54.600000 | 432.000000 | 110.00000 | 108.000000 | 118.000000 | 96.000000 | 7.000000 | 1.600000 | 10.000000 | 2.300000 | 0.000000 | 0.000000 | 262.000000 | 60.600000 | 25.000000 | 5.800000 | 63.000000 | 14.600000 | 81.000000 | 18.800000 | 190.000000 | 44.000000 | 242.000000 | 56.000000 | 99.571429 | 98.314286 | 94.714286 | 96.328571 | 58.228571 | 59.214286 | 36.500000 | 37.142857 | 3.600000 | 3.671429 | 1.257143 | 0.285714 | Manhattan | 9.000000 | 12.0 | New York | 10010.00000 | 439.00000 | Traditional | Spanish | Biology, Calculus AB, Comparative Government a... | No courses | Chinese, Spanish | 820.000000 | 250.000000 | 1.000000 | 55 East 25 Street\nNew York, NY 10010\n(40.744... | 5.000000 | 2.000000 | 40.744047 | -73.991479 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 71.000000 | 35.000000 | 372.000000 | 17.000000 | 149.000000 | 8.400000 | 7.100000 | 7.100000 | 7.600000 | 8.000000 | 5.100000 | 6.000000 | 7.600000 | 7.800000 | 7.000000 | 7.000000 | 7.800000 | 8.100000 | 6.400000 | 6.700000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
30 | 02M412 | N.Y.C. LAB SCHOOL FOR COLLABORATIVE STUDIES | 114.0 | 537.0 | 590.0 | 550.0 | 1677.0 | 0 | 114.0 | 140.0 | 97.0 | 72.655172 | 2.241379 | 32.837931 | 31.344828 | 34.241379 | 20112012.0 | 21.600000 | 579.000000 | 187.00000 | 127.000000 | 132.000000 | 133.000000 | 9.000000 | 1.600000 | 87.000000 | 15.000000 | 71.000000 | 0.000000 | 170.000000 | 29.400000 | 49.000000 | 8.500000 | 81.000000 | 14.000000 | 266.000000 | 45.900000 | 272.000000 | 47.000000 | 307.000000 | 53.000000 | 110.285714 | 96.400000 | 90.671429 | 94.014286 | 52.557143 | 54.571429 | 38.114286 | 39.457143 | 5.728571 | 5.985714 | 2.485714 | 0.985714 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 599.00000 | Traditional | Spanish | Biology, Calculus AB, Calculus BC, English Lan... | No courses | No courses | 800.000000 | 250.000000 | 1.000000 | 333 West 17 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742101 | -74.002074 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 100.000000 | 45.000000 | 482.000000 | 34.000000 | 227.000000 | 8.400000 | 8.200000 | 7.900000 | 8.100000 | 7.800000 | 7.700000 | 7.500000 | 8.300000 | 7.500000 | 6.900000 | 7.000000 | 7.700000 | 7.900000 | 7.600000 | 7.500000 | 8.000000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
31 | 02M413 | SCHOOL OF THE FUTURE HIGH SCHOOL | 66.0 | 517.0 | 533.0 | 515.0 | 1565.0 | 0 | 11.0 | 11.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 31.000000 | 673.000000 | 107.00000 | 107.000000 | 87.000000 | 79.000000 | 14.000000 | 2.100000 | 98.000000 | 14.600000 | 15.000000 | 0.000000 | 108.000000 | 16.000000 | 83.000000 | 12.300000 | 175.000000 | 26.000000 | 256.000000 | 38.000000 | 342.000000 | 50.800000 | 331.000000 | 49.200000 | 86.571429 | 81.657143 | 81.500000 | 99.828571 | 0.000000 | 0.000000 | 81.500000 | 99.828571 | 0.157143 | 0.171429 | 15.985714 | 1.842857 | Manhattan | 6.000000 | 12.0 | New York | 10010.00000 | 715.00000 | Consortium School | Spanish | English Language and Composition, Environmenta... | No courses | Spanish | 835.000000 | 310.000000 | 1.000000 | 127 East 22 Street\nNew York, NY 10010\n(40.73... | 5.000000 | 2.000000 | 40.738949 | -73.985405 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 40.000000 | 31.000000 | 540.000000 | 19.000000 | 191.000000 | 8.400000 | 7.700000 | 8.000000 | 8.300000 | 7.500000 | 6.300000 | 7.500000 | 8.100000 | 7.100000 | 6.800000 | 6.900000 | 7.700000 | 7.600000 | 7.000000 | 7.500000 | 8.000000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
32 | 02M414 | N.Y.C. MUSEUM SCHOOL | 103.0 | 468.0 | 492.0 | 459.0 | 1419.0 | 0 | 0.0 | 0.0 | 0.0 | 85.620690 | 3.068966 | 27.610345 | 25.172414 | 29.655172 | 20112012.0 | 51.600000 | 436.000000 | 106.00000 | 99.000000 | 127.000000 | 104.000000 | 2.000000 | 0.500000 | 41.000000 | 9.400000 | 22.000000 | 0.000000 | 144.000000 | 33.000000 | 51.000000 | 11.700000 | 174.000000 | 39.900000 | 67.000000 | 15.400000 | 185.000000 | 42.400000 | 251.000000 | 57.600000 | 78.285714 | 87.328571 | 76.785714 | 88.142857 | 12.171429 | 14.300000 | 64.628571 | 73.842857 | 10.528571 | 11.857143 | 9.714286 | 2.428571 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 462.00000 | Traditional | Japanese, Spanish | Biology, English Literature and Composition, U... | No courses | No courses | 815.000000 | 245.000000 | 1.000000 | 333 West 17 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742101 | -74.002074 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 97.000000 | 67.000000 | 428.000000 | 28.000000 | 282.000000 | 8.000000 | 6.700000 | 6.800000 | 7.000000 | 6.800000 | 4.700000 | 4.900000 | 5.700000 | 7.100000 | 6.100000 | 6.700000 | 7.400000 | 7.300000 | 5.800000 | 6.100000 | 6.700000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
33 | 02M416 | ELEANOR ROOSEVELT HIGH SCHOOL | 127.0 | 572.0 | 594.0 | 592.0 | 1758.0 | 0 | 155.0 | 235.0 | 169.0 | 138.055556 | 4.944444 | 27.433333 | 23.555556 | 30.666667 | 20112012.0 | 15.800000 | 507.000000 | 120.00000 | 130.000000 | 120.000000 | 137.000000 | 1.000000 | 0.200000 | 6.000000 | 1.200000 | 0.000000 | 0.000000 | 87.000000 | 17.200000 | 28.000000 | 5.500000 | 59.000000 | 11.600000 | 323.000000 | 63.700000 | 165.000000 | 32.500000 | 342.000000 | 67.500000 | 99.142857 | 99.200000 | 97.866667 | 98.633333 | 61.800000 | 62.000000 | 36.066667 | 36.666667 | 1.366667 | 1.366667 | 0.483333 | 0.166667 | Manhattan | 9.000000 | 12.0 | New York | 10021.00000 | 531.00000 | Traditional | French, Spanish | Art History, Biology, Calculus AB, Chemistry, ... | No courses | Chinese (Mandarin) | 830.000000 | 330.000000 | 1.000000 | 411 East 76 Street\nNew York, NY 10021\n(40.77... | 8.000000 | 5.000000 | 40.770116 | -73.953379 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 85.000000 | 75.000000 | 37.000000 | 423.000000 | 24.000000 | 177.000000 | 9.000000 | 8.000000 | 8.000000 | 8.500000 | 8.200000 | 7.100000 | 7.900000 | 8.600000 | 8.100000 | 7.000000 | 7.400000 | 8.200000 | 8.500000 | 7.400000 | 7.800000 | 8.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
34 | 02M418 | MILLENNIUM HIGH SCHOOL | 144.0 | 528.0 | 553.0 | 533.0 | 1614.0 | 0 | 86.0 | 95.0 | 67.0 | 120.480000 | 4.040000 | 29.284000 | 27.000000 | 31.120000 | 20112012.0 | 32.700000 | 626.000000 | 144.00000 | 155.000000 | 180.000000 | 147.000000 | 1.000000 | 0.200000 | 57.000000 | 9.100000 | 28.000000 | 0.000000 | 188.000000 | 30.000000 | 55.000000 | 8.800000 | 136.000000 | 21.700000 | 225.000000 | 35.900000 | 239.000000 | 38.200000 | 387.000000 | 61.800000 | 121.000000 | 94.633333 | 84.716667 | 89.383333 | 23.900000 | 24.833333 | 60.800000 | 64.533333 | 9.916667 | 10.616667 | 4.716667 | 0.650000 | Manhattan | 9.000000 | 12.0 | New York | 10004.00000 | 619.00000 | Traditional | Chinese (Mandarin), Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 75 Broad Street\nNew York, NY 10004\n(40.70492... | 1.000000 | 1.000000 | 40.704920 | -74.011514 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 95.000000 | 98.000000 | 42.000000 | 596.000000 | 41.000000 | 256.000000 | 8.700000 | 7.600000 | 7.700000 | 8.000000 | 8.600000 | 6.600000 | 7.400000 | 8.300000 | 7.500000 | 6.900000 | 6.800000 | 7.900000 | 8.300000 | 7.000000 | 7.300000 | 8.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
35 | 02M419 | LANDMARK HIGH SCHOOL | 62.0 | 390.0 | 399.0 | 381.0 | 1170.0 | 0 | 0.0 | 0.0 | 0.0 | 57.964286 | 2.321429 | 26.578571 | 24.750000 | 28.678571 | 20112012.0 | 83.100000 | 421.000000 | 142.00000 | 125.000000 | 76.000000 | 78.000000 | 66.000000 | 15.700000 | 79.000000 | 18.800000 | 57.000000 | 7.000000 | 22.000000 | 5.200000 | 76.000000 | 18.100000 | 315.000000 | 74.800000 | 8.000000 | 1.900000 | 204.000000 | 48.500000 | 217.000000 | 51.500000 | 91.142857 | 60.285714 | 18.085714 | 28.571429 | 0.000000 | 0.000000 | 18.085714 | 28.571429 | 42.200000 | 71.428571 | 22.528571 | 13.671429 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 396.00000 | Consortium School | Spanish | No courses | No courses | No courses | 845.000000 | 320.000000 | 1.000000 | 351 West 18 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742888 | -74.002127 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 79.000000 | 100.000000 | 40.000000 | 328.000000 | 29.000000 | 161.000000 | 8.000000 | 6.900000 | 6.700000 | 7.300000 | 7.200000 | 5.400000 | 7.100000 | 7.000000 | 6.700000 | 6.200000 | 6.200000 | 7.000000 | 7.300000 | 6.200000 | 6.700000 | 7.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
36 | 02M420 | HIGH SCHOOL FOR HEALTH PROFESSIONS AND HUMAN S... | 336.0 | 429.0 | 449.0 | 428.0 | 1306.0 | 0 | 204.0 | 248.0 | 75.0 | 300.269231 | 9.384615 | 32.096154 | 28.884615 | 33.692308 | 20112012.0 | 68.000000 | 1768.000000 | 564.00000 | 513.000000 | 375.000000 | 316.000000 | 70.000000 | 4.000000 | 192.000000 | 10.900000 | 126.000000 | 12.000000 | 363.000000 | 20.500000 | 431.000000 | 24.400000 | 878.000000 | 49.700000 | 93.000000 | 5.300000 | 520.000000 | 29.400000 | 1248.000000 | 70.600000 | 307.857143 | 78.885714 | 63.514286 | 80.357143 | 14.714286 | 18.642857 | 48.785714 | 61.714286 | 15.371429 | 19.642857 | 15.971429 | 3.242857 | Manhattan | 9.000000 | 12.0 | New York | 10003.00000 | 1706.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, Comparative G... | No courses | No courses | 900.000000 | 345.000000 | 2.000000 | 345 East 15Th Street\nNew York, NY 10003\n(40.... | 6.000000 | 2.000000 | 40.732485 | -73.983053 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 93.000000 | 54.000000 | 1536.000000 | 81.000000 | 881.000000 | 7.600000 | 7.000000 | 7.000000 | 7.300000 | 7.700000 | 7.200000 | 7.600000 | 7.900000 | 6.500000 | 5.500000 | 6.100000 | 7.100000 | 7.300000 | 6.600000 | 6.900000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
37 | 02M425 | LEADERSHIP AND PUBLIC SERVICE HIGH SCHOOL | 84.0 | 416.0 | 426.0 | 391.0 | 1233.0 | 0 | 70.0 | 84.0 | 32.0 | 100.032258 | 3.774194 | 23.029032 | 20.161290 | 25.129032 | 20112012.0 | 74.200000 | 607.000000 | 190.00000 | 192.000000 | 114.000000 | 111.000000 | 33.000000 | 5.400000 | 113.000000 | 18.600000 | 32.000000 | 45.000000 | 49.000000 | 8.100000 | 185.000000 | 30.500000 | 329.000000 | 54.200000 | 40.000000 | 6.600000 | 280.000000 | 46.100000 | 327.000000 | 53.900000 | 141.857143 | 60.742857 | 30.257143 | 50.200000 | 5.157143 | 8.142857 | 25.114286 | 42.042857 | 30.500000 | 49.800000 | 15.528571 | 16.200000 | Manhattan | 9.000000 | 12.0 | New York | 10006.00000 | 685.00000 | Traditional | French, Spanish | Art History, Calculus AB, Comparative Governme... | Biology, Chemistry, Environmental Science, Eur... | Chinese, Classical Greek, Hebrew, Japanese, La... | 830.000000 | 245.000000 | 1.000000 | 90 Trinity Place\nNew York, NY 10006\n(40.7091... | 1.000000 | 1.000000 | 40.709147 | -74.012077 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 63.000000 | 72.000000 | 7.000000 | 378.000000 | 31.000000 | 40.000000 | 7.700000 | 7.100000 | 7.000000 | 7.000000 | 6.800000 | 6.600000 | 6.700000 | 7.300000 | 6.100000 | 5.400000 | 6.100000 | 6.900000 | 6.700000 | 6.200000 | 6.500000 | 7.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
38 | 02M427 | MANHATTAN ACADEMY FOR ARTS & LANGUAGE | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 94.000000 | 4.400000 | 23.020000 | 16.600000 | 27.000000 | 20112012.0 | 97.500000 | 175.000000 | 94.00000 | 81.000000 | 155.308756 | 147.334928 | 152.000000 | 86.900000 | 12.000000 | 6.900000 | 7.000000 | 2.000000 | 11.000000 | 6.300000 | 14.000000 | 8.000000 | 148.000000 | 84.600000 | 2.000000 | 1.100000 | 96.000000 | 54.900000 | 79.000000 | 45.100000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10016.00000 | 312.00000 | Traditional | Spanish | No courses | No courses | No courses | 900.000000 | 340.000000 | 1.000000 | 111 East 33Rd Street\nNew York, NY 10016\n(40.... | 5.000000 | 2.000000 | 40.746106 | -73.981010 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 100.000000 | 39.000000 | 82.000000 | 8.000000 | 32.000000 | 9.000000 | 8.600000 | 8.100000 | 8.300000 | 9.000000 | 9.000000 | 9.700000 | 9.600000 | 7.700000 | 6.000000 | 7.300000 | 7.600000 | 8.600000 | 7.800000 | 8.400000 | 8.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
39 | 02M429 | LEGACY SCHOOL FOR INTEGRATED STUDIES | 29.0 | 356.0 | 357.0 | 349.0 | 1062.0 | 0 | 22.0 | 26.0 | 0.0 | 44.666667 | 2.393939 | 18.590909 | 16.515152 | 20.818182 | 20112012.0 | 93.900000 | 294.000000 | 101.00000 | 71.000000 | 76.000000 | 46.000000 | 24.000000 | 8.200000 | 66.000000 | 22.400000 | 30.000000 | 20.000000 | 4.000000 | 1.400000 | 133.000000 | 45.200000 | 151.000000 | 51.400000 | 5.000000 | 1.700000 | 144.000000 | 49.000000 | 150.000000 | 51.000000 | 76.571429 | 40.957143 | 10.000000 | 19.842857 | 0.457143 | 0.914286 | 9.528571 | 18.928571 | 31.357143 | 81.300000 | 32.942857 | 19.328571 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 84.000000 | 37.000000 | 244.000000 | 26.000000 | 112.000000 | 7.500000 | 7.300000 | 7.100000 | 7.000000 | 7.000000 | 6.500000 | 6.900000 | 7.200000 | 6.100000 | 5.800000 | 6.000000 | 7.000000 | 6.900000 | 6.500000 | 6.700000 | 7.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
40 | 02M437 | HUDSON HIGH SCHOOL OF LEARNING TECHNOLOGIES | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 53.500000 | 2.000000 | 25.500000 | 25.000000 | 26.000000 | 20112012.0 | 61.500000 | 226.000000 | 122.00000 | 104.000000 | 155.308756 | 147.334928 | 20.000000 | 8.800000 | 37.000000 | 16.400000 | 14.000000 | 10.000000 | 13.000000 | 5.800000 | 53.000000 | 23.500000 | 141.000000 | 62.400000 | 15.000000 | 6.600000 | 137.000000 | 60.600000 | 89.000000 | 39.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 462.00000 | Traditional | Spanish | No courses | Biology, Calculus AB, English Literature and C... | Chinese, English, French, German, Italian, Latin | 845.000000 | 330.000000 | 1.000000 | 351 West 18 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742888 | -74.002127 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 100.000000 | 73.000000 | 102.000000 | 10.000000 | 80.000000 | 8.700000 | 7.600000 | 7.400000 | 7.700000 | 8.700000 | 8.900000 | 9.400000 | 9.400000 | 7.000000 | 7.000000 | 6.900000 | 7.500000 | 8.100000 | 7.800000 | 7.900000 | 8.200000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
41 | 02M438 | INTERNATIONAL HIGH SCHOOL AT UNION SQUARE | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 98.000000 | 4.000000 | 24.500000 | 23.000000 | 26.000000 | 20112012.0 | 82.800000 | 176.000000 | 70.00000 | 106.000000 | 155.308756 | 147.334928 | 167.000000 | 94.900000 | 1.000000 | 0.600000 | 0.000000 | 0.000000 | 71.000000 | 40.300000 | 22.000000 | 12.500000 | 76.000000 | 43.200000 | 6.000000 | 3.400000 | 108.000000 | 61.400000 | 68.000000 | 38.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10003.00000 | 339.00000 | International School | No Language Classes | No courses | No courses | No courses | 845.000000 | 305.000000 | 1.000000 | 40 Irving Place\nNew York, NY 10003\n(40.73551... | 6.000000 | 2.000000 | 40.735519 | -73.987604 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 100.000000 | 30.000000 | 82.000000 | 7.000000 | 28.000000 | 8.800000 | 7.600000 | 7.400000 | 8.100000 | 8.100000 | 7.900000 | 8.100000 | 8.300000 | 7.500000 | 6.800000 | 7.300000 | 7.300000 | 8.100000 | 7.400000 | 7.600000 | 7.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
42 | 02M439 | MANHATTAN VILLAGE ACADEMY | 95.0 | 441.0 | 473.0 | 458.0 | 1372.0 | 0 | 42.0 | 69.0 | 29.0 | 96.954545 | 4.500000 | 22.031818 | 20.545455 | 23.590909 | 20112012.0 | 60.300000 | 429.000000 | 86.00000 | 119.000000 | 126.000000 | 98.000000 | 16.000000 | 3.700000 | 35.000000 | 8.200000 | 10.000000 | 2.000000 | 27.000000 | 6.300000 | 72.000000 | 16.800000 | 308.000000 | 71.800000 | 21.000000 | 4.900000 | 165.000000 | 38.500000 | 264.000000 | 61.500000 | 87.142857 | 90.542857 | 76.171429 | 83.314286 | 16.614286 | 17.085714 | 59.557143 | 66.242857 | 14.385714 | 16.685714 | 5.828571 | 1.400000 | Manhattan | 9.000000 | 12.0 | New York | 10010.00000 | 414.00000 | Traditional | Latin, Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 800.000000 | 320.000000 | 1.000000 | 43 West 22 Street\nNew York, NY 10010\n(40.741... | 5.000000 | 3.000000 | 40.741495 | -73.991445 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 96.000000 | 41.000000 | 425.000000 | 27.000000 | 169.000000 | 9.500000 | 8.900000 | 8.300000 | 9.000000 | 8.700000 | 7.300000 | 7.300000 | 8.600000 | 7.600000 | 6.400000 | 6.900000 | 7.900000 | 8.600000 | 7.500000 | 7.500000 | 8.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
43 | 02M440 | BAYARD RUSTIN EDUCATIONAL COMPLEX | 59.0 | 378.0 | 365.0 | 368.0 | 1111.0 | 0 | 6.0 | 6.0 | 0.0 | 69.041667 | 2.833333 | 20.358333 | 17.250000 | 22.833333 | 20112012.0 | 75.500000 | 208.000000 | 3.00000 | 30.000000 | 31.000000 | 144.000000 | 54.000000 | 26.000000 | 28.000000 | 13.500000 | 11.000000 | 9.000000 | 13.000000 | 6.300000 | 58.000000 | 27.900000 | 130.000000 | 62.500000 | 5.000000 | 2.400000 | 133.000000 | 63.900000 | 75.000000 | 36.100000 | 425.571429 | 44.142857 | 18.614286 | 42.100000 | 4.371429 | 9.985714 | 14.242857 | 32.128571 | 25.557143 | 57.900000 | 33.057143 | 18.685714 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 54.000000 | 53.000000 | 13.000000 | 230.000000 | 18.000000 | 56.000000 | 7.500000 | 6.800000 | 6.400000 | 6.900000 | 6.300000 | 7.400000 | 7.300000 | 7.600000 | 5.900000 | 5.100000 | 5.700000 | 6.100000 | 6.600000 | 6.400000 | 6.500000 | 6.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
44 | 02M449 | VANGUARD HIGH SCHOOL | 72.0 | 395.0 | 416.0 | 388.0 | 1199.0 | 0 | 0.0 | 0.0 | 0.0 | 55.526316 | 2.789474 | 20.284211 | 18.473684 | 21.684211 | 20112012.0 | 69.500000 | 444.000000 | 147.00000 | 128.000000 | 90.000000 | 79.000000 | 27.000000 | 6.100000 | 77.000000 | 17.300000 | 51.000000 | 7.000000 | 44.000000 | 9.900000 | 114.000000 | 25.700000 | 262.000000 | 59.000000 | 20.000000 | 4.500000 | 205.000000 | 46.200000 | 239.000000 | 53.800000 | 73.142857 | 59.442857 | 40.300000 | 69.042857 | 0.000000 | 0.000000 | 40.300000 | 69.042857 | 19.128571 | 30.971429 | 28.471429 | 8.285714 | Manhattan | 9.000000 | 12.0 | New York | 10065.00000 | 469.00000 | Consortium School | Spanish | Calculus AB | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 317 East 67 Street\nNew York, NY 10065\n(40.76... | 8.000000 | 5.000000 | 40.765445 | -73.960214 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 94.000000 | 32.000000 | 333.000000 | 30.000000 | 128.000000 | 8.400000 | 7.900000 | 7.500000 | 7.900000 | 7.800000 | 7.900000 | 8.400000 | 8.400000 | 7.000000 | 6.400000 | 6.700000 | 7.500000 | 7.700000 | 7.400000 | 7.600000 | 7.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
45 | 02M459 | MANHATTAN INTERNATIONAL HIGH SCHOOL | 49.0 | 376.0 | 460.0 | 391.0 | 1227.0 | 0 | 12.0 | 12.0 | 6.0 | 97.411765 | 4.882353 | 20.311765 | 17.176471 | 22.470588 | 20112012.0 | 80.700000 | 325.000000 | 123.00000 | 75.000000 | 61.000000 | 66.000000 | 252.000000 | 77.500000 | 1.000000 | 0.300000 | 0.000000 | 0.000000 | 109.000000 | 33.500000 | 48.000000 | 14.800000 | 120.000000 | 36.900000 | 47.000000 | 14.500000 | 144.000000 | 44.300000 | 181.000000 | 55.700000 | 67.285714 | 58.900000 | 30.214286 | 52.600000 | 0.000000 | 0.000000 | 30.214286 | 52.600000 | 28.700000 | 47.400000 | 31.614286 | 7.042857 | Manhattan | 9.000000 | 12.0 | New York | 10065.00000 | 331.00000 | Consortium, International School | No Language Classes | Calculus AB, United States History | No courses | No courses | 845.000000 | 305.000000 | 1.000000 | 317 East 67 Street\nNew York, NY 10065\n(40.76... | 8.000000 | 5.000000 | 40.765445 | -73.960214 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 100.000000 | 56.000000 | 295.000000 | 22.000000 | 165.000000 | 8.800000 | 7.800000 | 7.400000 | 7.900000 | 7.700000 | 6.500000 | 7.400000 | 7.700000 | 7.800000 | 6.800000 | 6.900000 | 7.600000 | 8.100000 | 7.000000 | 7.300000 | 7.700000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
46 | 02M460 | WASHINGTON IRVING HIGH SCHOOL | 151.0 | 373.0 | 387.0 | 360.0 | 1120.0 | 0 | 69.0 | 83.0 | 21.0 | 150.125000 | 6.468750 | 21.643750 | 17.156250 | 25.562500 | 20112012.0 | 66.000000 | 1032.000000 | 251.00000 | 294.000000 | 243.000000 | 244.000000 | 192.000000 | 18.600000 | 177.000000 | 17.200000 | 44.000000 | 80.000000 | 50.000000 | 4.800000 | 354.000000 | 34.300000 | 601.000000 | 58.200000 | 24.000000 | 2.300000 | 490.000000 | 47.500000 | 542.000000 | 52.500000 | 532.428571 | 44.285714 | 25.085714 | 55.214286 | 2.571429 | 5.971429 | 22.514286 | 49.242857 | 19.185714 | 44.785714 | 24.800000 | 26.157143 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 90.000000 | 33.000000 | 880.000000 | 81.000000 | 377.000000 | 7.800000 | 8.000000 | 7.900000 | 8.000000 | 6.600000 | 6.400000 | 7.100000 | 7.400000 | 6.000000 | 5.700000 | 6.100000 | 6.900000 | 6.800000 | 6.700000 | 7.000000 | 7.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
47 | 02M473 | WASHINGTON IRVING YABC | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 58.000000 | 92.000000 | 8.000000 | 75.000000 | 24.000000 | 10.000000 | 8.700000 | 7.600000 | 7.300000 | 8.000000 | 8.500000 | 8.500000 | 8.900000 | 8.700000 | 7.800000 | 6.100000 | 7.200000 | 7.600000 | 8.300000 | 7.400000 | 7.900000 | 8.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
48 | 02M475 | STUYVESANT HIGH SCHOOL | 832.0 | 679.0 | 735.0 | 682.0 | 2096.0 | 0 | 1510.0 | 2819.0 | 2648.0 | 876.052632 | 28.000000 | 31.115789 | 24.105263 | 33.842105 | 20112012.0 | 30.300000 | 3297.000000 | 813.00000 | 827.000000 | 848.000000 | 809.000000 | 0.000000 | 0.000000 | 14.000000 | 0.400000 | 0.000000 | 0.000000 | 2377.000000 | 72.100000 | 40.000000 | 1.200000 | 80.000000 | 2.400000 | 780.000000 | 23.700000 | 1956.000000 | 59.300000 | 1341.000000 | 40.700000 | 754.714286 | 97.528571 | 97.528571 | 100.000000 | 96.771429 | 99.242857 | 0.757143 | 0.757143 | 0.000000 | 0.000000 | 2.028571 | 0.328571 | Manhattan | 9.000000 | 12.0 | New York | 10282.00000 | 3292.00000 | Specialized School | Chinese (Mandarin), French, German, Italian, J... | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 345 Chambers Street\nNew York, NY 10282\n(40.7... | 1.000000 | 1.000000 | 40.717746 | -74.014049 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 93.000000 | 95.000000 | 33.000000 | 3039.000000 | 161.000000 | 1062.000000 | 8.400000 | 7.500000 | 7.700000 | 7.700000 | 7.200000 | 5.600000 | 6.100000 | 7.200000 | 7.500000 | 6.200000 | 7.000000 | 7.900000 | 7.700000 | 6.400000 | 6.900000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
49 | 02M489 | HIGH SCHOOL OF ECONOMICS AND FINANCE | 167.0 | 443.0 | 489.0 | 442.0 | 1374.0 | 0 | 101.0 | 176.0 | 78.0 | 123.677419 | 4.483871 | 25.677419 | 21.096774 | 28.935484 | 20112012.0 | 60.800000 | 809.000000 | 265.00000 | 219.000000 | 148.000000 | 177.000000 | 51.000000 | 6.300000 | 96.000000 | 11.900000 | 46.000000 | 12.000000 | 201.000000 | 24.800000 | 182.000000 | 22.500000 | 352.000000 | 43.500000 | 71.000000 | 8.800000 | 441.000000 | 54.500000 | 368.000000 | 45.500000 | 147.285714 | 78.485714 | 59.271429 | 75.571429 | 18.842857 | 23.785714 | 40.428571 | 51.785714 | 19.242857 | 24.428571 | 11.385714 | 8.385714 | Manhattan | 9.000000 | 12.0 | New York | 10006.00000 | 767.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | French | 830.000000 | 330.000000 | 1.000000 | 100 Trinity Place\nNew York, NY 10006\n(40.709... | 1.000000 | 1.000000 | 40.709220 | -74.012026 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 98.000000 | 46.000000 | 702.000000 | 44.000000 | 348.000000 | 8.100000 | 7.300000 | 7.200000 | 7.500000 | 8.700000 | 8.500000 | 8.700000 | 8.700000 | 6.600000 | 5.700000 | 6.000000 | 7.100000 | 7.800000 | 7.200000 | 7.300000 | 7.800000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
50 | 02M500 | UNITY CENTER FOR URBAN TECHNOLOGIES | 25.0 | 370.0 | 349.0 | 351.0 | 1070.0 | 0 | 0.0 | 0.0 | 0.0 | 91.923077 | 3.538462 | 26.100000 | 20.923077 | 30.923077 | 20112012.0 | 83.500000 | 237.000000 | 73.00000 | 69.000000 | 51.000000 | 44.000000 | 37.000000 | 15.600000 | 78.000000 | 32.900000 | 37.000000 | 14.000000 | 9.000000 | 3.800000 | 83.000000 | 35.000000 | 131.000000 | 55.300000 | 6.000000 | 2.500000 | 148.000000 | 62.400000 | 89.000000 | 37.600000 | 43.857143 | 50.771429 | 35.614286 | 70.500000 | 2.142857 | 2.942857 | 33.442857 | 67.557143 | 15.142857 | 29.500000 | 29.057143 | 18.357143 | Manhattan | 9.000000 | 12.0 | New York | 10016.00000 | 255.00000 | Traditional | Spanish, Spanish Native Language Arts | No courses | No courses | No courses | 815.000000 | 400.000000 | 1.000000 | 111 East 33Rd Street\nNew York, NY 10016\n(40.... | 5.000000 | 2.000000 | 40.746106 | -73.981010 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 94.000000 | 75.000000 | 185.000000 | 15.000000 | 164.000000 | 8.400000 | 7.800000 | 7.500000 | 7.600000 | 7.500000 | 7.000000 | 7.300000 | 7.400000 | 7.900000 | 7.400000 | 7.300000 | 7.900000 | 7.900000 | 7.400000 | 7.400000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
51 | 02M519 | TALENT UNLIMITED HIGH SCHOOL | 81.0 | 469.0 | 472.0 | 475.0 | 1416.0 | 0 | 30.0 | 34.0 | 21.0 | 138.875000 | 5.312500 | 25.850000 | 21.062500 | 29.437500 | 20112012.0 | 45.500000 | 491.000000 | 103.00000 | 217.000000 | 80.000000 | 91.000000 | 1.000000 | 0.200000 | 17.000000 | 3.500000 | 0.000000 | 0.000000 | 22.000000 | 4.500000 | 177.000000 | 36.000000 | 193.000000 | 39.300000 | 97.000000 | 19.800000 | 105.000000 | 21.400000 | 386.000000 | 78.600000 | 105.571429 | 89.485714 | 76.700000 | 85.685714 | 23.757143 | 26.700000 | 53.000000 | 58.985714 | 12.771429 | 14.314286 | 7.942857 | 1.728571 | Manhattan | 9.000000 | 12.0 | New York | 10065.00000 | 530.00000 | Traditional | Italian, Spanish | Biology, Chemistry, English Literature and Com... | Biology | No courses | 810.000000 | 320.000000 | 5.000000 | 317 East 67 Street\nNew York, NY 10065\n(40.76... | 8.000000 | 5.000000 | 40.765445 | -73.960214 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 74.000000 | 40.000000 | 437.000000 | 20.000000 | 193.000000 | 8.200000 | 7.200000 | 7.200000 | 7.400000 | 6.900000 | 5.400000 | 6.000000 | 6.400000 | 7.000000 | 6.200000 | 6.800000 | 7.500000 | 7.400000 | 6.300000 | 6.700000 | 7.100000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
52 | 02M520 | MURRY BERGTRAUM HIGH SCHOOL FOR BUSINESS CAREERS | 264.0 | 407.0 | 440.0 | 393.0 | 1240.0 | 0 | 118.0 | 157.0 | 76.0 | 293.105263 | 11.605263 | 22.063158 | 15.815789 | 26.447368 | 20112012.0 | 72.700000 | 2073.000000 | 707.00000 | 569.000000 | 505.000000 | 292.000000 | 212.000000 | 10.200000 | 292.000000 | 14.100000 | 119.000000 | 108.000000 | 218.000000 | 10.500000 | 828.000000 | 39.900000 | 965.000000 | 46.600000 | 48.000000 | 2.300000 | 1017.000000 | 49.100000 | 1056.000000 | 50.900000 | 589.571429 | 59.357143 | 45.028571 | 75.557143 | 13.485714 | 23.542857 | 31.571429 | 52.000000 | 14.314286 | 24.442857 | 23.200000 | 14.342857 | Manhattan | 9.000000 | 12.0 | New York | 10038.00000 | 1466.00000 | Traditional | Chinese, Spanish | Art History, Biology, Calculus AB, English Lan... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 411 Pearl Street\nNew York, NY 10038\n(40.7106... | 1.000000 | 1.000000 | 40.710679 | -74.000807 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 75.000000 | 59.000000 | 9.000000 | 1669.000000 | 84.000000 | 201.000000 | 6.500000 | 6.400000 | 6.500000 | 6.600000 | 5.500000 | 5.300000 | 5.900000 | 6.400000 | 5.700000 | 5.300000 | 5.700000 | 6.500000 | 5.800000 | 5.500000 | 5.900000 | 6.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
53 | 02M529 | JACQUELINE KENNEDY ONASSIS HIGH SCHOOL | 131.0 | 414.0 | 425.0 | 400.0 | 1239.0 | 0 | 80.0 | 118.0 | 29.0 | 118.892857 | 4.714286 | 23.732143 | 18.928571 | 27.142857 | 20112012.0 | 73.000000 | 724.000000 | 257.00000 | 169.000000 | 160.000000 | 138.000000 | 71.000000 | 9.800000 | 99.000000 | 13.700000 | 37.000000 | 30.000000 | 37.000000 | 5.100000 | 164.000000 | 22.700000 | 506.000000 | 69.900000 | 13.000000 | 1.800000 | 294.000000 | 40.600000 | 430.000000 | 59.400000 | 143.000000 | 64.571429 | 45.214286 | 69.928571 | 14.242857 | 22.042857 | 31.000000 | 47.871429 | 19.357143 | 30.071429 | 24.342857 | 8.828571 | Manhattan | 9.000000 | 12.0 | New York | 10036.00000 | 709.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 120 West 46 Street\nNew York, NY 10036\n(40.75... | 5.000000 | 4.000000 | 40.757757 | -73.983188 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 79.000000 | 81.000000 | 25.000000 | 527.000000 | 38.000000 | 165.000000 | 8.400000 | 7.500000 | 7.500000 | 7.600000 | 6.600000 | 5.800000 | 6.200000 | 6.500000 | 7.100000 | 6.000000 | 6.700000 | 7.400000 | 7.400000 | 6.400000 | 6.800000 | 7.200000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
54 | 02M531 | REPERTORY COMPANY HIGH SCHOOL FOR THEATRE ARTS | 42.0 | 429.0 | 404.0 | 420.0 | 1253.0 | 0 | 0.0 | 0.0 | 0.0 | 63.500000 | 2.666667 | 23.900000 | 21.916667 | 25.500000 | 20112012.0 | 65.300000 | 217.000000 | 61.00000 | 59.000000 | 50.000000 | 47.000000 | 1.000000 | 0.500000 | 11.000000 | 5.100000 | 1.000000 | 0.000000 | 3.000000 | 1.400000 | 104.000000 | 47.900000 | 92.000000 | 42.400000 | 16.000000 | 7.400000 | 46.000000 | 21.200000 | 171.000000 | 78.800000 | 42.571429 | 78.371429 | 44.657143 | 54.271429 | 0.000000 | 0.000000 | 44.657143 | 54.271429 | 33.700000 | 45.728571 | 11.785714 | 9.457143 | Manhattan | 9.000000 | 12.0 | New York | 10036.00000 | 236.00000 | Traditional | Spanish | Biology, Calculus AB, English Literature and C... | Spanish Language and Culture | No courses | 815.000000 | 330.000000 | 1.000000 | 123 West 43 Street\nNew York, NY 10036\n(40.75... | 5.000000 | 4.000000 | 40.755943 | -73.984568 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 91.000000 | 44.000000 | 194.000000 | 10.000000 | 91.000000 | 8.000000 | 6.800000 | 7.100000 | 6.700000 | 5.900000 | 5.300000 | 6.000000 | 6.200000 | 5.900000 | 5.600000 | 5.700000 | 6.500000 | 6.600000 | 5.900000 | 6.300000 | 6.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
55 | 02M542 | MANHATTAN BRIDGES HIGH SCHOOL | 66.0 | 336.0 | 378.0 | 344.0 | 1058.0 | 0 | 67.0 | 102.0 | 59.0 | 107.187500 | 4.375000 | 23.475000 | 19.187500 | 26.937500 | 20112012.0 | 83.500000 | 541.000000 | 149.00000 | 168.000000 | 138.000000 | 86.000000 | 393.000000 | 72.600000 | 9.000000 | 1.700000 | 0.000000 | 5.000000 | 1.000000 | 0.200000 | 0.000000 | 0.000000 | 540.000000 | 99.800000 | 0.000000 | 0.000000 | 278.000000 | 51.400000 | 263.000000 | 48.600000 | 85.833333 | 68.280000 | 43.880000 | 63.920000 | 13.200000 | 18.640000 | 30.600000 | 45.280000 | 24.420000 | 36.080000 | 21.560000 | 9.000000 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 552.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 345.000000 | 4.000000 | 525 West 50Th Street\nNew York, NY 10019\n(40.... | 4.000000 | 3.000000 | 40.765027 | -73.992517 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 100.000000 | 83.000000 | 480.000000 | 37.000000 | 396.000000 | 8.800000 | 8.200000 | 7.600000 | 8.400000 | 7.600000 | 6.600000 | 7.500000 | 8.200000 | 7.200000 | 6.200000 | 6.700000 | 7.500000 | 7.900000 | 7.000000 | 7.300000 | 8.000000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
56 | 02M543 | NEW DESIGN HIGH SCHOOL | 73.0 | 391.0 | 395.0 | 382.0 | 1168.0 | 0 | 0.0 | 0.0 | 0.0 | 69.800000 | 3.040000 | 22.900000 | 20.840000 | 24.680000 | 20112012.0 | 66.100000 | 423.000000 | 128.00000 | 110.000000 | 104.000000 | 81.000000 | 23.000000 | 5.400000 | 74.000000 | 17.500000 | 44.000000 | 9.000000 | 16.000000 | 3.800000 | 128.000000 | 30.300000 | 263.000000 | 62.200000 | 11.000000 | 2.600000 | 162.000000 | 38.300000 | 261.000000 | 61.700000 | 64.285714 | 70.360000 | 46.680000 | 66.440000 | 0.000000 | 0.000000 | 46.680000 | 66.440000 | 23.720000 | 33.560000 | 17.680000 | 8.280000 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 439.00000 | Traditional | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 840.000000 | 256.000000 | 1.000000 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.000000 | 1.000000 | 40.716867 | -73.989532 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 72.000000 | 12.000000 | 321.000000 | 23.000000 | 45.000000 | 8.400000 | 7.800000 | 7.500000 | 8.000000 | 7.300000 | 5.600000 | 6.900000 | 7.100000 | 7.000000 | 6.300000 | 6.800000 | 7.400000 | 7.600000 | 6.600000 | 7.100000 | 7.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
57 | 02M544 | INDEPENDENCE HIGH SCHOOL | 14.0 | 389.0 | 371.0 | 335.0 | 1095.0 | 0 | 0.0 | 0.0 | 0.0 | 125.428571 | 6.428571 | 19.450000 | 14.285714 | 24.214286 | 20112012.0 | 74.400000 | 391.000000 | 199.09611 | 100.000000 | 104.000000 | 187.000000 | 15.000000 | 3.800000 | 45.000000 | 11.500000 | 2.000000 | 2.000000 | 17.000000 | 4.300000 | 131.000000 | 33.500000 | 233.000000 | 59.600000 | 8.000000 | 2.000000 | 200.000000 | 51.200000 | 191.000000 | 48.800000 | 168.428571 | 15.757143 | 4.371429 | 25.085714 | 0.000000 | 0.000000 | 4.371429 | 25.085714 | 11.400000 | 74.914286 | 71.100000 | 10.942857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 30.000000 | 66.000000 | 18.000000 | 108.000000 | 19.000000 | 59.000000 | 9.700000 | 9.600000 | 9.100000 | 9.700000 | 6.100000 | 3.800000 | 5.000000 | 5.800000 | 9.200000 | 9.300000 | 9.500000 | 9.500000 | 8.300000 | 7.600000 | 7.900000 | 8.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
58 | 02M545 | HIGH SCHOOL FOR DUAL LANGUAGE AND ASIAN STUDIES | 78.0 | 412.0 | 581.0 | 431.0 | 1424.0 | 0 | 61.0 | 96.0 | 89.0 | 92.058824 | 4.294118 | 21.817647 | 16.588235 | 26.294118 | 20112012.0 | 82.600000 | 353.000000 | 94.00000 | 100.000000 | 83.000000 | 76.000000 | 135.000000 | 38.200000 | 8.000000 | 2.300000 | 0.000000 | 0.000000 | 316.000000 | 89.500000 | 12.000000 | 3.400000 | 14.000000 | 4.000000 | 8.000000 | 2.300000 | 181.000000 | 51.300000 | 172.000000 | 48.700000 | 61.600000 | 86.620000 | 81.820000 | 94.360000 | 72.920000 | 84.000000 | 8.920000 | 10.380000 | 4.820000 | 5.640000 | 10.040000 | 1.460000 | Manhattan | 9.000000 | 12.0 | New York | 10002.00000 | 410.00000 | Traditional | Chinese (Mandarin) | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 800.000000 | 335.000000 | 1.000000 | 350 Grand Street\nNew York, NY 10002\n(40.7168... | 3.000000 | 1.000000 | 40.716867 | -73.989532 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.000000 | 68.000000 | 49.000000 | 516.257511 | 19.000000 | 158.000000 | 8.600000 | 7.100000 | 7.100000 | 7.400000 | 7.500000 | 5.600000 | 5.800000 | 6.800000 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.900000 | 6.200000 | 6.300000 | 6.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
59 | 02M550 | LIBERTY HIGH SCHOOL ACADEMY FOR NEWCOMERS | 26.0 | 368.0 | 436.0 | 352.0 | 1156.0 | 0 | 0.0 | 0.0 | 0.0 | 105.230769 | 5.615385 | 18.607692 | 15.153846 | 21.615385 | 20112012.0 | 79.500000 | 397.000000 | 116.00000 | 96.000000 | 108.000000 | 77.000000 | 358.000000 | 90.200000 | 8.000000 | 2.000000 | 0.000000 | 0.000000 | 102.000000 | 25.700000 | 79.000000 | 19.900000 | 167.000000 | 42.100000 | 47.000000 | 11.800000 | 242.000000 | 61.000000 | 155.000000 | 39.000000 | 105.714286 | 42.242857 | 27.885714 | 66.033333 | 7.200000 | 16.983333 | 20.685714 | 49.083333 | 14.357143 | 33.966667 | 21.785714 | 33.414286 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 72.000000 | 64.000000 | 349.000000 | 26.000000 | 227.000000 | 8.600000 | 7.800000 | 7.400000 | 8.000000 | 7.000000 | 4.700000 | 5.300000 | 6.500000 | 7.700000 | 6.300000 | 7.100000 | 7.500000 | 7.700000 | 6.300000 | 6.600000 | 7.300000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
60 | 02M551 | THE URBAN ASSEMBLY NEW YORK HARBOR SCHOOL | 77.0 | 405.0 | 423.0 | 384.0 | 1212.0 | 0 | 7.0 | 7.0 | 0.0 | 66.818182 | 2.818182 | 23.531818 | 20.545455 | 25.863636 | 20112012.0 | 73.500000 | 430.000000 | 127.00000 | 126.000000 | 94.000000 | 83.000000 | 18.000000 | 4.200000 | 77.000000 | 17.900000 | 41.000000 | 12.000000 | 10.000000 | 2.300000 | 161.000000 | 37.400000 | 212.000000 | 49.300000 | 44.000000 | 10.200000 | 262.000000 | 60.900000 | 168.000000 | 39.100000 | 73.166667 | 69.800000 | 37.920000 | 52.680000 | 19.540000 | 25.920000 | 18.420000 | 26.760000 | 31.880000 | 47.320000 | 17.820000 | 12.020000 | Manhattan | 9.000000 | 12.0 | Manhattan | 10004.00000 | 439.00000 | CTE School | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 815.000000 | 400.000000 | 1.000000 | 550 Wheeler Avenue\nManhattan, NY 10004\n(40.6... | 6.782016 | 22.237057 | 40.690788 | -74.019757 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 92.000000 | 45.000000 | 276.000000 | 35.000000 | 172.000000 | 8.300000 | 7.600000 | 7.500000 | 8.100000 | 6.400000 | 6.200000 | 6.900000 | 7.300000 | 6.800000 | 6.000000 | 6.700000 | 7.400000 | 7.200000 | 6.600000 | 7.000000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
61 | 02M560 | HIGH SCHOOL M560 s CITY AS SCHOOL | 56.0 | 498.0 | 440.0 | 477.0 | 1415.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 38.100000 | 605.000000 | 199.09611 | 29.000000 | 228.000000 | 348.000000 | 8.000000 | 1.300000 | 56.000000 | 9.300000 | 15.000000 | 1.000000 | 29.000000 | 4.800000 | 228.000000 | 37.700000 | 235.000000 | 38.800000 | 105.000000 | 17.400000 | 264.000000 | 43.600000 | 341.000000 | 56.400000 | 249.857143 | 35.942857 | 21.814286 | 54.171429 | 0.000000 | 0.000000 | 21.814286 | 54.171429 | 14.142857 | 45.828571 | 61.985714 | 1.042857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 41.000000 | 79.000000 | 15.000000 | 199.000000 | 30.000000 | 72.000000 | 8.900000 | 7.900000 | 8.000000 | 8.100000 | 8.500000 | 8.300000 | 8.600000 | 8.600000 | 8.600000 | 7.200000 | 7.900000 | 8.500000 | 8.600000 | 7.800000 | 8.200000 | 8.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
62 | 02M565 | URBAN ACADEMY LABORATORY HIGH SCHOOL | 30.0 | 527.0 | 508.0 | 512.0 | 1547.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 32.100000 | 157.000000 | 10.00000 | 69.000000 | 64.000000 | 14.000000 | 2.000000 | 1.300000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 8.000000 | 5.100000 | 53.000000 | 33.800000 | 60.000000 | 38.200000 | 32.000000 | 20.400000 | 64.000000 | 40.800000 | 93.000000 | 59.200000 | 37.142857 | 36.442857 | 23.571429 | 68.571429 | 0.000000 | 0.000000 | 23.571429 | 68.571429 | 12.871429 | 31.428571 | 56.057143 | 4.642857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 100.000000 | 83.000000 | 153.000000 | 16.000000 | 123.000000 | 10.000000 | 9.600000 | 9.400000 | 10.000000 | 9.300000 | 8.300000 | 9.600000 | 9.500000 | 9.100000 | 8.300000 | 8.700000 | 9.300000 | 9.500000 | 8.700000 | 9.200000 | 9.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
63 | 02M570 | SATELLITE ACADEMY HIGH SCHOOL | 33.0 | 350.0 | 337.0 | 345.0 | 1032.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 72.800000 | 248.000000 | 143.00000 | 59.000000 | 43.000000 | 3.000000 | 16.000000 | 6.500000 | 35.000000 | 14.100000 | 15.000000 | 2.000000 | 4.000000 | 1.600000 | 87.000000 | 35.100000 | 148.000000 | 59.700000 | 7.000000 | 2.800000 | 96.000000 | 38.700000 | 152.000000 | 61.300000 | 338.000000 | 15.414286 | 4.085714 | 28.871429 | 0.000000 | 0.000000 | 4.085714 | 28.871429 | 11.328571 | 71.128571 | 71.942857 | 10.357143 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 54.000000 | 86.000000 | 6.000000 | 99.000000 | 12.000000 | 12.000000 | 8.900000 | 7.800000 | 7.900000 | 8.400000 | 9.300000 | 8.600000 | 9.400000 | 9.100000 | 8.100000 | 7.100000 | 7.800000 | 7.900000 | 8.800000 | 7.800000 | 8.500000 | 8.500000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
64 | 02M575 | MANHATTAN COMPREHENSIVE NIGHT AND DAY HIGH SCHOOL | 121.0 | 345.0 | 517.0 | 343.0 | 1205.0 | 0 | 58.0 | 100.0 | 61.0 | 122.038462 | 5.038462 | 26.688462 | 22.269231 | 31.769231 | 20112012.0 | 85.600000 | 807.000000 | 199.09611 | 414.000000 | 280.000000 | 113.000000 | 484.000000 | 60.000000 | 19.000000 | 2.400000 | 5.000000 | 4.000000 | 285.000000 | 35.300000 | 250.000000 | 31.000000 | 228.000000 | 28.300000 | 40.000000 | 5.000000 | 453.000000 | 56.100000 | 354.000000 | 43.900000 | 299.142857 | 40.400000 | 31.700000 | 77.142857 | 8.771429 | 20.314286 | 22.942857 | 56.814286 | 8.728571 | 22.942857 | 41.785714 | 17.114286 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 88.000000 | 34.000000 | 677.000000 | 36.000000 | 233.000000 | 8.900000 | 7.800000 | 7.700000 | 8.100000 | 8.900000 | 7.500000 | 8.500000 | 9.000000 | 8.700000 | 6.800000 | 8.100000 | 8.300000 | 8.800000 | 7.400000 | 8.100000 | 8.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
65 | 02M580 | RICHARD R. GREEN HIGH SCHOOL OF TEACHING | 84.0 | 408.0 | 384.0 | 403.0 | 1195.0 | 0 | 67.0 | 117.0 | 40.0 | 103.880000 | 3.920000 | 26.888000 | 22.560000 | 30.320000 | 20112012.0 | 67.000000 | 610.000000 | 221.00000 | 171.000000 | 96.000000 | 122.000000 | 39.000000 | 6.400000 | 133.000000 | 21.800000 | 68.000000 | 16.000000 | 14.000000 | 2.300000 | 214.000000 | 35.100000 | 362.000000 | 59.300000 | 14.000000 | 2.300000 | 199.000000 | 32.600000 | 411.000000 | 67.400000 | 147.714286 | 58.885714 | 40.700000 | 68.400000 | 9.228571 | 15.542857 | 31.428571 | 52.857143 | 18.185714 | 31.600000 | 23.000000 | 13.457143 | Manhattan | 9.000000 | 12.0 | New York | 10004.00000 | 593.00000 | Traditional | Spanish | English Language and Composition, English Lite... | No courses | No courses | 830.000000 | 320.000000 | 2.000000 | 26 Broadway\nNew York, NY 10004\n(40.705234939... | 1.000000 | 1.000000 | 40.705235 | -74.013315 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 83.000000 | 37.000000 | 519.000000 | 38.000000 | 198.000000 | 8.200000 | 7.600000 | 7.200000 | 7.600000 | 7.800000 | 7.400000 | 7.700000 | 8.200000 | 6.600000 | 5.700000 | 6.400000 | 7.000000 | 7.500000 | 6.900000 | 7.100000 | 7.600000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
66 | 02M586 | HARVEY MILK HIGH SCHOOL | 9.0 | 458.0 | 416.0 | 429.0 | 1303.0 | 0 | 0.0 | 0.0 | 0.0 | 19.312500 | 1.375000 | 14.100000 | 13.875000 | 14.375000 | 20112012.0 | 75.700000 | 68.000000 | 1.00000 | 21.000000 | 24.000000 | 22.000000 | 1.000000 | 1.500000 | 15.000000 | 22.100000 | 11.000000 | 0.000000 | 4.000000 | 5.900000 | 26.000000 | 38.200000 | 27.000000 | 39.700000 | 11.000000 | 16.200000 | 32.000000 | 47.100000 | 36.000000 | 52.900000 | 32.857143 | 28.542857 | 10.857143 | 34.700000 | 0.000000 | 0.000000 | 10.857143 | 34.700000 | 17.685714 | 65.300000 | 48.814286 | 22.285714 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 100.000000 | 66.000000 | 39.000000 | 9.000000 | 41.000000 | 8.800000 | 7.300000 | 7.200000 | 7.600000 | 6.700000 | 4.900000 | 5.700000 | 6.200000 | 7.400000 | 6.900000 | 7.600000 | 8.000000 | 7.600000 | 6.400000 | 6.800000 | 7.300000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
67 | 02M600 | THE HIGH SCHOOL OF FASHION INDUSTRIES | 335.0 | 423.0 | 423.0 | 411.0 | 1257.0 | 0 | 70.0 | 87.0 | 26.0 | 221.461538 | 7.384615 | 27.046154 | 24.692308 | 28.307692 | 20112012.0 | 68.300000 | 1599.000000 | 449.00000 | 431.000000 | 388.000000 | 331.000000 | 45.000000 | 2.800000 | 184.000000 | 11.500000 | 71.000000 | 42.000000 | 60.000000 | 3.800000 | 626.000000 | 39.100000 | 836.000000 | 52.300000 | 66.000000 | 4.100000 | 116.000000 | 7.300000 | 1483.000000 | 92.700000 | 388.000000 | 81.971429 | 62.642857 | 76.285714 | 16.371429 | 19.700000 | 46.271429 | 56.557143 | 19.371429 | 23.771429 | 10.585714 | 4.957143 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 1732.00000 | CTE School | Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 225 West 24 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.745112 | -73.995906 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 91.000000 | 17.000000 | 1495.000000 | 85.000000 | 263.000000 | 7.900000 | 6.800000 | 7.100000 | 7.300000 | 7.400000 | 7.200000 | 7.300000 | 7.700000 | 6.500000 | 5.600000 | 6.500000 | 7.300000 | 7.300000 | 6.500000 | 6.900000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
68 | 02M605 | HUMANITIES PREPARATORY ACADEMY | 36.0 | 426.0 | 403.0 | 426.0 | 1255.0 | 0 | 0.0 | 0.0 | 0.0 | 91.285714 | 3.857143 | 23.800000 | 20.714286 | 26.285714 | 20112012.0 | 54.000000 | 192.000000 | 48.00000 | 77.000000 | 34.000000 | 33.000000 | 2.000000 | 1.000000 | 13.000000 | 6.800000 | 3.000000 | 0.000000 | 14.000000 | 7.300000 | 42.000000 | 21.900000 | 111.000000 | 57.800000 | 22.000000 | 11.500000 | 82.000000 | 42.700000 | 110.000000 | 57.300000 | 47.857143 | 63.014286 | 44.857143 | 68.057143 | 8.557143 | 12.900000 | 36.314286 | 55.171429 | 18.185714 | 31.942857 | 26.000000 | 10.057143 | Manhattan | 9.000000 | 12.0 | New York | 10011.00000 | 210.00000 | Consortium School | French, Spanish | No courses | No courses | No courses | 900.000000 | 315.000000 | 1.000000 | 351 West 18 Street\nNew York, NY 10011\n(40.74... | 4.000000 | 3.000000 | 40.742888 | -74.002127 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 71.000000 | 100.000000 | 31.000000 | 129.000000 | 14.000000 | 55.000000 | 7.700000 | 6.700000 | 6.800000 | 7.200000 | 7.400000 | 5.600000 | 7.000000 | 7.500000 | 7.000000 | 6.700000 | 6.600000 | 7.300000 | 7.400000 | 6.300000 | 6.800000 | 7.300000 | 02 | DISTRICT 02 | 89.01 | 60823 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
69 | 02M615 | CHELSEA CAREER AND TECHNICAL EDUCATION HIGH SC... | 83.0 | 399.0 | 418.0 | 390.0 | 1207.0 | 0 | 52.0 | 97.0 | 13.0 | 80.066667 | 3.100000 | 25.720000 | 23.733333 | 27.933333 | 20112012.0 | 69.800000 | 466.000000 | 157.00000 | 135.000000 | 64.000000 | 110.000000 | 29.000000 | 6.200000 | 73.000000 | 15.700000 | 36.000000 | 10.000000 | 33.000000 | 7.100000 | 138.000000 | 29.600000 | 282.000000 | 60.500000 | 7.000000 | 1.500000 | 303.000000 | 65.000000 | 163.000000 | 35.000000 | 184.285714 | 44.942857 | 25.471429 | 56.028571 | 4.957143 | 10.014286 | 20.528571 | 46.028571 | 19.528571 | 44.128571 | 23.085714 | 21.342857 | Manhattan | 9.000000 | 12.0 | New York | 10013.00000 | 443.00000 | CTE School | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 830.000000 | 400.000000 | 2.000000 | 131 Avenue\nOf The Americas New York, NY 10013... | 2.000000 | 3.000000 | 40.724353 | -74.004759 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 97.000000 | 89.000000 | 28.000000 | 468.000000 | 32.000000 | 134.000000 | 8.400000 | 7.600000 | 7.400000 | 7.900000 | 7.000000 | 5.800000 | 6.100000 | 7.100000 | 6.500000 | 5.800000 | 6.300000 | 7.300000 | 7.300000 | 6.400000 | 6.600000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
70 | 02M620 | NORMAN THOMAS HIGH SCHOOL | 154.0 | 370.0 | 379.0 | 359.0 | 1108.0 | 0 | 34.0 | 34.0 | 14.0 | 188.666667 | 7.966667 | 22.470000 | 15.300000 | 28.066667 | 20112012.0 | 81.100000 | 1127.000000 | 168.00000 | 462.000000 | 280.000000 | 217.000000 | 218.000000 | 19.300000 | 175.000000 | 15.500000 | 65.000000 | 66.000000 | 18.000000 | 1.600000 | 289.000000 | 25.600000 | 796.000000 | 70.600000 | 22.000000 | 2.000000 | 586.000000 | 52.000000 | 541.000000 | 48.000000 | 496.857143 | 42.100000 | 21.542857 | 50.685714 | 4.542857 | 11.385714 | 17.014286 | 39.271429 | 20.557143 | 49.314286 | 30.985714 | 22.314286 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 23.000000 | 79.000000 | 30.000000 | 368.000000 | 78.000000 | 478.000000 | 7.000000 | 6.800000 | 6.800000 | 7.000000 | 6.300000 | 6.300000 | 6.200000 | 6.700000 | 6.200000 | 5.600000 | 6.100000 | 6.800000 | 6.500000 | 6.200000 | 6.400000 | 6.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
71 | 02M625 | HIGH SCHOOL OF GRAPHIC COMMUNICATION ARTS | 191.0 | 395.0 | 382.0 | 376.0 | 1153.0 | 0 | 79.0 | 85.0 | 9.0 | 257.437500 | 10.031250 | 23.806250 | 17.093750 | 29.812500 | 20112012.0 | 72.700000 | 1433.000000 | 380.00000 | 415.000000 | 337.000000 | 301.000000 | 131.000000 | 9.100000 | 246.000000 | 17.200000 | 77.000000 | 78.000000 | 45.000000 | 3.100000 | 434.000000 | 30.300000 | 914.000000 | 63.800000 | 37.000000 | 2.600000 | 667.000000 | 46.500000 | 766.000000 | 53.500000 | 391.142857 | 38.928571 | 21.642857 | 55.785714 | 0.942857 | 2.314286 | 20.685714 | 53.457143 | 17.300000 | 44.214286 | 27.400000 | 28.785714 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.739540 | -73.991099 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 66.000000 | 24.000000 | 1192.000000 | 77.000000 | 377.000000 | 6.700000 | 6.800000 | 6.800000 | 7.000000 | 6.700000 | 6.400000 | 6.700000 | 7.200000 | 5.700000 | 5.400000 | 5.700000 | 6.500000 | 6.300000 | 6.200000 | 6.400000 | 6.900000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
72 | 02M630 | ART AND DESIGN HIGH SCHOOL | 270.0 | 444.0 | 441.0 | 430.0 | 1315.0 | 0 | 84.0 | 100.0 | 33.0 | 189.241379 | 6.482759 | 27.868966 | 22.965517 | 30.827586 | 20112012.0 | 53.300000 | 1344.000000 | 345.00000 | 304.000000 | 335.000000 | 360.000000 | 22.000000 | 1.600000 | 149.000000 | 11.100000 | 52.000000 | 32.000000 | 121.000000 | 9.000000 | 360.000000 | 26.800000 | 685.000000 | 51.000000 | 169.000000 | 12.600000 | 628.000000 | 46.700000 | 716.000000 | 53.300000 | 293.714286 | 66.900000 | 47.071429 | 70.214286 | 8.071429 | 12.114286 | 38.985714 | 58.071429 | 19.828571 | 29.785714 | 24.557143 | 5.214286 | Manhattan | 9.000000 | 12.0 | New York | 10019.00000 | 1438.00000 | CTE School | Spanish | Art History, Biology, Calculus AB, Chemistry, ... | No courses | No courses | 830.000000 | 400.000000 | 3.000000 | 231 249 East 56 Street\nNew York, NY 10019\n(4... | 6.000000 | 4.000000 | 40.765402 | -73.981768 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 46.000000 | 23.000000 | 1019.000000 | 39.000000 | 280.000000 | 8.000000 | 6.900000 | 7.200000 | 7.100000 | 8.100000 | 6.400000 | 7.100000 | 7.800000 | 6.700000 | 5.900000 | 6.500000 | 7.200000 | 7.600000 | 6.400000 | 6.900000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
73 | 02M655 | LIFE SCIENCES SECONDARY SCHOOL | 61.0 | 409.0 | 424.0 | 403.0 | 1236.0 | 0 | 50.0 | 90.0 | 10.0 | 99.928571 | 4.285714 | 21.678571 | 16.500000 | 26.428571 | 20112012.0 | 70.300000 | 717.000000 | 177.00000 | 173.000000 | 125.000000 | 117.000000 | 57.000000 | 7.900000 | 141.000000 | 19.700000 | 43.000000 | 43.000000 | 24.000000 | 3.300000 | 205.000000 | 28.600000 | 461.000000 | 64.300000 | 17.000000 | 2.400000 | 370.000000 | 51.600000 | 347.000000 | 48.400000 | 119.571429 | 79.485714 | 48.828571 | 61.014286 | 5.928571 | 7.542857 | 42.900000 | 53.471429 | 30.642857 | 38.985714 | 11.771429 | 7.042857 | Manhattan | 6.000000 | 12.0 | New York | 10128.00000 | 771.00000 | Traditional | French, Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 320 East 96 Street\nNew York, NY 10128\n(40.78... | 8.000000 | 5.000000 | 40.783644 | -73.945742 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 73.000000 | 45.000000 | 14.000000 | 474.000000 | 23.000000 | 90.000000 | 8.000000 | 7.300000 | 7.300000 | 7.600000 | 7.300000 | 6.600000 | 7.200000 | 7.700000 | 5.900000 | 5.700000 | 6.400000 | 6.900000 | 7.000000 | 6.500000 | 7.000000 | 7.400000 | 02 | DISTRICT 02 | 89.01 | 60823 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
74 | 03M283 | MANHATTAN THEATRE LAB HIGH SCHOOL | 27.0 | 406.0 | 379.0 | 408.0 | 1193.0 | 0 | 0.0 | 0.0 | 0.0 | 103.823529 | 3.941176 | 22.870588 | 19.470588 | 26.470588 | 20112012.0 | 59.600000 | 409.000000 | 170.00000 | 119.000000 | 73.000000 | 47.000000 | 35.000000 | 8.600000 | 43.000000 | 10.500000 | 5.000000 | 26.000000 | 7.000000 | 1.700000 | 188.000000 | 46.000000 | 202.000000 | 49.400000 | 9.000000 | 2.200000 | 130.000000 | 31.800000 | 279.000000 | 68.200000 | 42.500000 | 63.800000 | 24.775000 | 38.225000 | 0.450000 | 0.900000 | 24.325000 | 37.325000 | 39.025000 | 61.775000 | 22.650000 | 8.600000 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.781574 | -73.977370 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 53.000000 | 57.000000 | 17.000000 | 186.000000 | 13.000000 | 61.000000 | 7.000000 | 6.800000 | 7.000000 | 6.900000 | 5.800000 | 4.900000 | 5.200000 | 5.300000 | 6.100000 | 6.000000 | 6.300000 | 7.000000 | 6.300000 | 5.900000 | 6.200000 | 6.400000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
75 | 03M299 | HIGH SCHOOL FOR ARTS, IMAGINATION AND INQUIRY | 49.0 | 374.0 | 384.0 | 374.0 | 1132.0 | 0 | 0.0 | 0.0 | 0.0 | 77.095238 | 3.238095 | 22.890476 | 17.714286 | 27.523810 | 20112012.0 | 66.400000 | 418.000000 | 155.00000 | 101.000000 | 92.000000 | 70.000000 | 60.000000 | 14.400000 | 82.000000 | 19.600000 | 38.000000 | 13.000000 | 4.000000 | 1.000000 | 156.000000 | 37.300000 | 246.000000 | 58.900000 | 6.000000 | 1.400000 | 233.000000 | 55.700000 | 185.000000 | 44.300000 | 70.250000 | 62.000000 | 52.166667 | 84.233333 | 0.733333 | 1.066667 | 51.400000 | 83.166667 | 9.800000 | 15.766667 | 26.633333 | 8.966667 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 435.00000 | Traditional | French | United States History | No courses | No courses | 845.000000 | 326.000000 | 1.000000 | 122 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.774296 | -73.984823 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 91.000000 | 96.000000 | 14.000000 | 344.000000 | 27.000000 | 51.000000 | 7.600000 | 7.000000 | 6.800000 | 7.000000 | 6.500000 | 5.800000 | 6.100000 | 6.500000 | 6.500000 | 5.800000 | 6.400000 | 7.100000 | 6.900000 | 6.200000 | 6.400000 | 6.900000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
76 | 03M307 | URBAN ASSEMBLY SCHOOL FOR MEDIA STUDIES, THE | 41.0 | 384.0 | 390.0 | 370.0 | 1144.0 | 0 | 0.0 | 0.0 | 0.0 | 49.346154 | 2.423077 | 20.050000 | 18.846154 | 21.576923 | 20112012.0 | 68.800000 | 366.000000 | 120.00000 | 86.000000 | 84.000000 | 76.000000 | 47.000000 | 12.800000 | 56.000000 | 15.300000 | 41.000000 | 10.000000 | 8.000000 | 2.200000 | 137.000000 | 37.400000 | 205.000000 | 56.000000 | 11.000000 | 3.000000 | 212.000000 | 57.900000 | 154.000000 | 42.100000 | 74.800000 | 62.225000 | 40.375000 | 65.325000 | 0.000000 | 0.000000 | 40.375000 | 65.325000 | 21.850000 | 34.675000 | 22.200000 | 12.700000 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 387.00000 | Traditional | Spanish | Calculus AB, Chemistry, English Literature and... | No courses | No courses | 900.000000 | 315.000000 | 1.000000 | 122 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.774296 | -73.984823 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 96.000000 | 22.000000 | 263.000000 | 25.000000 | 71.000000 | 8.700000 | 7.900000 | 7.800000 | 8.400000 | 7.800000 | 7.900000 | 7.900000 | 8.200000 | 6.900000 | 6.200000 | 7.100000 | 7.600000 | 7.800000 | 7.400000 | 7.600000 | 8.100000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
77 | 03M402 | THE URBAN ASSEMBLY SCHOOL FOR GREEN CAREERS | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 12.333333 | 1.000000 | 12.333333 | 12.333333 | 12.333333 | 20112012.0 | 73.200000 | 283.000000 | 124.00000 | 84.000000 | 75.000000 | 147.334928 | 71.000000 | 25.100000 | 61.000000 | 21.600000 | 33.000000 | 9.000000 | 5.000000 | 1.800000 | 56.000000 | 19.800000 | 215.000000 | 76.000000 | 5.000000 | 1.800000 | 161.000000 | 56.900000 | 122.000000 | 43.100000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10024.00000 | 395.00000 | CTE School | Spanish | English Literature and Composition | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 145 West 84 Street\nNew York, NY 10024\n(40.78... | 7.000000 | 6.000000 | 40.785743 | -73.974415 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 53.000000 | 30.000000 | 27.000000 | 93.000000 | 6.000000 | 48.000000 | 8.200000 | 7.900000 | 7.700000 | 8.000000 | 4.400000 | 4.200000 | 5.200000 | 5.700000 | 6.300000 | 6.400000 | 6.300000 | 7.200000 | 6.300000 | 6.200000 | 6.400000 | 7.000000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
78 | 03M403 | THE GLOBAL LEARNING COLLABORATIVE | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 86.100000 | 3.400000 | 25.240000 | 19.600000 | 29.900000 | 20112012.0 | 68.400000 | 358.000000 | 192.00000 | 108.000000 | 58.000000 | 147.334928 | 69.000000 | 19.300000 | 69.000000 | 19.300000 | 41.000000 | 7.000000 | 13.000000 | 3.600000 | 99.000000 | 27.700000 | 224.000000 | 62.600000 | 21.000000 | 5.900000 | 184.000000 | 51.400000 | 174.000000 | 48.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10024.00000 | 480.00000 | Traditional | Arabic, Chinese (Mandarin), Italian, Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 145 West 84 Street\nNew York, NY 10024\n(40.78... | 7.000000 | 6.000000 | 40.785743 | -73.974415 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 79.000000 | 100.000000 | 24.000000 | 162.000000 | 16.000000 | 47.000000 | 8.500000 | 7.900000 | 7.700000 | 7.600000 | 7.200000 | 7.600000 | 8.300000 | 8.200000 | 7.000000 | 6.700000 | 7.100000 | 7.400000 | 7.600000 | 7.400000 | 7.700000 | 7.700000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
79 | 03M404 | INNOVATION DIPLOMA PLUS | 12.0 | 416.0 | 403.0 | 381.0 | 1200.0 | 0 | 0.0 | 0.0 | 0.0 | 57.538462 | 3.538462 | 17.223077 | 14.461538 | 20.230769 | 20112012.0 | 50.400000 | 199.000000 | 23.00000 | 83.000000 | 65.000000 | 28.000000 | 7.000000 | 3.500000 | 20.000000 | 10.100000 | 1.000000 | 0.000000 | 97.000000 | 48.700000 | 66.000000 | 33.200000 | 33.000000 | 16.600000 | 3.000000 | 1.500000 | 95.000000 | 47.700000 | 104.000000 | 52.300000 | 39.000000 | 28.200000 | 20.500000 | 72.700000 | 0.000000 | 0.000000 | 20.500000 | 72.700000 | 7.700000 | 27.300000 | 66.700000 | 5.100000 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.781574 | -73.977370 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 100.000000 | 21.000000 | 147.000000 | 13.000000 | 41.000000 | 9.100000 | 8.400000 | 8.000000 | 8.700000 | 6.800000 | 5.800000 | 6.400000 | 7.000000 | 7.300000 | 6.400000 | 6.800000 | 7.500000 | 7.700000 | 6.800000 | 7.100000 | 7.700000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
80 | 03M415 | WADLEIGH SECONDARY SCHOOL FOR THE PERFORMING &... | 32.0 | 371.0 | 368.0 | 370.0 | 1109.0 | 0 | 65.0 | 73.0 | 0.0 | 95.190476 | 4.190476 | 19.990476 | 16.619048 | 22.857143 | 20112012.0 | 76.600000 | 516.000000 | 184.00000 | 108.000000 | 71.000000 | 63.000000 | 38.000000 | 7.400000 | 97.000000 | 18.800000 | 5.000000 | 60.000000 | 2.000000 | 0.400000 | 309.000000 | 59.900000 | 200.000000 | 38.800000 | 4.000000 | 0.800000 | 198.000000 | 38.400000 | 318.000000 | 61.600000 | 131.857143 | 63.857143 | 47.514286 | 74.328571 | 8.128571 | 12.757143 | 39.385714 | 61.571429 | 16.328571 | 25.671429 | 20.585714 | 5.371429 | Manhattan | 6.000000 | 12.0 | New York | 10026.00000 | 531.00000 | Traditional | French, Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 800.000000 | 345.000000 | 6.000000 | 215 West 114 Street\nNew York, NY 10026\n(40.8... | 10.000000 | 9.000000 | 40.802175 | -73.954009 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 71.000000 | 68.000000 | 55.000000 | 336.000000 | 27.000000 | 262.000000 | 7.600000 | 6.900000 | 7.100000 | 7.100000 | 6.100000 | 5.200000 | 5.900000 | 6.100000 | 6.000000 | 5.500000 | 5.900000 | 6.600000 | 6.500000 | 5.900000 | 6.300000 | 6.600000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
81 | 03M417 | FRANK MCCOURT HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 50.000000 | 2.000000 | 25.000000 | 24.500000 | 26.000000 | 20112012.0 | 24.000000 | 219.000000 | 131.00000 | 88.000000 | 155.308756 | 147.334928 | 2.000000 | 0.900000 | 38.000000 | 17.400000 | 14.000000 | 0.000000 | 15.000000 | 6.800000 | 40.000000 | 18.300000 | 81.000000 | 37.000000 | 81.000000 | 37.000000 | 102.000000 | 46.600000 | 117.000000 | 53.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10024.00000 | 373.00000 | Traditional | Spanish | No courses | No courses | No courses | 840.000000 | 300.000000 | 1.000000 | 145 West 84 Street\nNew York, NY 10024\n(40.78... | 7.000000 | 6.000000 | 40.785743 | -73.974415 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 98.000000 | 100.000000 | 47.000000 | 97.000000 | 8.000000 | 47.000000 | 8.400000 | 7.600000 | 7.300000 | 7.600000 | 6.900000 | 7.000000 | 7.000000 | 7.900000 | 7.300000 | 7.300000 | 7.100000 | 7.700000 | 7.500000 | 7.300000 | 7.200000 | 7.800000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
82 | 03M470 | LOUIS D. BRANDEIS HIGH SCHOOL | 131.0 | 370.0 | 390.0 | 358.0 | 1118.0 | 0 | 48.0 | 70.0 | 6.0 | 138.666667 | 6.333333 | 19.812500 | 14.708333 | 24.041667 | 20112012.0 | 68.600000 | 291.000000 | 14.00000 | 35.000000 | 30.000000 | 212.000000 | 81.000000 | 27.800000 | 31.000000 | 10.700000 | 0.000000 | 8.000000 | 6.000000 | 2.100000 | 86.000000 | 29.600000 | 196.000000 | 67.400000 | 3.000000 | 1.000000 | 147.000000 | 50.500000 | 144.000000 | 49.500000 | 533.857143 | 37.057143 | 22.600000 | 60.742857 | 4.728571 | 12.771429 | 17.871429 | 47.971429 | 14.485714 | 39.257143 | 35.857143 | 23.514286 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.781574 | -73.977370 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 65.000000 | 47.000000 | 2.000000 | 400.000000 | 22.000000 | 15.000000 | 6.800000 | 6.400000 | 6.800000 | 7.200000 | 7.400000 | 7.300000 | 7.400000 | 8.100000 | 6.300000 | 5.500000 | 6.100000 | 6.600000 | 6.800000 | 6.400000 | 6.800000 | 7.300000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
83 | 03M479 | BEACON HIGH SCHOOL | 261.0 | 577.0 | 575.0 | 592.0 | 1744.0 | 0 | 166.0 | 197.0 | 140.0 | 267.588235 | 8.764706 | 31.082353 | 27.647059 | 33.235294 | 20112012.0 | 18.400000 | 1162.000000 | 304.00000 | 310.000000 | 269.000000 | 279.000000 | 2.000000 | 0.200000 | 43.000000 | 3.700000 | 12.000000 | 0.000000 | 103.000000 | 8.900000 | 170.000000 | 14.600000 | 265.000000 | 22.800000 | 579.000000 | 49.800000 | 453.000000 | 39.000000 | 709.000000 | 61.000000 | 242.428571 | 91.157143 | 79.571429 | 87.057143 | 0.000000 | 0.000000 | 79.571429 | 87.057143 | 11.557143 | 12.942857 | 6.785714 | 1.442857 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 1276.00000 | Consortium School | French, Spanish | Biology, Calculus AB, Chemistry, Physics B, Sp... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 227 243 West 61St Street\nNew York, NY 10023\n... | 7.000000 | 6.000000 | 40.772158 | -73.987797 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 82.000000 | 80.000000 | 39.000000 | 934.000000 | 43.000000 | 440.000000 | 8.600000 | 7.900000 | 7.900000 | 8.300000 | 7.500000 | 6.200000 | 6.700000 | 7.500000 | 7.800000 | 7.200000 | 7.600000 | 8.200000 | 8.000000 | 7.100000 | 7.400000 | 8.000000 | 03 | DISTRICT 03 | 89.28 | 21962 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
84 | 03M485 | FIORELLO H. LAGUARDIA HIGH SCHOOL OF MUSIC & A... | 531.0 | 566.0 | 564.0 | 577.0 | 1707.0 | 0 | 691.0 | 1236.0 | 790.0 | 592.375000 | 18.500000 | 31.306250 | 25.125000 | 34.250000 | 20112012.0 | 21.700000 | 2605.000000 | 663.00000 | 706.000000 | 677.000000 | 559.000000 | 4.000000 | 0.200000 | 26.000000 | 1.000000 | 0.000000 | 0.000000 | 510.000000 | 19.600000 | 337.000000 | 12.900000 | 432.000000 | 16.600000 | 1281.000000 | 49.200000 | 688.000000 | 26.400000 | 1917.000000 | 73.600000 | 607.285714 | 95.057143 | 93.100000 | 97.871429 | 55.700000 | 58.385714 | 37.400000 | 39.500000 | 1.971429 | 2.128571 | 4.271429 | 0.528571 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 2730.00000 | Specialized School | French, Italian, Japanese, Spanish | Art History, Biology, Calculus AB, Calculus BC... | No courses | Spanish | 800.000000 | 400.000000 | 6.000000 | 100 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.773671 | -73.985269 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 93.000000 | 50.000000 | 28.000000 | 2345.000000 | 68.000000 | 701.000000 | 8.300000 | 7.200000 | 7.700000 | 7.600000 | 7.800000 | 6.300000 | 6.700000 | 7.300000 | 7.100000 | 5.900000 | 6.600000 | 7.600000 | 7.700000 | 6.500000 | 7.000000 | 7.500000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
85 | 03M492 | HIGH SCHOOL FOR LAW, ADVOCACY AND COMMUNITY JU... | 66.0 | 396.0 | 398.0 | 402.0 | 1196.0 | 0 | 0.0 | 0.0 | 0.0 | 93.517241 | 4.379310 | 20.155172 | 17.000000 | 23.620690 | 20112012.0 | 79.900000 | 541.000000 | 189.00000 | 155.000000 | 114.000000 | 83.000000 | 57.000000 | 10.500000 | 84.000000 | 15.500000 | 7.000000 | 38.000000 | 7.000000 | 1.300000 | 250.000000 | 46.200000 | 260.000000 | 48.100000 | 10.000000 | 1.800000 | 217.000000 | 40.100000 | 324.000000 | 59.900000 | 107.000000 | 66.000000 | 45.333333 | 66.916667 | 6.600000 | 9.066667 | 38.766667 | 57.850000 | 20.633333 | 33.083333 | 20.083333 | 12.500000 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 531.00000 | Traditional | French, Spanish | English Literature and Composition, Environmen... | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 122 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.774296 | -73.984823 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 80.000000 | 91.000000 | 67.000000 | 385.000000 | 39.000000 | 323.000000 | 9.100000 | 7.600000 | 7.600000 | 8.200000 | 6.700000 | 6.100000 | 6.500000 | 7.000000 | 6.200000 | 6.000000 | 6.200000 | 7.400000 | 7.300000 | 6.600000 | 6.800000 | 7.600000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
86 | 03M494 | HIGH SCHOOL OF ARTS AND TECHNOLOGY | 75.0 | 433.0 | 433.0 | 411.0 | 1277.0 | 0 | 38.0 | 38.0 | 6.0 | 86.434783 | 3.173913 | 24.260870 | 20.478261 | 26.608696 | 20112012.0 | 79.800000 | 603.000000 | 176.00000 | 170.000000 | 125.000000 | 132.000000 | 63.000000 | 10.400000 | 104.000000 | 17.200000 | 28.000000 | 26.000000 | 30.000000 | 5.000000 | 210.000000 | 34.800000 | 345.000000 | 57.200000 | 14.000000 | 2.300000 | 408.000000 | 67.700000 | 195.000000 | 32.300000 | 128.428571 | 61.900000 | 44.233333 | 70.683333 | 3.466667 | 5.466667 | 40.733333 | 65.250000 | 17.683333 | 29.316667 | 22.750000 | 10.966667 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 588.00000 | Traditional | Spanish | Art History, Biology, Psychology, Studio Art: ... | No courses | English | 800.000000 | 245.000000 | 2.000000 | 122 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.774296 | -73.984823 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 83.000000 | 25.000000 | 502.000000 | 29.000000 | 138.000000 | 8.300000 | 7.500000 | 7.600000 | 7.900000 | 5.600000 | 3.800000 | 5.100000 | 5.300000 | 6.400000 | 5.800000 | 6.500000 | 7.100000 | 6.800000 | 5.700000 | 6.400000 | 6.800000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
87 | 03M505 | EDWARD A. REYNOLDS WEST SIDE HIGH SCHOOL | 35.0 | 401.0 | 369.0 | 351.0 | 1121.0 | 0 | 0.0 | 0.0 | 0.0 | 95.631579 | 4.368421 | 20.536842 | 17.210526 | 24.578947 | 20112012.0 | 70.500000 | 564.000000 | 3.00000 | 224.000000 | 257.000000 | 80.000000 | 44.000000 | 7.800000 | 130.000000 | 23.000000 | 49.000000 | 20.000000 | 3.000000 | 0.500000 | 195.000000 | 34.600000 | 363.000000 | 64.400000 | 3.000000 | 0.500000 | 250.000000 | 44.300000 | 314.000000 | 55.700000 | 241.714286 | 20.757143 | 6.600000 | 26.985714 | 0.142857 | 0.514286 | 6.457143 | 26.471429 | 14.142857 | 73.014286 | 64.528571 | 13.042857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.781574 | -73.977370 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 95.000000 | 15.000000 | 248.000000 | 42.000000 | 61.000000 | 8.600000 | 7.700000 | 7.700000 | 8.000000 | 7.100000 | 5.500000 | 6.600000 | 7.300000 | 7.400000 | 6.100000 | 6.900000 | 7.500000 | 7.700000 | 6.400000 | 7.100000 | 7.600000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
88 | 03M541 | MANHATTAN / HUNTER SCIENCE HIGH SCHOOL | 111.0 | 473.0 | 506.0 | 467.0 | 1446.0 | 0 | 0.0 | 0.0 | 0.0 | 114.785714 | 5.357143 | 21.600000 | 16.928571 | 26.428571 | 20112012.0 | 55.200000 | 453.000000 | 106.00000 | 120.000000 | 113.000000 | 114.000000 | 6.000000 | 1.300000 | 17.000000 | 3.800000 | 0.000000 | 0.000000 | 116.000000 | 25.600000 | 97.000000 | 21.400000 | 188.000000 | 41.500000 | 46.000000 | 10.200000 | 186.000000 | 41.100000 | 267.000000 | 58.900000 | 96.600000 | 92.260000 | 90.420000 | 98.020000 | 37.920000 | 41.000000 | 52.480000 | 57.020000 | 1.840000 | 1.980000 | 6.020000 | 1.780000 | Manhattan | 9.000000 | 12.0 | New York | 10023.00000 | 460.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 230.000000 | 1.000000 | 122 Amsterdam Avenue\nNew York, NY 10023\n(40.... | 7.000000 | 6.000000 | 40.774296 | -73.984823 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 93.000000 | 39.000000 | 427.000000 | 26.000000 | 173.000000 | 8.700000 | 7.700000 | 7.700000 | 8.100000 | 8.100000 | 6.800000 | 7.500000 | 8.100000 | 7.300000 | 6.500000 | 6.900000 | 7.600000 | 8.000000 | 7.000000 | 7.300000 | 7.900000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
89 | 03M577 | YOUNG ADULT BOROUGH CENTER AT LOUIS D. BRANDEI... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.781574 | -73.977370 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 48.000000 | 63.000000 | 0.000000 | 19.000000 | 10.000000 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 8.200000 | 7.300000 | 8.300000 | 8.300000 | 7.500000 | 6.100000 | 7.200000 | 7.600000 | 7.900000 | 6.700000 | 7.800000 | 8.000000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
90 | 03M860 | FREDERICK DOUGLASS ACADEMY II SECONDARY SCHOOL | 43.0 | 356.0 | 379.0 | 361.0 | 1096.0 | 0 | 11.0 | 11.0 | 0.0 | 62.500000 | 2.866667 | 22.343333 | 19.900000 | 24.633333 | 20112012.0 | 64.200000 | 413.000000 | 95.00000 | 75.000000 | 71.000000 | 59.000000 | 24.000000 | 5.800000 | 86.000000 | 20.800000 | 36.000000 | 24.000000 | 3.000000 | 0.700000 | 321.000000 | 77.700000 | 78.000000 | 18.900000 | 6.000000 | 1.500000 | 224.000000 | 54.200000 | 189.000000 | 45.800000 | 45.500000 | 70.540000 | 55.740000 | 79.340000 | 15.980000 | 22.440000 | 39.720000 | 56.900000 | 14.800000 | 20.680000 | 17.080000 | 7.440000 | Manhattan | 6.000000 | 12.0 | New York | 10026.00000 | 429.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 215 West 114 Street\nNew York, NY 10026\n(40.8... | 10.000000 | 9.000000 | 40.802175 | -73.954009 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 83.000000 | 47.000000 | 343.000000 | 24.000000 | 176.000000 | 7.800000 | 7.400000 | 7.200000 | 7.300000 | 5.500000 | 5.000000 | 5.500000 | 6.100000 | 5.800000 | 5.800000 | 5.900000 | 7.000000 | 6.400000 | 6.100000 | 6.200000 | 6.800000 | 03 | DISTRICT 03 | 89.28 | 21962 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
91 | 04M409 | COALITION SCHOOL FOR SOCIAL CHANGE | 48.0 | 354.0 | 357.0 | 373.0 | 1084.0 | 0 | 18.0 | 18.0 | 0.0 | 71.434783 | 3.434783 | 21.795652 | 17.782609 | 25.739130 | 20112012.0 | 71.800000 | 349.000000 | 122.00000 | 91.000000 | 72.000000 | 64.000000 | 34.000000 | 9.700000 | 85.000000 | 24.400000 | 42.000000 | 17.000000 | 3.000000 | 0.900000 | 137.000000 | 39.300000 | 205.000000 | 58.700000 | 3.000000 | 0.900000 | 155.000000 | 44.400000 | 194.000000 | 55.600000 | 76.000000 | 67.100000 | 39.500000 | 58.850000 | 1.300000 | 1.950000 | 38.200000 | 56.900000 | 27.600000 | 41.150000 | 11.850000 | 13.200000 | Manhattan | 9.000000 | 12.0 | New York | 10035.00000 | 311.00000 | Traditional | Spanish | Biology, English Literature and Composition, U... | No courses | No courses | 845.000000 | 330.000000 | 1.000000 | 2351 1St Avenue\nNew York, NY 10035\n(40.79886... | 11.000000 | 8.000000 | 40.798865 | -73.933366 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 100.000000 | 47.000000 | 321.000000 | 32.000000 | 174.000000 | 8.200000 | 7.700000 | 7.700000 | 8.200000 | 8.500000 | 8.700000 | 9.100000 | 9.000000 | 6.600000 | 6.100000 | 6.600000 | 7.200000 | 7.800000 | 7.500000 | 7.800000 | 8.100000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
92 | 04M435 | MANHATTAN CENTER FOR SCIENCE AND MATHEMATICS | 375.0 | 461.0 | 514.0 | 455.0 | 1430.0 | 0 | 328.0 | 426.0 | 261.0 | 223.729730 | 7.297297 | 26.770270 | 23.135135 | 28.432432 | 20112012.0 | 71.600000 | 1650.000000 | 362.00000 | 424.000000 | 456.000000 | 408.000000 | 44.000000 | 2.700000 | 95.000000 | 5.800000 | 37.000000 | 29.000000 | 332.000000 | 20.100000 | 325.000000 | 19.700000 | 947.000000 | 57.400000 | 37.000000 | 2.200000 | 765.000000 | 46.400000 | 885.000000 | 53.600000 | 377.714286 | 80.271429 | 75.214286 | 93.657143 | 52.642857 | 65.714286 | 22.585714 | 27.942857 | 5.071429 | 6.342857 | 12.700000 | 4.371429 | Manhattan | 9.000000 | 12.0 | New York | 10029.00000 | 1588.00000 | Traditional | Chinese (Mandarin), French, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 815.000000 | 240.000000 | 2.000000 | 260 Pleasant Avenue\nNew York, NY 10029\n(40.7... | 11.000000 | 8.000000 | 40.793742 | -73.934084 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 92.000000 | 88.000000 | 22.000000 | 1546.000000 | 72.000000 | 370.000000 | 7.900000 | 7.000000 | 7.200000 | 7.400000 | 7.200000 | 4.700000 | 5.700000 | 6.600000 | 6.600000 | 5.500000 | 6.500000 | 7.200000 | 7.200000 | 5.700000 | 6.400000 | 7.000000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
93 | 04M495 | PARK EAST HIGH SCHOOL | 51.0 | 373.0 | 379.0 | 376.0 | 1128.0 | 0 | 0.0 | 0.0 | 0.0 | 98.105263 | 5.052632 | 19.363158 | 15.526316 | 22.473684 | 20112012.0 | 76.800000 | 349.000000 | 110.00000 | 96.000000 | 80.000000 | 63.000000 | 15.000000 | 4.300000 | 37.000000 | 10.600000 | 21.000000 | 3.000000 | 17.000000 | 4.900000 | 116.000000 | 33.200000 | 208.000000 | 59.600000 | 1.000000 | 0.300000 | 147.000000 | 42.100000 | 202.000000 | 57.900000 | 82.142857 | 64.942857 | 30.028571 | 46.600000 | 3.171429 | 5.371429 | 26.857143 | 41.228571 | 34.885714 | 53.400000 | 22.914286 | 9.842857 | Manhattan | 9.000000 | 12.0 | New York | 10029.00000 | 409.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 845.000000 | 315.000000 | 1.000000 | 230 East 105 Street\nNew York, NY 10029\n(40.7... | 11.000000 | 8.000000 | 40.790563 | -73.944454 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 100.000000 | 41.000000 | 303.000000 | 32.000000 | 137.000000 | 8.600000 | 7.700000 | 7.400000 | 7.900000 | 7.600000 | 6.800000 | 7.000000 | 7.500000 | 7.000000 | 6.300000 | 6.900000 | 7.600000 | 7.700000 | 6.900000 | 7.100000 | 7.700000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
94 | 04M555 | CENTRAL PARK EAST HIGH SCHOOL | 73.0 | 405.0 | 421.0 | 395.0 | 1221.0 | 0 | 0.0 | 0.0 | 0.0 | 71.769231 | 2.769231 | 26.453846 | 23.653846 | 28.615385 | 20112012.0 | 70.400000 | 445.000000 | 116.00000 | 156.000000 | 88.000000 | 85.000000 | 18.000000 | 4.000000 | 60.000000 | 13.500000 | 44.000000 | 5.000000 | 29.000000 | 6.500000 | 119.000000 | 26.700000 | 287.000000 | 64.500000 | 7.000000 | 1.600000 | 143.000000 | 32.100000 | 302.000000 | 67.900000 | 65.285714 | 53.228571 | 25.171429 | 42.642857 | 0.457143 | 0.657143 | 24.714286 | 41.985714 | 28.085714 | 57.357143 | 28.142857 | 15.471429 | Manhattan | 9.000000 | 12.0 | New York | 10029.00000 | 479.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | Spanish | 830.000000 | 320.000000 | 1.000000 | 1573 Madison Avenue\nNew York, NY 10029\n(40.7... | 11.000000 | 8.000000 | 40.793679 | -73.949416 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 85.000000 | 22.000000 | 342.000000 | 22.000000 | 88.000000 | 8.600000 | 8.000000 | 7.700000 | 8.300000 | 8.000000 | 7.800000 | 8.000000 | 8.400000 | 6.600000 | 5.800000 | 6.000000 | 7.400000 | 7.800000 | 7.200000 | 7.300000 | 8.100000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
95 | 04M610 | YOUNG WOMEN'S LEADERSHIP SCHOOL | 70.0 | 432.0 | 446.0 | 448.0 | 1326.0 | 0 | 41.0 | 55.0 | 29.0 | 68.294118 | 2.705882 | 25.711765 | 23.000000 | 27.941176 | 20112012.0 | 67.300000 | 449.000000 | 77.00000 | 78.000000 | 68.000000 | 65.000000 | 10.000000 | 2.200000 | 30.000000 | 6.700000 | 3.000000 | 0.000000 | 23.000000 | 5.100000 | 140.000000 | 31.200000 | 270.000000 | 60.100000 | 7.000000 | 1.600000 | 0.000000 | 0.000000 | 449.000000 | 100.000000 | 57.285714 | 98.228571 | 79.371429 | 80.785714 | 15.971429 | 16.242857 | 63.428571 | 64.557143 | 18.871429 | 19.214286 | 1.771429 | 0.000000 | Manhattan | 6.000000 | 12.0 | New York | 10029.00000 | 464.00000 | All-Girls School | Spanish | English Literature and Composition, Spanish La... | No courses | No courses | 845.000000 | 315.000000 | 1.000000 | 105 East 106 Street\nNew York, NY 10029\n(40.7... | 11.000000 | 8.000000 | 40.792707 | -73.947300 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 96.000000 | 53.000000 | 380.000000 | 24.000000 | 221.000000 | 8.800000 | 8.100000 | 7.800000 | 8.300000 | 8.900000 | 8.300000 | 8.500000 | 9.000000 | 7.500000 | 6.600000 | 7.200000 | 8.300000 | 8.400000 | 7.700000 | 7.800000 | 8.500000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
96 | 04M635 | ACADEMY OF ENVIRONMENTAL SCIENCE SECONDARY HIG... | 48.0 | 369.0 | 369.0 | 357.0 | 1095.0 | 0 | 0.0 | 0.0 | 0.0 | 65.250000 | 2.500000 | 25.787500 | 22.937500 | 28.687500 | 20112012.0 | 62.700000 | 192.000000 | 13.00000 | 70.000000 | 49.000000 | 60.000000 | 26.000000 | 13.500000 | 36.000000 | 18.800000 | 7.000000 | 14.000000 | 8.000000 | 4.200000 | 53.000000 | 27.600000 | 126.000000 | 65.600000 | 4.000000 | 2.100000 | 119.000000 | 62.000000 | 73.000000 | 38.000000 | 69.714286 | 51.414286 | 22.300000 | 43.914286 | 1.728571 | 3.242857 | 20.571429 | 40.657143 | 29.128571 | 56.085714 | 31.528571 | 14.742857 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.793572 | -73.942534 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 95.000000 | 86.000000 | 235.000000 | 19.000000 | 211.000000 | 7.400000 | 7.300000 | 7.100000 | 7.400000 | 6.400000 | 5.300000 | 5.600000 | 6.100000 | 6.400000 | 5.900000 | 6.300000 | 6.900000 | 6.700000 | 6.200000 | 6.300000 | 6.800000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
97 | 04M680 | HERITAGE SCHOOL, THE | 31.0 | 358.0 | 351.0 | 345.0 | 1054.0 | 0 | 0.0 | 0.0 | 0.0 | 54.454545 | 2.590909 | 22.031818 | 19.090909 | 24.863636 | 20112012.0 | 71.800000 | 294.000000 | 133.00000 | 121.000000 | 23.000000 | 17.000000 | 20.000000 | 6.800000 | 73.000000 | 24.800000 | 33.000000 | 12.000000 | 1.000000 | 0.300000 | 85.000000 | 28.900000 | 204.000000 | 69.400000 | 3.000000 | 1.000000 | 143.000000 | 48.600000 | 151.000000 | 51.400000 | 68.142857 | 58.671429 | 36.614286 | 62.000000 | 5.871429 | 9.757143 | 30.757143 | 52.242857 | 22.042857 | 38.000000 | 28.657143 | 11.471429 | Manhattan | 9.000000 | 12.0 | New York | 10029.00000 | 351.00000 | Traditional | Spanish, Spanish Native Language Arts | Calculus AB, Spanish Literature and Culture, U... | No courses | No courses | 830.000000 | 339.000000 | 1.000000 | 1680 Lexington Avenue\nNew York, NY 10029\n(40... | 11.000000 | 8.000000 | 40.791880 | -73.946586 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 84.000000 | 51.000000 | 262.000000 | 21.000000 | 141.000000 | 7.800000 | 7.000000 | 6.900000 | 7.100000 | 6.000000 | 4.700000 | 5.200000 | 5.700000 | 6.400000 | 5.900000 | 6.400000 | 7.000000 | 6.700000 | 5.900000 | 6.100000 | 6.600000 | 04 | DISTRICT 04 | 91.13 | 14252 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
98 | 05M285 | HARLEM RENAISSANCE HIGH SCHOOL | 29.0 | 357.0 | 318.0 | 333.0 | 1008.0 | 0 | 0.0 | 0.0 | 0.0 | 42.307692 | 2.538462 | 17.730769 | 16.230769 | 19.692308 | 20112012.0 | 67.600000 | 222.000000 | 63.00000 | 90.000000 | 41.000000 | 28.000000 | 21.000000 | 9.500000 | 24.000000 | 10.800000 | 12.000000 | 1.000000 | 1.000000 | 0.500000 | 138.000000 | 62.200000 | 82.000000 | 36.900000 | 1.000000 | 0.500000 | 87.000000 | 39.200000 | 135.000000 | 60.800000 | 64.000000 | 7.616667 | 2.683333 | 25.350000 | 0.000000 | 0.000000 | 2.683333 | 25.350000 | 4.966667 | 74.650000 | 63.483333 | 27.250000 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.817077 | -73.949251 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 68.000000 | 94.000000 | 22.000000 | 117.000000 | 16.000000 | 37.000000 | 8.800000 | 8.100000 | 8.000000 | 8.200000 | 7.400000 | 6.900000 | 7.600000 | 7.600000 | 7.000000 | 6.200000 | 6.900000 | 7.500000 | 7.700000 | 7.100000 | 7.500000 | 7.800000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
99 | 05M304 | MOTT HALL HIGH SCHOOL | 54.0 | 413.0 | 399.0 | 398.0 | 1210.0 | 0 | 11.0 | 11.0 | 0.0 | 92.000000 | 3.636364 | 26.777273 | 22.181818 | 31.045455 | 20112012.0 | 78.500000 | 426.000000 | 127.00000 | 120.000000 | 97.000000 | 82.000000 | 37.000000 | 8.700000 | 66.000000 | 15.500000 | 18.000000 | 12.000000 | 4.000000 | 0.900000 | 149.000000 | 35.000000 | 272.000000 | 63.800000 | 1.000000 | 0.200000 | 228.000000 | 53.500000 | 198.000000 | 46.500000 | 62.500000 | 71.375000 | 67.650000 | 94.825000 | 5.575000 | 7.825000 | 62.075000 | 87.000000 | 3.775000 | 5.175000 | 17.475000 | 6.425000 | Manhattan | 9.000000 | 12.0 | New York | 10030.00000 | 425.00000 | Traditional | French, Spanish | English Literature and Composition, Spanish La... | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 6 Edgecombe Avenue\nNew York, NY 10030\n(40.81... | 10.000000 | 9.000000 | 40.817361 | -73.947708 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 99.000000 | 88.000000 | 66.000000 | 377.000000 | 22.000000 | 240.000000 | 8.300000 | 7.300000 | 7.200000 | 7.300000 | 7.200000 | 6.300000 | 5.900000 | 7.100000 | 6.200000 | 6.000000 | 6.200000 | 7.200000 | 7.200000 | 6.500000 | 6.400000 | 7.200000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
100 | 05M362 | COLUMBIA SECONDARY SCHOOL FOR MATH, SCIENCE, A... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 84.666667 | 2.833333 | 25.366667 | 24.500000 | 25.833333 | 20112012.0 | 46.300000 | 474.000000 | 91.00000 | 95.000000 | 155.308756 | 147.334928 | 3.000000 | 0.600000 | 2.000000 | 0.400000 | 1.000000 | 0.000000 | 55.000000 | 11.600000 | 95.000000 | 20.000000 | 230.000000 | 48.500000 | 87.000000 | 18.400000 | 235.000000 | 49.600000 | 239.000000 | 50.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 6.000000 | 12.0 | New York | 10027.00000 | 664.00000 | Traditional | Latin, Spanish, Spanish Native Language Arts | Biology, English Literature and Composition, S... | No courses | No courses | 800.000000 | 400.000000 | 1.000000 | 425 West 123 Street\nNew York, NY 10027\n(40.8... | 9.000000 | 7.000000 | 40.810918 | -73.956927 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 90.000000 | 44.000000 | 343.000000 | 18.000000 | 159.000000 | 7.800000 | 7.700000 | 7.500000 | 8.100000 | 7.300000 | 6.900000 | 7.100000 | 8.300000 | 6.900000 | 6.800000 | 7.000000 | 7.400000 | 7.300000 | 7.100000 | 7.200000 | 7.900000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
101 | 05M367 | ACADEMY FOR SOCIAL ACTION: A COLLEGE BOARD SCHOOL | 33.0 | 354.0 | 366.0 | 342.0 | 1062.0 | 0 | 17.0 | 17.0 | 0.0 | 50.500000 | 2.181818 | 23.595455 | 21.272727 | 25.909091 | 20112012.0 | 67.000000 | 425.000000 | 92.00000 | 79.000000 | 74.000000 | 43.000000 | 42.000000 | 9.900000 | 92.000000 | 21.600000 | 64.000000 | 2.000000 | 2.000000 | 0.500000 | 261.000000 | 61.400000 | 162.000000 | 38.100000 | 0.000000 | 0.000000 | 207.000000 | 48.700000 | 218.000000 | 51.300000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10027.00000 | 309.00000 | Traditional | Spanish | Art History, Calculus AB, English Language and... | No courses | No courses | 835.000000 | 345.000000 | 1.000000 | 509 West 129 Street\nNew York, NY 10027\n(40.8... | 9.000000 | 7.000000 | 40.815230 | -73.955201 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 71.000000 | 31.000000 | 285.000000 | 25.000000 | 118.000000 | 8.100000 | 7.400000 | 7.300000 | 7.700000 | 6.200000 | 5.900000 | 6.500000 | 7.200000 | 5.700000 | 5.600000 | 6.100000 | 6.900000 | 6.700000 | 6.300000 | 6.600000 | 7.300000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
102 | 05M369 | URBAN ASSEMBLY SCHOOL FOR THE PERFORMING ARTS | 56.0 | 360.0 | 353.0 | 364.0 | 1077.0 | 0 | 0.0 | 0.0 | 0.0 | 71.954545 | 2.954545 | 25.104545 | 22.772727 | 27.590909 | 20112012.0 | 77.700000 | 374.000000 | 149.00000 | 87.000000 | 74.000000 | 64.000000 | 23.000000 | 6.100000 | 62.000000 | 16.600000 | 25.000000 | 12.000000 | 2.000000 | 0.500000 | 221.000000 | 59.100000 | 143.000000 | 38.200000 | 3.000000 | 0.800000 | 95.000000 | 25.400000 | 279.000000 | 74.600000 | 41.666667 | 71.000000 | 68.550000 | 96.650000 | 0.000000 | 0.000000 | 68.550000 | 96.650000 | 2.400000 | 3.350000 | 12.900000 | 16.100000 | Manhattan | 9.000000 | 12.0 | New York | 10027.00000 | 354.00000 | Traditional | Spanish | No courses | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 509 West 129 Street\nNew York, NY 10027\n(40.8... | 9.000000 | 7.000000 | 40.815230 | -73.955201 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 92.000000 | 45.000000 | 281.000000 | 23.000000 | 143.000000 | 7.300000 | 6.600000 | 6.800000 | 7.100000 | 5.400000 | 4.000000 | 4.700000 | 4.800000 | 5.200000 | 5.200000 | 5.500000 | 6.400000 | 6.000000 | 5.300000 | 5.700000 | 6.100000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
103 | 05M469 | CHOIR ACADEMY OF HARLEM | 20.0 | 354.0 | 360.0 | 385.0 | 1099.0 | 0 | 6.0 | 6.0 | 0.0 | 45.375000 | 2.062500 | 22.550000 | 18.562500 | 26.375000 | 20112012.0 | 81.900000 | 347.000000 | 39.00000 | 30.000000 | 34.000000 | 52.000000 | 7.000000 | 2.000000 | 46.000000 | 13.300000 | 1.000000 | 25.000000 | 1.000000 | 0.300000 | 264.000000 | 76.100000 | 78.000000 | 22.500000 | 2.000000 | 0.600000 | 138.000000 | 39.800000 | 209.000000 | 60.200000 | 50.714286 | 66.657143 | 25.071429 | 39.471429 | 0.657143 | 1.100000 | 24.414286 | 38.385714 | 41.571429 | 60.528571 | 25.200000 | 5.657143 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.817077 | -73.949251 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 63.000000 | 34.000000 | 313.000000 | 20.000000 | 107.000000 | 8.400000 | 8.100000 | 7.900000 | 7.900000 | 7.300000 | 7.000000 | 7.700000 | 7.900000 | 6.000000 | 5.800000 | 6.400000 | 7.000000 | 7.200000 | 7.000000 | 7.300000 | 7.600000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
104 | 05M499 | FREDERICK DOUGLASS ACADEMY | 214.0 | 458.0 | 474.0 | 442.0 | 1374.0 | 0 | 163.0 | 226.0 | 159.0 | 261.400000 | 9.850000 | 26.255000 | 19.450000 | 31.950000 | 20112012.0 | 57.600000 | 1556.000000 | 333.00000 | 316.000000 | 292.000000 | 258.000000 | 38.000000 | 2.400000 | 138.000000 | 8.900000 | 59.000000 | 45.000000 | 18.000000 | 1.200000 | 1158.000000 | 74.400000 | 355.000000 | 22.800000 | 21.000000 | 1.300000 | 812.000000 | 52.200000 | 744.000000 | 47.800000 | 205.714286 | 81.085714 | 75.457143 | 93.000000 | 31.085714 | 37.785714 | 44.371429 | 55.228571 | 5.628571 | 7.000000 | 12.985714 | 3.557143 | Manhattan | 6.000000 | 12.0 | New York | 10039.00000 | 1489.00000 | Traditional | French, Japanese, Latin, Spanish | Biology, Calculus AB, Chemistry, English Langu... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 2581 7Th Avenue\nNew York, NY 10039\n(40.82430... | 10.000000 | 9.000000 | 40.824308 | -73.936980 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 71.000000 | 58.000000 | 20.000000 | 1049.000000 | 50.000000 | 285.000000 | 7.800000 | 7.300000 | 7.400000 | 7.500000 | 6.400000 | 5.700000 | 6.000000 | 6.700000 | 5.700000 | 5.300000 | 6.300000 | 7.300000 | 6.600000 | 6.100000 | 6.600000 | 7.200000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
105 | 05M670 | THURGOOD MARSHALL ACADEMY FOR LEARNING AND SOC... | 66.0 | 396.0 | 402.0 | 404.0 | 1202.0 | 0 | 37.0 | 38.0 | 0.0 | 60.444444 | 2.592593 | 23.366667 | 21.444444 | 25.518519 | 20112012.0 | 65.100000 | 580.000000 | 114.00000 | 102.000000 | 97.000000 | 82.000000 | 8.000000 | 1.400000 | 58.000000 | 10.000000 | 39.000000 | 0.000000 | 1.000000 | 0.200000 | 453.000000 | 78.100000 | 121.000000 | 20.900000 | 1.000000 | 0.200000 | 256.000000 | 44.100000 | 324.000000 | 55.900000 | 82.142857 | 76.185714 | 44.771429 | 59.171429 | 1.328571 | 1.571429 | 43.457143 | 57.585714 | 31.400000 | 40.828571 | 14.714286 | 6.485714 | Manhattan | 6.000000 | 12.0 | New York | 10030.00000 | 572.00000 | Traditional | French, Spanish | Biology | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 200 214 West 135Th Street\nNew York, NY 10030\... | 10.000000 | 9.000000 | 40.815365 | -73.943897 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 72.000000 | 73.000000 | 35.000000 | 405.000000 | 27.000000 | 184.000000 | 8.500000 | 7.600000 | 7.700000 | 7.800000 | 6.900000 | 5.800000 | 6.200000 | 6.800000 | 6.700000 | 6.400000 | 6.700000 | 7.600000 | 7.400000 | 6.600000 | 6.900000 | 7.400000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
106 | 05M685 | BREAD & ROSES INTEGRATED ARTS HIGH SCHOOL | 61.0 | 369.0 | 361.0 | 355.0 | 1085.0 | 0 | 0.0 | 0.0 | 0.0 | 79.192308 | 3.500000 | 19.719231 | 16.769231 | 22.346154 | 20112012.0 | 71.800000 | 524.000000 | 176.00000 | 201.000000 | 67.000000 | 80.000000 | 92.000000 | 17.600000 | 110.000000 | 21.000000 | 12.000000 | 60.000000 | 2.000000 | 0.400000 | 279.000000 | 53.200000 | 238.000000 | 45.400000 | 3.000000 | 0.600000 | 256.000000 | 48.900000 | 268.000000 | 51.100000 | 100.571429 | 49.700000 | 32.757143 | 65.228571 | 0.314286 | 0.557143 | 32.442857 | 64.671429 | 16.971429 | 34.771429 | 28.585714 | 15.600000 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.817077 | -73.949251 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 80.000000 | 46.000000 | 346.000000 | 24.000000 | 221.000000 | 8.200000 | 7.100000 | 7.100000 | 7.100000 | 5.800000 | 5.900000 | 5.900000 | 6.600000 | 5.500000 | 5.200000 | 5.500000 | 6.600000 | 6.500000 | 6.100000 | 6.200000 | 6.800000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
107 | 05M692 | HIGH SCHOOL FOR MATHEMATICS, SCIENCE AND ENGIN... | 101.0 | 605.0 | 654.0 | 588.0 | 1847.0 | 0 | 114.0 | 124.0 | 71.0 | 114.125000 | 5.250000 | 21.681250 | 17.437500 | 25.625000 | 20112012.0 | 18.500000 | 406.000000 | 117.00000 | 96.000000 | 95.000000 | 98.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 147.000000 | 36.200000 | 61.000000 | 15.000000 | 86.000000 | 21.200000 | 106.000000 | 26.100000 | 267.000000 | 65.800000 | 139.000000 | 34.200000 | 100.500000 | 82.166667 | 82.166667 | 100.000000 | 73.483333 | 91.216667 | 8.650000 | 8.783333 | 0.000000 | 0.000000 | 1.416667 | 0.350000 | Manhattan | 9.000000 | 12.0 | New York | 10031.00000 | 456.00000 | Specialized School | German, Spanish | Calculus AB, Calculus BC, Chemistry, Computer ... | No courses | No courses | 800.000000 | 335.000000 | 1.000000 | 240 Convent Ave\nNew York, NY 10031\n(40.82112... | 9.000000 | 9.000000 | 40.821123 | -73.948845 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 83.000000 | 42.000000 | 357.000000 | 29.000000 | 165.000000 | 8.800000 | 7.500000 | 7.600000 | 8.300000 | 8.600000 | 6.600000 | 7.300000 | 7.800000 | 7.800000 | 6.700000 | 7.200000 | 8.200000 | 8.400000 | 7.000000 | 7.300000 | 8.100000 | 05 | DISTRICT 05 | 89.08 | 13170 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
108 | 06M293 | CITY COLLEGE ACADEMY OF THE ARTS | 60.0 | 408.0 | 446.0 | 416.0 | 1270.0 | 0 | 0.0 | 0.0 | 0.0 | 67.818182 | 2.772727 | 25.477273 | 21.636364 | 28.590909 | 20112012.0 | 71.600000 | 586.000000 | 90.00000 | 91.000000 | 78.000000 | 56.000000 | 36.000000 | 6.100000 | 77.000000 | 13.100000 | 59.000000 | 0.000000 | 4.000000 | 0.700000 | 35.000000 | 6.000000 | 539.000000 | 92.000000 | 7.000000 | 1.200000 | 232.000000 | 39.600000 | 354.000000 | 60.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 6.000000 | 12.0 | New York | 10040.00000 | 593.00000 | Traditional | Spanish | No courses | No courses | No courses | 815.000000 | 400.000000 | 1.000000 | 4600 Broadway\nNew York, NY 10040\n(40.8611133... | 12.000000 | 10.000000 | 40.861113 | -73.930452 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 77.000000 | 64.000000 | 441.000000 | 30.000000 | 299.000000 | 9.000000 | 8.400000 | 8.400000 | 8.700000 | 8.500000 | 7.200000 | 7.800000 | 8.500000 | 7.800000 | 6.900000 | 7.700000 | 8.300000 | 8.400000 | 7.500000 | 8.000000 | 8.500000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
109 | 06M346 | COMMUNITY HEALTH ACADEMY OF THE HEIGHTS | 55.0 | 362.0 | 376.0 | 367.0 | 1105.0 | 0 | 0.0 | 0.0 | 0.0 | 98.562500 | 3.687500 | 26.618750 | 23.062500 | 30.187500 | 20112012.0 | 78.800000 | 520.000000 | 100.00000 | 93.000000 | 70.000000 | 53.000000 | 156.000000 | 30.000000 | 90.000000 | 17.300000 | 15.000000 | 16.000000 | 1.000000 | 0.200000 | 27.000000 | 5.200000 | 488.000000 | 93.800000 | 4.000000 | 0.800000 | 272.000000 | 52.300000 | 248.000000 | 47.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 6.000000 | 12.0 | New York | 10032.00000 | 600.00000 | Traditional | Spanish | English Language and Composition, Spanish Lite... | No courses | No courses | 815.000000 | 300.000000 | 1.000000 | 504 West 158Th Street\nNew York, NY 10032\n(40... | 12.000000 | 7.000000 | 40.833555 | -73.941804 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 95.000000 | 71.000000 | 426.000000 | 37.000000 | 305.000000 | 8.400000 | 7.500000 | 7.300000 | 7.700000 | 6.800000 | 5.000000 | 6.000000 | 6.400000 | 6.400000 | 6.000000 | 6.500000 | 7.300000 | 7.200000 | 6.200000 | 6.600000 | 7.100000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
110 | 06M348 | WASHINGTON HEIGHTS EXPEDITIONARY LEARNING SCHOOL | 70.0 | 380.0 | 395.0 | 399.0 | 1174.0 | 0 | 0.0 | 0.0 | 0.0 | 60.000000 | 2.176471 | 27.370588 | 24.294118 | 29.941176 | 20112012.0 | 87.500000 | 602.000000 | 88.00000 | 104.000000 | 89.000000 | 76.000000 | 118.000000 | 19.600000 | 109.000000 | 18.100000 | 76.000000 | 0.000000 | 0.000000 | 0.000000 | 14.000000 | 2.300000 | 582.000000 | 96.700000 | 2.000000 | 0.300000 | 336.000000 | 55.800000 | 266.000000 | 44.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 6.000000 | 12.0 | New York | 10033.00000 | 650.00000 | Traditional | Spanish | English Language and Composition, Spanish Lang... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 511 West 182Nd Street\nNew York, NY 10033\n(40... | 12.000000 | 10.000000 | 40.848879 | -73.930807 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 68.000000 | 70.000000 | 487.000000 | 26.000000 | 316.000000 | 8.800000 | 8.200000 | 7.600000 | 8.500000 | 8.500000 | 7.700000 | 7.800000 | 8.500000 | 7.500000 | 6.900000 | 7.100000 | 8.200000 | 8.300000 | 7.600000 | 7.500000 | 8.400000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
111 | 06M423 | HIGH SCHOOL FOR EXCELLENCE AND INNOVATION | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 53.800000 | 3.300000 | 16.680000 | 14.800000 | 19.500000 | 20112012.0 | 99.200000 | 178.000000 | 76.00000 | 48.000000 | 54.000000 | 147.334928 | 35.000000 | 19.700000 | 61.000000 | 34.300000 | 27.000000 | 10.000000 | 0.000000 | 0.000000 | 46.000000 | 25.800000 | 129.000000 | 72.500000 | 0.000000 | 0.000000 | 94.000000 | 52.800000 | 84.000000 | 47.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 9.000000 | 12.0 | New York | 10034.00000 | 223.00000 | Traditional | Spanish | English Literature and Composition | No courses | No courses | 845.000000 | 330.000000 | 1.000000 | 650 Academy Street\nNew York, NY 10034\n(40.86... | 12.000000 | 10.000000 | 40.866046 | -73.924857 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 73.000000 | 114.000000 | 13.000000 | 90.000000 | 9.200000 | 8.600000 | 8.200000 | 8.400000 | 8.200000 | 7.700000 | 8.300000 | 8.700000 | 7.600000 | 6.200000 | 6.500000 | 7.600000 | 8.300000 | 7.500000 | 7.700000 | 8.300000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
112 | 06M457 | GEORGE WASHINGTON YABC | 7.0 | 394.0 | 357.0 | 346.0 | 1097.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.848970 | -73.932502 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 54.000000 | 39.000000 | 132.000000 | 15.000000 | 79.000000 | 9.700000 | 9.500000 | 9.400000 | 9.500000 | 9.000000 | 8.700000 | 8.800000 | 8.900000 | 8.500000 | 7.000000 | 8.000000 | 8.500000 | 9.100000 | 8.400000 | 8.700000 | 9.000000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
113 | 06M462 | HIGH SCHOOL FOR INTERNATIONAL BUSINESS AND FIN... | 76.0 | 365.0 | 384.0 | 378.0 | 1127.0 | 0 | 108.0 | 135.0 | 43.0 | 171.375000 | 6.625000 | 26.037500 | 20.562500 | 30.500000 | 20112012.0 | 89.300000 | 630.000000 | 178.00000 | 154.000000 | 153.000000 | 145.000000 | 271.000000 | 43.000000 | 86.000000 | 13.700000 | 2.000000 | 46.000000 | 3.000000 | 0.500000 | 33.000000 | 5.200000 | 576.000000 | 91.400000 | 9.000000 | 1.400000 | 402.000000 | 63.800000 | 228.000000 | 36.200000 | 143.428571 | 68.400000 | 40.228571 | 58.542857 | 3.828571 | 5.228571 | 36.400000 | 53.314286 | 28.157143 | 41.457143 | 15.842857 | 9.500000 | Manhattan | 9.000000 | 12.0 | New York | 10040.00000 | 546.00000 | Traditional | English, Spanish | Biology, English Language and Composition, Spa... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 549 Audubon Avenue\nNew York, NY 10040\n(40.85... | 12.000000 | 10.000000 | 40.855938 | -73.927030 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 61.000000 | 67.000000 | 482.000000 | 22.000000 | 385.000000 | 8.200000 | 7.700000 | 7.600000 | 7.800000 | 7.200000 | 6.600000 | 6.100000 | 6.800000 | 7.100000 | 6.300000 | 6.800000 | 7.200000 | 7.500000 | 6.900000 | 6.800000 | 7.300000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
114 | 06M463 | HIGH SCHOOL FOR MEDIA AND COMMUNICATIONS | 63.0 | 369.0 | 380.0 | 349.0 | 1098.0 | 0 | 37.0 | 64.0 | 0.0 | 106.458333 | 4.458333 | 24.262500 | 19.833333 | 28.291667 | 20112012.0 | 83.800000 | 572.000000 | 212.00000 | 147.000000 | 90.000000 | 123.000000 | 154.000000 | 26.900000 | 97.000000 | 17.000000 | 55.000000 | 8.000000 | 6.000000 | 1.000000 | 61.000000 | 10.700000 | 498.000000 | 87.100000 | 3.000000 | 0.500000 | 363.000000 | 63.500000 | 209.000000 | 36.500000 | 138.571429 | 62.800000 | 41.657143 | 66.128571 | 5.357143 | 8.457143 | 36.285714 | 57.700000 | 21.042857 | 33.700000 | 23.428571 | 11.057143 | Manhattan | 9.000000 | 12.0 | New York | 10040.00000 | 523.00000 | Traditional | Spanish | Calculus AB, Comparative Government and Politi... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 549 Audubon Avenue\nNew York, NY 10040\n(40.85... | 12.000000 | 10.000000 | 40.855938 | -73.927030 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 95.000000 | 44.000000 | 446.000000 | 35.000000 | 226.000000 | 8.000000 | 7.700000 | 7.500000 | 7.700000 | 7.400000 | 6.800000 | 7.500000 | 7.800000 | 6.400000 | 5.700000 | 6.200000 | 7.200000 | 7.300000 | 6.800000 | 7.100000 | 7.600000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
115 | 06M467 | HIGH SCHOOL FOR LAW AND PUBLIC SERVICE | 94.0 | 363.0 | 378.0 | 361.0 | 1102.0 | 0 | 141.0 | 212.0 | 82.0 | 102.466667 | 4.133333 | 23.946667 | 20.366667 | 27.600000 | 20112012.0 | 72.500000 | 694.000000 | 287.00000 | 194.000000 | 98.000000 | 115.000000 | 222.000000 | 32.000000 | 116.000000 | 16.700000 | 45.000000 | 31.000000 | 7.000000 | 1.000000 | 90.000000 | 13.000000 | 586.000000 | 84.400000 | 9.000000 | 1.300000 | 407.000000 | 58.600000 | 287.000000 | 41.400000 | 147.428571 | 71.300000 | 48.071429 | 66.942857 | 6.228571 | 8.542857 | 41.842857 | 58.414286 | 23.228571 | 33.057143 | 16.700000 | 8.757143 | Manhattan | 9.000000 | 12.0 | New York | 10040.00000 | 679.00000 | Traditional | Spanish | Calculus AB, Chemistry, Comparative Government... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 549 Audubon Avenue\nNew York, NY 10040\n(40.85... | 12.000000 | 10.000000 | 40.855938 | -73.927030 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 67.000000 | 43.000000 | 451.000000 | 28.000000 | 255.000000 | 8.500000 | 8.200000 | 8.000000 | 8.300000 | 6.900000 | 6.500000 | 6.900000 | 7.600000 | 6.500000 | 6.000000 | 6.600000 | 7.400000 | 7.300000 | 6.900000 | 7.100000 | 7.800000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
116 | 06M468 | HIGH SCHOOL FOR HEALTH CAREERS AND SCIENCES | 24.0 | 400.0 | 422.0 | 402.0 | 1224.0 | 0 | 32.0 | 38.0 | 17.0 | 109.652174 | 3.956522 | 27.613043 | 23.695652 | 30.478261 | 20112012.0 | 90.700000 | 679.000000 | 231.00000 | 205.000000 | 116.000000 | 127.000000 | 212.000000 | 31.200000 | 94.000000 | 13.800000 | 42.000000 | 14.000000 | 5.000000 | 0.700000 | 93.000000 | 13.700000 | 569.000000 | 83.800000 | 7.000000 | 1.000000 | 358.000000 | 52.700000 | 321.000000 | 47.300000 | 147.857143 | 59.385714 | 32.357143 | 54.357143 | 6.000000 | 9.800000 | 26.385714 | 44.542857 | 27.000000 | 45.642857 | 19.985714 | 16.600000 | Manhattan | 9.000000 | 12.0 | New York | 10040.00000 | 624.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 549 Audubon Avenue\nNew York, NY 10040\n(40.85... | 12.000000 | 10.000000 | 40.855938 | -73.927030 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 47.000000 | 625.000000 | 44.000000 | 310.000000 | 8.300000 | 8.000000 | 7.700000 | 7.900000 | 7.000000 | 7.100000 | 7.500000 | 7.900000 | 6.400000 | 5.800000 | 6.500000 | 7.200000 | 7.200000 | 6.900000 | 7.200000 | 7.700000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
117 | 06M540 | A. PHILIP RANDOLPH CAMPUS HIGH SCHOOL | 228.0 | 430.0 | 456.0 | 423.0 | 1309.0 | 0 | 165.0 | 222.0 | 72.0 | 243.769231 | 8.307692 | 25.011538 | 20.423077 | 27.000000 | 20112012.0 | 76.300000 | 1285.000000 | 309.00000 | 391.000000 | 327.000000 | 258.000000 | 30.000000 | 2.300000 | 71.000000 | 5.500000 | 3.000000 | 43.000000 | 52.000000 | 4.000000 | 421.000000 | 32.800000 | 801.000000 | 62.300000 | 9.000000 | 0.700000 | 641.000000 | 49.900000 | 644.000000 | 50.100000 | 312.714286 | 69.142857 | 59.257143 | 84.757143 | 17.471429 | 24.742857 | 41.800000 | 60.028571 | 9.871429 | 15.242857 | 20.371429 | 8.200000 | Manhattan | 9.000000 | 12.0 | New York | 10031.00000 | 1360.00000 | Traditional | French, Spanish | Biology, Calculus AB, Computer Science A, Engl... | No courses | No courses | 800.000000 | 220.000000 | 4.000000 | 443 West 135 Street\nNew York, NY 10031\n(40.8... | 9.000000 | 9.000000 | 40.818321 | -73.950614 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 66.000000 | 100.000000 | 15.000000 | 945.000000 | 74.000000 | 208.000000 | 7.700000 | 7.200000 | 7.100000 | 7.200000 | 5.900000 | 5.000000 | 5.300000 | 6.000000 | 6.100000 | 5.500000 | 6.100000 | 7.000000 | 6.600000 | 5.900000 | 6.200000 | 6.800000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
118 | 06M552 | GREGORIO LUPERON HIGH SCHOOL FOR SCIENCE AND M... | 56.0 | 339.0 | 349.0 | 326.0 | 1014.0 | 0 | 88.0 | 138.0 | 73.0 | 163.615385 | 6.307692 | 25.430769 | 20.846154 | 29.538462 | 20112012.0 | 92.800000 | 472.000000 | 92.00000 | 111.000000 | 174.000000 | 95.000000 | 423.000000 | 89.600000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 471.000000 | 99.800000 | 0.000000 | 0.000000 | 231.000000 | 48.900000 | 241.000000 | 51.100000 | 87.857143 | 70.500000 | 36.142857 | 49.414286 | 6.828571 | 8.857143 | 29.328571 | 40.557143 | 34.357143 | 50.585714 | 17.757143 | 10.557143 | Manhattan | 9.000000 | 12.0 | New York | 10032.00000 | 491.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, Computer Scie... | United States Government and Politics | No courses | 800.000000 | 330.000000 | 1.000000 | 501 West 165Th\nNew York, NY 10032\n(40.838032... | 6.782016 | 22.237057 | 40.838032 | -73.938371 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 72.000000 | 52.000000 | 406.000000 | 21.000000 | 221.000000 | 9.200000 | 8.400000 | 8.100000 | 8.300000 | 8.500000 | 6.500000 | 7.400000 | 8.400000 | 7.700000 | 6.200000 | 7.000000 | 7.700000 | 8.500000 | 7.000000 | 7.500000 | 8.100000 | 06 | DISTRICT 06 | 91.34 | 25733 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
119 | 07X221 | SOUTH BRONX PREPARATORY: A COLLEGE BOARD SCHOOL | 65.0 | 364.0 | 378.0 | 348.0 | 1090.0 | 0 | 63.0 | 89.0 | 24.0 | 56.160000 | 2.680000 | 21.092000 | 17.680000 | 24.120000 | 20112012.0 | 72.900000 | 622.000000 | 100.00000 | 85.000000 | 85.000000 | 69.000000 | 55.000000 | 8.800000 | 120.000000 | 19.300000 | 70.000000 | 21.000000 | 4.000000 | 0.600000 | 186.000000 | 29.900000 | 428.000000 | 68.800000 | 3.000000 | 0.500000 | 295.000000 | 47.400000 | 327.000000 | 52.600000 | 58.800000 | 82.100000 | 53.775000 | 64.900000 | 7.325000 | 8.750000 | 46.450000 | 56.150000 | 28.375000 | 35.100000 | 11.700000 | 5.200000 | Bronx | 6.000000 | 12.0 | Bronx | 10454.00000 | 644.00000 | Traditional | Spanish | Biology, English Language and Composition, Psy... | Spanish Language and Culture | Spanish | 800.000000 | 300.000000 | 1.000000 | 360 East 145 Street\nBronx, NY 10454\n(40.8140... | 1.000000 | 8.000000 | 40.814011 | -73.920837 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 60.000000 | 53.000000 | 472.000000 | 28.000000 | 278.000000 | 8.200000 | 7.300000 | 7.100000 | 7.900000 | 6.600000 | 6.200000 | 6.900000 | 7.500000 | 7.100000 | 6.700000 | 6.800000 | 7.800000 | 7.300000 | 6.700000 | 6.900000 | 7.700000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
120 | 07X321 | CROTONA ACADEMY HIGH SCHOOL | 9.0 | 379.0 | 364.0 | 382.0 | 1125.0 | 0 | 0.0 | 0.0 | 0.0 | 50.583333 | 2.833333 | 18.141667 | 14.750000 | 22.000000 | 20112012.0 | 78.300000 | 124.000000 | 10.00000 | 33.000000 | 42.000000 | 39.000000 | 3.000000 | 2.400000 | 8.000000 | 6.500000 | 0.000000 | 0.000000 | 1.000000 | 0.800000 | 53.000000 | 42.700000 | 67.000000 | 54.000000 | 1.000000 | 0.800000 | 39.000000 | 31.500000 | 85.000000 | 68.500000 | 48.285714 | 12.366667 | 7.283333 | 59.966667 | 0.000000 | 0.000000 | 7.283333 | 59.966667 | 5.083333 | 40.033333 | 62.800000 | 22.733333 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.816815 | -73.919971 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 82.000000 | 63.000000 | 91.000000 | 9.000000 | 75.000000 | 9.300000 | 8.900000 | 8.500000 | 9.000000 | 8.700000 | 8.500000 | 9.200000 | 9.500000 | 8.400000 | 7.900000 | 8.200000 | 8.600000 | 8.800000 | 8.400000 | 8.600000 | 9.000000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
121 | 07X334 | INTERNATIONAL COMMUNITY HIGH SCHOOL | 34.0 | 310.0 | 324.0 | 311.0 | 945.0 | 0 | 0.0 | 0.0 | 0.0 | 108.785714 | 6.642857 | 16.200000 | 12.357143 | 19.500000 | 20112012.0 | 77.500000 | 393.000000 | 85.00000 | 144.000000 | 110.000000 | 54.000000 | 354.000000 | 90.100000 | 7.000000 | 1.800000 | 1.000000 | 0.000000 | 19.000000 | 4.800000 | 79.000000 | 20.100000 | 282.000000 | 71.800000 | 8.000000 | 2.000000 | 191.000000 | 48.600000 | 202.000000 | 51.400000 | 10.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10454.00000 | 437.00000 | International School | French | No courses | No courses | No courses | 900.000000 | 400.000000 | 1.000000 | 345 Brook Avenue\nBronx, NY 10454\n(40.8100361... | 1.000000 | 8.000000 | 40.810036 | -73.917812 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 87.000000 | 85.000000 | 32.000000 | 308.000000 | 22.000000 | 102.000000 | 8.600000 | 8.200000 | 7.800000 | 8.100000 | 7.800000 | 5.600000 | 7.400000 | 7.500000 | 7.300000 | 6.500000 | 7.000000 | 7.500000 | 7.900000 | 6.800000 | 7.400000 | 7.700000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
122 | 07X379 | JILL CHAIFETZ TRANSFER HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 78.923077 | 3.384615 | 23.815385 | 21.846154 | 25.615385 | 20112012.0 | 71.700000 | 198.000000 | 37.00000 | 67.000000 | 50.000000 | 44.000000 | 6.000000 | 3.000000 | 15.000000 | 7.600000 | 2.000000 | 0.000000 | 1.000000 | 0.500000 | 81.000000 | 40.900000 | 112.000000 | 56.600000 | 2.000000 | 1.000000 | 73.000000 | 36.900000 | 125.000000 | 63.100000 | 38.500000 | 13.850000 | 0.325000 | 2.075000 | 0.000000 | 0.000000 | 0.325000 | 2.075000 | 13.525000 | 97.925000 | 72.125000 | 13.700000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.816815 | -73.919971 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 93.000000 | 29.000000 | 115.000000 | 13.000000 | 54.000000 | 9.100000 | 8.100000 | 7.900000 | 8.400000 | 7.000000 | 5.600000 | 6.200000 | 7.100000 | 7.100000 | 6.700000 | 7.100000 | 7.600000 | 7.800000 | 6.800000 | 7.100000 | 7.700000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
123 | 07X381 | BRONX HAVEN HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 64.700000 | 153.000000 | 30.00000 | 55.000000 | 31.000000 | 37.000000 | 12.000000 | 7.800000 | 13.000000 | 8.500000 | 8.000000 | 1.000000 | 1.000000 | 0.700000 | 55.000000 | 35.900000 | 96.000000 | 62.700000 | 1.000000 | 0.700000 | 57.000000 | 37.300000 | 96.000000 | 62.700000 | 25.000000 | 9.400000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 9.400000 | 100.000000 | 81.100000 | 7.500000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.816815 | -73.919971 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 91.000000 | 20.000000 | 89.000000 | 10.000000 | 24.000000 | 9.000000 | 8.100000 | 7.800000 | 8.100000 | 6.900000 | 5.400000 | 6.400000 | 7.100000 | 7.700000 | 6.800000 | 7.900000 | 8.300000 | 7.900000 | 6.800000 | 7.400000 | 7.800000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
124 | 07X427 | COMMUNITY SCHOOL FOR SOCIAL JUSTICE | 43.0 | 361.0 | 359.0 | 357.0 | 1077.0 | 0 | 0.0 | 0.0 | 0.0 | 62.520000 | 2.640000 | 24.212000 | 21.880000 | 25.960000 | 20112012.0 | 82.700000 | 319.000000 | 107.00000 | 84.000000 | 67.000000 | 61.000000 | 42.000000 | 13.200000 | 63.000000 | 19.700000 | 31.000000 | 11.000000 | 2.000000 | 0.600000 | 103.000000 | 32.300000 | 209.000000 | 65.500000 | 3.000000 | 0.900000 | 157.000000 | 49.200000 | 162.000000 | 50.800000 | 78.166667 | 61.033333 | 25.816667 | 39.750000 | 0.000000 | 0.000000 | 25.816667 | 39.750000 | 35.216667 | 60.250000 | 22.433333 | 14.033333 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 335.00000 | Consortium School | Spanish | No courses | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 350 Gerard Avenue\nBronx, NY 10451\n(40.816084... | 1.000000 | 8.000000 | 40.816084 | -73.930324 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 89.000000 | 30.000000 | 299.000000 | 24.000000 | 92.000000 | 8.500000 | 8.400000 | 8.000000 | 8.700000 | 8.000000 | 8.000000 | 8.500000 | 8.600000 | 7.200000 | 6.700000 | 6.800000 | 7.500000 | 7.900000 | 7.700000 | 7.800000 | 8.300000 | 07 | DISTRICT 07 | 86.75 | 19717 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
125 | 07X473 | MOTT HAVEN VILLAGE PREPARATORY HIGH SCHOOL | 63.0 | 351.0 | 375.0 | 371.0 | 1097.0 | 0 | 0.0 | 0.0 | 0.0 | 68.037037 | 2.740741 | 23.881481 | 22.148148 | 25.407407 | 20112012.0 | 78.500000 | 363.000000 | 104.00000 | 108.000000 | 83.000000 | 68.000000 | 35.000000 | 9.600000 | 67.000000 | 18.500000 | 33.000000 | 8.000000 | 4.000000 | 1.100000 | 82.000000 | 22.600000 | 276.000000 | 76.000000 | 0.000000 | 0.000000 | 182.000000 | 50.100000 | 181.000000 | 49.900000 | 63.571429 | 69.283333 | 27.966667 | 41.266667 | 0.866667 | 1.300000 | 27.116667 | 39.966667 | 41.283333 | 58.733333 | 17.100000 | 8.333333 | Bronx | 9.000000 | 12.0 | Bronx | 10455.00000 | 344.00000 | Traditional | Italian | English Literature and Composition, United Sta... | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 701 St Anns Avenue\nBronx, NY 10455\n(40.81817... | 1.000000 | 17.000000 | 40.818174 | -73.911093 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 96.000000 | 63.000000 | 319.000000 | 26.000000 | 206.000000 | 8.600000 | 8.100000 | 7.800000 | 8.300000 | 6.700000 | 6.000000 | 6.600000 | 6.900000 | 6.900000 | 5.900000 | 6.700000 | 7.700000 | 7.400000 | 6.700000 | 7.000000 | 7.600000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
126 | 07X495 | UNIVERSITY HEIGHTS SECONDARY SCHOOL | 79.0 | 403.0 | 394.0 | 404.0 | 1201.0 | 0 | 0.0 | 0.0 | 0.0 | 151.428571 | 5.642857 | 26.885714 | 22.071429 | 30.142857 | 20112012.0 | 90.100000 | 465.000000 | 125.00000 | 112.000000 | 126.000000 | 102.000000 | 17.000000 | 3.700000 | 24.000000 | 5.200000 | 16.000000 | 0.000000 | 12.000000 | 2.600000 | 84.000000 | 18.100000 | 363.000000 | 78.100000 | 6.000000 | 1.300000 | 201.000000 | 43.200000 | 264.000000 | 56.800000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10455.00000 | 466.00000 | Consortium School | French | Biology, English Language and Composition, Uni... | Biology, English Language and Composition, Uni... | No courses | 845.000000 | 300.000000 | 2.000000 | 701 St Anns Avenue\nBronx, NY 10455\n(40.81817... | 1.000000 | 17.000000 | 40.818174 | -73.911093 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 91.000000 | 87.000000 | 50.000000 | 393.000000 | 20.000000 | 213.000000 | 8.700000 | 8.100000 | 7.800000 | 8.000000 | 8.200000 | 7.000000 | 7.100000 | 7.600000 | 7.200000 | 6.000000 | 6.500000 | 7.400000 | 8.000000 | 7.000000 | 7.200000 | 7.700000 | 07 | DISTRICT 07 | 86.75 | 19717 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
127 | 07X500 | HOSTOSsLINCOLN ACADEMY OF SCIENCE | 66.0 | 420.0 | 426.0 | 411.0 | 1257.0 | 0 | 64.0 | 107.0 | 39.0 | 71.913043 | 3.304348 | 21.408696 | 19.391304 | 23.608696 | 20112012.0 | 68.300000 | 538.000000 | 76.00000 | 89.000000 | 77.000000 | 75.000000 | 30.000000 | 5.600000 | 64.000000 | 11.900000 | 38.000000 | 11.000000 | 11.000000 | 2.000000 | 129.000000 | 24.000000 | 391.000000 | 72.700000 | 4.000000 | 0.700000 | 243.000000 | 45.200000 | 295.000000 | 54.800000 | 85.285714 | 83.000000 | 68.600000 | 82.271429 | 32.728571 | 39.071429 | 35.857143 | 43.200000 | 14.414286 | 17.742857 | 14.985714 | 1.814286 | Bronx | 6.000000 | 12.0 | Bronx | 10455.00000 | 537.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 230.000000 | 1.000000 | 600 Saint Ann'S Avenue\nBronx, NY 10455\n(40.8... | 1.000000 | 17.000000 | 40.814955 | -73.912520 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 51.000000 | 32.000000 | 492.000000 | 19.000000 | 175.000000 | 8.400000 | 7.500000 | 7.400000 | 7.800000 | 7.200000 | 6.000000 | 6.700000 | 7.200000 | 6.800000 | 5.900000 | 6.600000 | 7.600000 | 7.500000 | 6.500000 | 6.900000 | 7.500000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
128 | 07X520 | FOREIGN LANGUAGE ACADEMY OF GLOBAL STUDIES | 64.0 | 399.0 | 396.0 | 391.0 | 1186.0 | 0 | 13.0 | 13.0 | 12.0 | 60.166667 | 3.066667 | 17.190000 | 14.766667 | 19.533333 | 20112012.0 | 89.900000 | 311.000000 | 87.00000 | 98.000000 | 55.000000 | 71.000000 | 68.000000 | 21.900000 | 70.000000 | 22.500000 | 1.000000 | 50.000000 | 10.000000 | 3.200000 | 81.000000 | 26.000000 | 214.000000 | 68.800000 | 3.000000 | 1.000000 | 141.000000 | 45.300000 | 170.000000 | 54.700000 | 98.285714 | 67.028571 | 47.257143 | 70.628571 | 6.214286 | 9.257143 | 41.042857 | 61.371429 | 19.757143 | 29.371429 | 17.685714 | 7.757143 | Bronx | 9.000000 | 12.0 | Bronx | 10455.00000 | 189.00000 | Traditional | No Language Classes | English Literature and Composition | No courses | No courses | 730.000000 | 300.000000 | 1.000000 | 470 Jackson Avenue\nBronx, NY 10455\n(40.81113... | 1.000000 | 8.000000 | 40.811139 | -73.909787 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 94.000000 | 58.000000 | 343.000000 | 30.000000 | 196.000000 | 7.900000 | 7.300000 | 6.800000 | 7.400000 | 7.100000 | 7.100000 | 7.000000 | 7.600000 | 6.000000 | 5.700000 | 5.700000 | 6.800000 | 7.000000 | 6.700000 | 6.500000 | 7.200000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
129 | 07X527 | BRONX LEADERSHIP ACADEMY II HIGH SCHOOL | 62.0 | 362.0 | 378.0 | 363.0 | 1103.0 | 0 | 30.0 | 30.0 | 0.0 | 84.230769 | 3.269231 | 25.557692 | 21.884615 | 28.615385 | 20112012.0 | 77.000000 | 502.000000 | 180.00000 | 177.000000 | 71.000000 | 74.000000 | 71.000000 | 14.100000 | 93.000000 | 18.500000 | 55.000000 | 24.000000 | 7.000000 | 1.400000 | 207.000000 | 41.200000 | 281.000000 | 56.000000 | 5.000000 | 1.000000 | 271.000000 | 54.000000 | 231.000000 | 46.000000 | 80.500000 | 61.250000 | 40.950000 | 67.040000 | 5.400000 | 8.880000 | 35.566667 | 58.180000 | 20.300000 | 32.960000 | 24.950000 | 7.833333 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 515.00000 | Traditional | French, Spanish | Biology, English Literature and Composition, U... | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 730 Concourse Village West\nBronx, NY 10451\n(... | 4.000000 | 17.000000 | 40.822776 | -73.923523 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 25.000000 | 30.000000 | 12.000000 | 109.000000 | 11.000000 | 50.000000 | 8.500000 | 7.400000 | 7.400000 | 7.800000 | 5.600000 | 5.600000 | 5.800000 | 6.300000 | 6.700000 | 6.200000 | 6.800000 | 7.600000 | 6.900000 | 6.400000 | 6.600000 | 7.200000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
130 | 07X547 | NEW EXPLORERS HIGH SCHOOL | 28.0 | 367.0 | 356.0 | 361.0 | 1084.0 | 0 | 18.0 | 18.0 | 0.0 | 73.590909 | 2.818182 | 25.718182 | 22.590909 | 28.545455 | 20112012.0 | 90.400000 | 383.000000 | 151.00000 | 101.000000 | 77.000000 | 54.000000 | 60.000000 | 15.700000 | 96.000000 | 25.100000 | 57.000000 | 17.000000 | 2.000000 | 0.500000 | 116.000000 | 30.300000 | 261.000000 | 68.100000 | 2.000000 | 0.500000 | 221.000000 | 57.700000 | 162.000000 | 42.300000 | 66.428571 | 59.050000 | 20.766667 | 35.533333 | 0.233333 | 0.333333 | 20.533333 | 35.200000 | 38.300000 | 64.466667 | 16.850000 | 12.200000 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 463.00000 | Traditional | Spanish | English Language and Composition, Spanish Lang... | Biology | French | 830.000000 | 330.000000 | 4.000000 | 730 Concourse Village West\nBronx, NY 10451\n(... | 4.000000 | 17.000000 | 40.822776 | -73.923523 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 84.000000 | 61.000000 | 332.000000 | 21.000000 | 198.000000 | 9.100000 | 8.400000 | 8.400000 | 8.200000 | 7.500000 | 7.000000 | 7.100000 | 7.600000 | 7.700000 | 7.600000 | 7.700000 | 7.700000 | 8.100000 | 7.600000 | 7.700000 | 7.900000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
131 | 07X548 | URBAN ASSEMBLY SCHOOL FOR CAREERS IN SPORTS | 44.0 | 387.0 | 411.0 | 383.0 | 1181.0 | 0 | 0.0 | 0.0 | 0.0 | 72.937500 | 2.718750 | 27.190625 | 23.906250 | 30.093750 | 20112012.0 | 74.300000 | 477.000000 | 149.00000 | 158.000000 | 95.000000 | 75.000000 | 24.000000 | 5.000000 | 89.000000 | 18.700000 | 58.000000 | 18.000000 | 2.000000 | 0.400000 | 127.000000 | 26.600000 | 336.000000 | 70.400000 | 2.000000 | 0.400000 | 402.000000 | 84.300000 | 75.000000 | 15.700000 | 76.142857 | 83.171429 | 50.385714 | 60.914286 | 5.471429 | 6.685714 | 44.900000 | 54.228571 | 32.785714 | 39.085714 | 10.414286 | 2.500000 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 575.00000 | Traditional | Spanish | Calculus AB, Calculus BC, United States Govern... | No courses | No courses | 825.000000 | 318.000000 | 1.000000 | 730 Concourse Village West\nBronx, NY 10451\n(... | 4.000000 | 17.000000 | 40.822776 | -73.923523 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 100.000000 | 41.000000 | 313.000000 | 29.000000 | 168.000000 | 8.700000 | 8.100000 | 8.000000 | 8.600000 | 7.200000 | 7.100000 | 7.000000 | 7.300000 | 7.200000 | 6.000000 | 6.800000 | 7.700000 | 7.700000 | 7.100000 | 7.300000 | 7.900000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
132 | 07X551 | BRONX ACADEMY OF LETTERS | 51.0 | 413.0 | 381.0 | 407.0 | 1201.0 | 0 | 53.0 | 92.0 | 37.0 | 67.739130 | 2.913043 | 22.143478 | 18.608696 | 25.695652 | 20112012.0 | 79.100000 | 555.000000 | 90.00000 | 88.000000 | 73.000000 | 66.000000 | 52.000000 | 9.400000 | 133.000000 | 24.000000 | 36.000000 | 57.000000 | 3.000000 | 0.500000 | 189.000000 | 34.100000 | 357.000000 | 64.300000 | 5.000000 | 0.900000 | 247.000000 | 44.500000 | 308.000000 | 55.500000 | 58.666667 | 81.560000 | 69.400000 | 85.280000 | 9.820000 | 11.620000 | 59.600000 | 73.660000 | 12.140000 | 14.720000 | 11.600000 | 4.140000 | Bronx | 6.000000 | 12.0 | Bronx | 10451.00000 | 584.00000 | Traditional | Spanish | English Language and Composition, English Lite... | No courses | No courses | 800.000000 | 350.000000 | 1.000000 | 339 Morris Avenue\nBronx, NY 10451\n(40.813359... | 1.000000 | 8.000000 | 40.813359 | -73.925537 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 72.000000 | 78.000000 | 33.000000 | 399.000000 | 35.000000 | 172.000000 | 8.200000 | 7.500000 | 7.500000 | 7.800000 | 6.600000 | 5.400000 | 6.200000 | 7.200000 | 6.300000 | 6.200000 | 6.900000 | 7.700000 | 7.000000 | 6.300000 | 6.900000 | 7.600000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
133 | 07X600 | ALFRED E. SMITH CAREER AND TECHNICAL EDUCATION... | 76.0 | 394.0 | 400.0 | 364.0 | 1158.0 | 0 | 11.0 | 11.0 | 0.0 | 91.457143 | 3.942857 | 22.791429 | 18.228571 | 26.171429 | 20112012.0 | 76.700000 | 738.000000 | 73.00000 | 115.000000 | 207.000000 | 343.000000 | 67.000000 | 9.100000 | 162.000000 | 22.000000 | 30.000000 | 87.000000 | 10.000000 | 1.400000 | 265.000000 | 35.900000 | 454.000000 | 61.500000 | 5.000000 | 0.700000 | 684.000000 | 92.700000 | 54.000000 | 7.300000 | 251.571429 | 41.228571 | 21.185714 | 51.985714 | 8.057143 | 20.400000 | 13.128571 | 31.600000 | 20.042857 | 48.014286 | 29.357143 | 25.457143 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 390.00000 | CTE School | Spanish | English Language and Composition, United State... | No courses | No courses | 850.000000 | 300.000000 | 3.000000 | 333 East 151 Street\nBronx, NY 10451\n(40.8182... | 1.000000 | 17.000000 | 40.818247 | -73.919736 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 49.000000 | 15.000000 | 683.000000 | 34.000000 | 132.000000 | 7.600000 | 7.000000 | 7.200000 | 6.900000 | 6.000000 | 5.500000 | 6.100000 | 6.800000 | 5.700000 | 5.500000 | 5.800000 | 6.600000 | 6.400000 | 6.000000 | 6.300000 | 6.800000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
134 | 07X655 | SAMUEL GOMPERS CAREER AND TECHNICAL EDUCATION ... | 47.0 | 398.0 | 416.0 | 370.0 | 1184.0 | 0 | 77.0 | 126.0 | 0.0 | 90.486486 | 4.135135 | 19.281081 | 15.540541 | 22.108108 | 20112012.0 | 75.700000 | 663.000000 | 193.00000 | 173.000000 | 156.000000 | 141.000000 | 113.000000 | 17.000000 | 173.000000 | 26.100000 | 15.000000 | 120.000000 | 8.000000 | 1.200000 | 215.000000 | 32.400000 | 430.000000 | 64.900000 | 5.000000 | 0.800000 | 528.000000 | 79.600000 | 135.000000 | 20.400000 | 320.571429 | 48.742857 | 31.128571 | 64.000000 | 2.300000 | 4.685714 | 28.800000 | 59.300000 | 17.671429 | 36.100000 | 21.671429 | 19.900000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.816815 | -73.919971 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 78.000000 | 11.000000 | 468.000000 | 52.000000 | 79.000000 | 7.200000 | 6.900000 | 6.900000 | 7.300000 | 6.100000 | 5.200000 | 6.000000 | 6.400000 | 6.000000 | 5.700000 | 6.200000 | 6.900000 | 6.400000 | 5.900000 | 6.400000 | 6.800000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
135 | 07X670 | HEALTH OPPORTUNITIES HIGH SCHOOL | 114.0 | 363.0 | 368.0 | 364.0 | 1095.0 | 0 | 61.0 | 117.0 | 29.0 | 107.346154 | 4.230769 | 25.407692 | 21.000000 | 28.846154 | 20112012.0 | 77.800000 | 587.000000 | 199.00000 | 157.000000 | 104.000000 | 127.000000 | 61.000000 | 10.400000 | 115.000000 | 19.600000 | 43.000000 | 44.000000 | 18.000000 | 3.100000 | 230.000000 | 39.200000 | 334.000000 | 56.900000 | 3.000000 | 0.500000 | 168.000000 | 28.600000 | 419.000000 | 71.400000 | 127.285714 | 65.000000 | 45.528571 | 69.771429 | 6.500000 | 9.942857 | 39.014286 | 59.857143 | 19.457143 | 30.228571 | 19.000000 | 12.957143 | Bronx | 9.000000 | 12.0 | Bronx | 10451.00000 | 577.00000 | Traditional | Spanish | Biology, European History, Spanish Language an... | No courses | Spanish | 815.000000 | 335.000000 | 1.000000 | 350 Gerard Avenue\nBronx, NY 10451\n(40.816084... | 1.000000 | 8.000000 | 40.816084 | -73.930324 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 100.000000 | 78.000000 | 429.000000 | 37.000000 | 457.000000 | 8.500000 | 7.600000 | 7.600000 | 7.300000 | 6.100000 | 5.600000 | 5.800000 | 6.600000 | 6.300000 | 5.500000 | 6.300000 | 7.300000 | 7.000000 | 6.200000 | 6.600000 | 7.100000 | 07 | DISTRICT 07 | 86.75 | 19717 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
136 | 08X269 | BRONX STUDIO SCHOOL FOR WRITERS AND ARTISTS | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 61.000000 | 2.571429 | 23.435714 | 21.214286 | 25.714286 | 20112012.0 | 85.600000 | 500.000000 | 110.00000 | 83.000000 | 43.000000 | 147.334928 | 46.000000 | 9.200000 | 67.000000 | 13.400000 | 11.000000 | 41.000000 | 6.000000 | 1.200000 | 112.000000 | 22.400000 | 374.000000 | 74.800000 | 5.000000 | 1.000000 | 220.000000 | 44.000000 | 280.000000 | 56.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10459.00000 | 540.00000 | Traditional | Chinese (Mandarin), Spanish | English Literature and Composition, Environmen... | No courses | No courses | 820.000000 | 320.000000 | 1.000000 | 928 Simpson Street\nBronx, NY 10459\n(40.82062... | 2.000000 | 17.000000 | 40.820624 | -73.893074 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.000000 | 28.000000 | 17.000000 | 516.257511 | 9.000000 | 62.000000 | 8.500000 | 7.600000 | 7.400000 | 7.800000 | 6.400000 | 6.700000 | 6.000000 | 6.900000 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.300000 | 7.000000 | 6.600000 | 7.200000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
137 | 08X282 | WOMEN'S ACADEMY OF EXCELLENCE | 44.0 | 407.0 | 386.0 | 378.0 | 1171.0 | 0 | 21.0 | 22.0 | 0.0 | 72.961538 | 3.384615 | 21.619231 | 19.115385 | 24.000000 | 20112012.0 | 72.200000 | 379.000000 | 128.00000 | 88.000000 | 97.000000 | 66.000000 | 10.000000 | 2.600000 | 59.000000 | 15.600000 | 31.000000 | 12.000000 | 11.000000 | 2.900000 | 174.000000 | 45.900000 | 176.000000 | 46.400000 | 9.000000 | 2.400000 | 1.000000 | 0.300000 | 378.000000 | 99.700000 | 38.000000 | 72.000000 | 70.650000 | 98.150000 | 10.700000 | 14.900000 | 60.000000 | 83.250000 | 1.300000 | 1.850000 | 11.350000 | 15.350000 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 395.00000 | All-Girls School | Spanish | English Literature and Composition | No courses | No courses | 830.000000 | 245.000000 | 1.000000 | 456 White Plains Road\nBronx, NY 10473\n(40.81... | 9.000000 | 18.000000 | 40.814918 | -73.856566 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 95.000000 | 20.000000 | 265.000000 | 21.000000 | 59.000000 | 8.100000 | 7.000000 | 6.800000 | 6.900000 | 7.300000 | 6.000000 | 6.100000 | 6.600000 | 6.300000 | 5.400000 | 5.600000 | 6.900000 | 7.200000 | 6.100000 | 6.100000 | 6.800000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
138 | 08X293 | RENAISSANCE HIGH SCHOOL FOR MUSICAL THEATER & ... | 52.0 | 384.0 | 385.0 | 389.0 | 1158.0 | 0 | 22.0 | 29.0 | 14.0 | 74.916667 | 2.958333 | 27.558333 | 23.458333 | 30.958333 | 20112012.0 | 66.400000 | 469.000000 | 166.00000 | 122.000000 | 99.000000 | 82.000000 | 21.000000 | 4.500000 | 102.000000 | 21.700000 | 54.000000 | 9.000000 | 12.000000 | 2.600000 | 119.000000 | 25.400000 | 299.000000 | 63.800000 | 36.000000 | 7.700000 | 178.000000 | 38.000000 | 291.000000 | 62.000000 | 66.857143 | 69.320000 | 51.140000 | 73.760000 | 3.820000 | 5.500000 | 47.320000 | 68.260000 | 18.200000 | 26.240000 | 17.500000 | 10.760000 | Bronx | 9.000000 | 12.0 | Bronx | 10461.00000 | 454.00000 | Traditional | Spanish | English Literature and Composition, Psychology... | No courses | Spanish | 815.000000 | 300.000000 | 1.000000 | 3000 East Tremont Avenue\nBronx, NY 10461\n(40... | 10.000000 | 13.000000 | 40.840514 | -73.838121 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 61.000000 | 49.000000 | 390.000000 | 19.000000 | 206.000000 | 8.200000 | 7.700000 | 7.800000 | 8.000000 | 7.800000 | 7.600000 | 7.900000 | 8.600000 | 6.900000 | 5.900000 | 6.900000 | 7.400000 | 7.600000 | 7.100000 | 7.500000 | 8.000000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
139 | 08X295 | GATEWAY SCHOOL FOR ENVIRONMENTAL RESEARCH AND ... | 41.0 | 416.0 | 390.0 | 394.0 | 1200.0 | 0 | 0.0 | 0.0 | 0.0 | 62.057143 | 3.028571 | 19.494286 | 16.142857 | 22.742857 | 20112012.0 | 74.600000 | 478.000000 | 146.00000 | 146.000000 | 80.000000 | 106.000000 | 55.000000 | 11.500000 | 115.000000 | 24.100000 | 42.000000 | 51.000000 | 27.000000 | 5.600000 | 158.000000 | 33.100000 | 284.000000 | 59.400000 | 5.000000 | 1.000000 | 287.000000 | 60.000000 | 191.000000 | 40.000000 | 68.142857 | 51.700000 | 30.160000 | 59.020000 | 5.200000 | 9.400000 | 24.940000 | 49.620000 | 21.520000 | 40.980000 | 31.140000 | 10.300000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 78.000000 | 40.000000 | 277.000000 | 28.000000 | 176.000000 | 7.100000 | 7.000000 | 7.100000 | 7.400000 | 5.800000 | 5.200000 | 5.800000 | 6.700000 | 5.600000 | 5.600000 | 6.000000 | 6.900000 | 6.200000 | 5.900000 | 6.300000 | 7.000000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
140 | 08X305 | PABLO NERUDA ACADEMY FOR ARCHITECTURE AND WORL... | 67.0 | 337.0 | 361.0 | 340.0 | 1038.0 | 0 | 0.0 | 0.0 | 0.0 | 62.040000 | 2.920000 | 21.148000 | 17.880000 | 24.400000 | 20112012.0 | 75.800000 | 359.000000 | 81.00000 | 79.000000 | 105.000000 | 94.000000 | 57.000000 | 15.900000 | 98.000000 | 27.300000 | 67.000000 | 16.000000 | 9.000000 | 2.500000 | 94.000000 | 26.200000 | 251.000000 | 69.900000 | 5.000000 | 1.400000 | 237.000000 | 66.000000 | 122.000000 | 34.000000 | 64.714286 | 53.400000 | 24.220000 | 44.960000 | 0.000000 | 0.000000 | 24.220000 | 44.960000 | 29.220000 | 55.040000 | 23.100000 | 20.480000 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 335.00000 | Traditional | Spanish | Art History, English Language and Composition,... | No courses | Spanish | 800.000000 | 350.000000 | 1.000000 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.000000 | 18.000000 | 40.822304 | -73.855961 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 79.000000 | 94.000000 | 34.000000 | 259.000000 | 34.000000 | 109.000000 | 8.300000 | 7.900000 | 7.600000 | 7.800000 | 6.400000 | 6.100000 | 6.500000 | 7.000000 | 6.300000 | 6.000000 | 6.100000 | 7.000000 | 7.000000 | 6.700000 | 6.700000 | 7.300000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
141 | 08X312 | MILLENNIUM ART ACADEMY | 67.0 | 387.0 | 402.0 | 375.0 | 1164.0 | 0 | 35.0 | 55.0 | 0.0 | 88.880000 | 3.520000 | 23.728000 | 19.880000 | 26.520000 | 20112012.0 | 74.200000 | 496.000000 | 159.00000 | 117.000000 | 105.000000 | 115.000000 | 27.000000 | 5.400000 | 101.000000 | 20.400000 | 58.000000 | 22.000000 | 9.000000 | 1.800000 | 161.000000 | 32.500000 | 319.000000 | 64.300000 | 5.000000 | 1.000000 | 244.000000 | 49.200000 | 252.000000 | 50.800000 | 76.000000 | 65.520000 | 37.900000 | 59.180000 | 1.880000 | 3.100000 | 36.020000 | 56.080000 | 27.600000 | 40.820000 | 26.280000 | 6.840000 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 496.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.000000 | 18.000000 | 40.822304 | -73.855961 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 67.000000 | 32.000000 | 389.000000 | 20.000000 | 148.000000 | 8.200000 | 7.800000 | 7.600000 | 8.000000 | 7.800000 | 7.100000 | 7.400000 | 8.000000 | 6.400000 | 5.700000 | 6.400000 | 7.300000 | 7.500000 | 6.900000 | 7.100000 | 7.800000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
142 | 08X332 | HOLCOMBE L. RUCKER SCHOOL OF COMMUNITY RESEARCH | 39.0 | 363.0 | 371.0 | 350.0 | 1084.0 | 0 | 20.0 | 28.0 | 0.0 | 47.833333 | 2.433333 | 19.603333 | 17.166667 | 21.966667 | 20112012.0 | 79.600000 | 333.000000 | 113.00000 | 87.000000 | 73.000000 | 60.000000 | 42.000000 | 12.600000 | 60.000000 | 18.000000 | 34.000000 | 17.000000 | 3.000000 | 0.900000 | 133.000000 | 39.900000 | 189.000000 | 56.800000 | 2.000000 | 0.600000 | 164.000000 | 49.200000 | 169.000000 | 50.800000 | 45.250000 | 57.300000 | 40.400000 | 70.600000 | 0.000000 | 0.000000 | 40.400000 | 70.600000 | 16.900000 | 29.400000 | 28.100000 | 14.600000 | Bronx | 9.000000 | 12.0 | Bronx | 10459.00000 | 261.00000 | Traditional | Spanish | English Literature and Composition, Spanish Li... | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 965 Longwood Avenue\nBronx, NY 10459\n(40.8174... | 2.000000 | 17.000000 | 40.817439 | -73.898049 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 85.000000 | 36.000000 | 174.000000 | 22.000000 | 102.000000 | 8.500000 | 7.800000 | 7.800000 | 7.800000 | 6.900000 | 4.800000 | 6.200000 | 7.000000 | 6.800000 | 6.400000 | 7.000000 | 7.500000 | 7.400000 | 6.300000 | 7.000000 | 7.400000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
143 | 08X367 | ARCHIMEDES ACADEMY FOR MATH, SCIENCE AND TECHN... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 87.300000 | 500.000000 | 106.00000 | 103.000000 | 155.308756 | 147.334928 | 13.000000 | 2.600000 | 110.000000 | 22.000000 | 50.000000 | 41.000000 | 14.000000 | 2.800000 | 175.000000 | 35.000000 | 301.000000 | 60.200000 | 10.000000 | 2.000000 | 310.000000 | 62.000000 | 190.000000 | 38.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10473.00000 | 637.00000 | Traditional | Spanish | No courses | No courses | No courses | 825.000000 | 315.000000 | 1.000000 | 456 White Plains Road\nBronx, NY 10473\n(40.81... | 9.000000 | 18.000000 | 40.814918 | -73.856566 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 97.000000 | 49.000000 | 292.000000 | 32.000000 | 184.000000 | 8.000000 | 7.200000 | 7.400000 | 7.500000 | 5.900000 | 4.700000 | 5.500000 | 5.900000 | 5.700000 | 5.700000 | 6.400000 | 7.000000 | 6.500000 | 5.900000 | 6.400000 | 6.800000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
144 | 08X376 | ANTONIA PANTOJA PREPARATORY ACADEMY, A COLLEGE... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 36.000000 | 1.500000 | 24.250000 | 24.000000 | 24.500000 | 20112012.0 | 81.300000 | 432.000000 | 97.00000 | 49.000000 | 155.308756 | 147.334928 | 32.000000 | 7.400000 | 104.000000 | 24.100000 | 48.000000 | 35.000000 | 21.000000 | 4.900000 | 120.000000 | 27.800000 | 285.000000 | 66.000000 | 3.000000 | 0.700000 | 203.000000 | 47.000000 | 229.000000 | 53.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10473.00000 | 466.00000 | Traditional | French, Japanese, Spanish | No courses | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.000000 | 18.000000 | 40.822304 | -73.855961 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 70.000000 | 92.000000 | 20.000000 | 252.000000 | 24.000000 | 68.000000 | 7.600000 | 6.700000 | 6.700000 | 6.800000 | 5.100000 | 3.500000 | 4.100000 | 5.100000 | 5.600000 | 5.900000 | 6.200000 | 7.000000 | 6.100000 | 5.400000 | 5.700000 | 6.300000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
145 | 08X377 | BRONX COMMUNITY HIGH SCHOOL | 9.0 | 367.0 | 369.0 | 376.0 | 1112.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 73.900000 | 200.000000 | 35.00000 | 83.000000 | 28.000000 | 54.000000 | 9.000000 | 4.500000 | 10.000000 | 5.000000 | 0.000000 | 1.000000 | 2.000000 | 1.000000 | 66.000000 | 33.000000 | 127.000000 | 63.500000 | 2.000000 | 1.000000 | 101.000000 | 50.500000 | 99.000000 | 49.500000 | 50.333333 | 9.975000 | 1.150000 | 14.575000 | 0.000000 | 0.000000 | 1.150000 | 14.575000 | 8.825000 | 85.425000 | 71.825000 | 16.225000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 94.000000 | 41.000000 | 110.000000 | 16.000000 | 63.000000 | 8.700000 | 8.500000 | 8.100000 | 8.500000 | 7.700000 | 7.400000 | 8.000000 | 8.700000 | 7.700000 | 7.200000 | 7.700000 | 8.200000 | 8.000000 | 7.700000 | 7.900000 | 8.500000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
146 | 08X405 | HERBERT H. LEHMAN HIGH SCHOOL | 415.0 | 412.0 | 436.0 | 393.0 | 1241.0 | 0 | 430.0 | 532.0 | 197.0 | 320.347826 | 12.195652 | 24.906522 | 18.173913 | 28.434783 | 20112012.0 | 66.800000 | 3593.000000 | 1378.00000 | 909.000000 | 636.000000 | 670.000000 | 332.000000 | 9.200000 | 751.000000 | 20.900000 | 258.000000 | 347.000000 | 246.000000 | 6.800000 | 826.000000 | 23.000000 | 2176.000000 | 60.600000 | 322.000000 | 9.000000 | 2196.000000 | 61.100000 | 1397.000000 | 38.900000 | 996.000000 | 47.642857 | 32.871429 | 69.242857 | 11.242857 | 23.857143 | 21.628571 | 45.371429 | 14.757143 | 30.757143 | 31.814286 | 16.985714 | Bronx | 9.000000 | 12.0 | Bronx | 10461.00000 | 2059.00000 | Traditional | Italian, Spanish | Biology, Calculus AB, Calculus BC, English Lan... | No courses | No courses | 815.000000 | 345.000000 | 3.000000 | 3000 East Tremont Avenue\nBronx, NY 10461\n(40... | 10.000000 | 13.000000 | 40.840514 | -73.838121 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 58.000000 | 73.000000 | 11.000000 | 2099.000000 | 174.000000 | 395.000000 | 6.600000 | 6.700000 | 6.800000 | 6.900000 | 6.300000 | 5.900000 | 6.700000 | 7.000000 | 5.500000 | 5.600000 | 6.200000 | 6.800000 | 6.100000 | 6.100000 | 6.600000 | 6.900000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
147 | 08X408 | HERBERT H. LEHMAN YABC | 6.0 | 402.0 | 373.0 | 413.0 | 1188.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 55.000000 | 96.000000 | 47.000000 | 96.000000 | 24.000000 | 97.000000 | 8.600000 | 7.900000 | 8.000000 | 8.200000 | 9.200000 | 8.800000 | 9.300000 | 9.500000 | 8.100000 | 7.000000 | 8.100000 | 8.200000 | 8.600000 | 7.900000 | 8.400000 | 8.600000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
148 | 08X432 | BRONX BRIDGES HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 41.625000 | 2.250000 | 20.175000 | 19.000000 | 21.375000 | 20112012.0 | 87.200000 | 155.000000 | 75.00000 | 80.000000 | 155.308756 | 147.334928 | 123.000000 | 79.400000 | 12.000000 | 7.700000 | 9.000000 | 3.000000 | 8.000000 | 5.200000 | 13.000000 | 8.400000 | 129.000000 | 83.200000 | 4.000000 | 2.600000 | 81.000000 | 52.300000 | 74.000000 | 47.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 313.00000 | Traditional | French, Spanish | Biology, Calculus AB, Spanish Language and Cul... | French Language and Culture, French Literature | Arabic, Bengali | 800.000000 | 345.000000 | 1.000000 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.000000 | 18.000000 | 40.822304 | -73.855961 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 99.000000 | 100.000000 | 81.000000 | 76.000000 | 5.000000 | 61.000000 | 8.800000 | 8.300000 | 7.600000 | 8.500000 | 9.300000 | 7.800000 | 9.600000 | 9.800000 | 6.900000 | 6.300000 | 6.600000 | 7.100000 | 8.300000 | 7.500000 | 7.900000 | 8.500000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
149 | 08X452 | BRONX GUILD | 39.0 | 369.0 | 371.0 | 365.0 | 1105.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 69.200000 | 305.000000 | 73.00000 | 77.000000 | 85.000000 | 70.000000 | 22.000000 | 7.200000 | 70.000000 | 23.000000 | 44.000000 | 14.000000 | 12.000000 | 3.900000 | 103.000000 | 33.800000 | 187.000000 | 61.300000 | 2.000000 | 0.700000 | 151.000000 | 49.500000 | 154.000000 | 50.500000 | 57.000000 | 57.166667 | 3.016667 | 5.350000 | 0.000000 | 0.000000 | 3.016667 | 5.350000 | 54.150000 | 94.650000 | 29.800000 | 8.350000 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 315.00000 | Traditional | Spanish | No courses | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 1980 Lafayette Avenue\nBronx, NY 10473\n(40.82... | 9.000000 | 18.000000 | 40.822304 | -73.855961 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 66.000000 | 67.000000 | 8.000000 | 200.000000 | 18.000000 | 23.000000 | 8.300000 | 7.700000 | 7.400000 | 8.100000 | 7.700000 | 6.300000 | 7.200000 | 7.200000 | 7.100000 | 6.200000 | 6.800000 | 7.500000 | 7.600000 | 6.500000 | 7.100000 | 7.500000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
150 | 08X507 | STEVENSON YABC | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 56.000000 | 81.000000 | 15.000000 | 93.000000 | 22.000000 | 23.000000 | 8.800000 | 7.900000 | 7.900000 | 8.300000 | 8.500000 | 7.500000 | 8.400000 | 8.500000 | 8.300000 | 6.600000 | 7.700000 | 8.100000 | 8.500000 | 7.300000 | 8.000000 | 8.300000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
151 | 08X519 | FELISA RINCON DE GAUTIER INSTITUTE FOR LAW AND... | 68.0 | 373.0 | 370.0 | 356.0 | 1099.0 | 0 | 0.0 | 0.0 | 0.0 | 59.205882 | 2.529412 | 22.350000 | 19.705882 | 25.235294 | 20112012.0 | 72.300000 | 363.000000 | 121.00000 | 104.000000 | 67.000000 | 71.000000 | 51.000000 | 14.000000 | 76.000000 | 20.900000 | 20.000000 | 32.000000 | 5.000000 | 1.400000 | 79.000000 | 21.800000 | 276.000000 | 76.000000 | 2.000000 | 0.600000 | 156.000000 | 43.000000 | 207.000000 | 57.000000 | 67.500000 | 53.475000 | 29.975000 | 55.625000 | 0.000000 | 0.000000 | 29.975000 | 55.625000 | 23.550000 | 44.375000 | 28.125000 | 16.125000 | Bronx | 9.000000 | 12.0 | Bronx | 10473.00000 | 341.00000 | Traditional | Spanish | Comparative Government and Politics, English L... | No courses | No courses | 800.000000 | 219.000000 | 2.000000 | 1440 Story Avenue\nBronx, NY 10473\n(40.821170... | 9.000000 | 17.000000 | 40.821171 | -73.881136 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 54.000000 | 59.000000 | 20.000000 | 184.000000 | 16.000000 | 64.000000 | 8.100000 | 8.000000 | 7.500000 | 7.900000 | 7.300000 | 6.800000 | 6.500000 | 7.500000 | 5.700000 | 5.700000 | 5.800000 | 6.700000 | 7.000000 | 6.800000 | 6.600000 | 7.400000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
152 | 08X530 | BANANA KELLY HIGH SCHOOL | 54.0 | 373.0 | 381.0 | 377.0 | 1131.0 | 0 | 0.0 | 0.0 | 0.0 | 84.689655 | 3.206897 | 25.441379 | 22.448276 | 28.413793 | 20112012.0 | 81.900000 | 451.000000 | 122.00000 | 139.000000 | 108.000000 | 82.000000 | 61.000000 | 13.500000 | 116.000000 | 25.700000 | 63.000000 | 33.000000 | 3.000000 | 0.700000 | 147.000000 | 32.600000 | 295.000000 | 65.400000 | 5.000000 | 1.100000 | 225.000000 | 49.900000 | 226.000000 | 50.100000 | 80.142857 | 52.614286 | 26.042857 | 51.414286 | 0.800000 | 1.814286 | 25.242857 | 49.600000 | 26.542857 | 48.585714 | 27.071429 | 14.028571 | Bronx | 9.000000 | 12.0 | Bronx | 10459.00000 | 364.00000 | Traditional | Spanish | English Language and Composition, Human Geogra... | No courses | No courses | 845.000000 | 305.000000 | 1.000000 | 965 Longwood Avenue\nBronx, NY 10459\n(40.8174... | 2.000000 | 17.000000 | 40.817439 | -73.898049 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 100.000000 | 83.000000 | 372.000000 | 30.000000 | 360.000000 | 9.000000 | 8.500000 | 8.400000 | 8.500000 | 7.600000 | 6.500000 | 7.600000 | 7.800000 | 7.000000 | 6.500000 | 7.000000 | 7.500000 | 7.900000 | 7.200000 | 7.700000 | 7.900000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
153 | 08X537 | BRONX ARENA HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 60.000000 | 129.000000 | 199.09611 | 106.000000 | 155.308756 | 23.000000 | 6.000000 | 4.700000 | 8.000000 | 6.200000 | 1.000000 | 2.000000 | 3.000000 | 2.300000 | 52.000000 | 40.300000 | 72.000000 | 55.800000 | 1.000000 | 0.800000 | 56.000000 | 43.400000 | 73.000000 | 56.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
154 | 08X540 | SCHOOL FOR COMMUNITY RESEARCH AND LEARNING | 16.0 | 366.0 | 400.0 | 368.0 | 1134.0 | 0 | 9.0 | 9.0 | 0.0 | 46.181818 | 2.303030 | 19.912121 | 17.848485 | 22.333333 | 20112012.0 | 83.800000 | 191.000000 | 29.00000 | 55.000000 | 74.000000 | 32.000000 | 21.000000 | 11.000000 | 54.000000 | 28.300000 | 28.000000 | 26.000000 | 9.000000 | 4.700000 | 55.000000 | 28.800000 | 124.000000 | 64.900000 | 2.000000 | 1.000000 | 109.000000 | 57.100000 | 82.000000 | 42.900000 | 63.571429 | 46.160000 | 20.640000 | 44.120000 | 0.840000 | 1.880000 | 19.780000 | 42.240000 | 25.540000 | 55.880000 | 31.240000 | 15.420000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 71.000000 | 51.000000 | 170.000000 | 17.000000 | 136.000000 | 7.300000 | 6.800000 | 6.800000 | 7.100000 | 5.600000 | 4.800000 | 4.500000 | 5.500000 | 6.400000 | 5.500000 | 6.000000 | 6.600000 | 6.400000 | 5.700000 | 5.800000 | 6.400000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
155 | 08X560 | HIGH SCHOOL X560 s BRONX ACADEMY HIGH SCHOOL | 9.0 | 404.0 | 368.0 | 399.0 | 1171.0 | 0 | 0.0 | 0.0 | 0.0 | 95.333333 | 3.333333 | 27.583333 | 23.583333 | 30.083333 | 20112012.0 | 76.200000 | 195.000000 | 199.09611 | 92.000000 | 42.000000 | 61.000000 | 18.000000 | 9.200000 | 13.000000 | 6.700000 | 1.000000 | 1.000000 | 0.000000 | 0.000000 | 74.000000 | 37.900000 | 119.000000 | 61.000000 | 2.000000 | 1.000000 | 86.000000 | 44.100000 | 109.000000 | 55.900000 | 147.285714 | 16.385714 | 3.471429 | 20.285714 | 0.000000 | 0.000000 | 3.471429 | 20.285714 | 12.942857 | 79.714286 | 69.957143 | 11.871429 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 90.000000 | 15.000000 | 142.000000 | 19.000000 | 34.000000 | 9.300000 | 8.700000 | 8.500000 | 8.900000 | 8.500000 | 8.600000 | 9.100000 | 9.400000 | 8.200000 | 7.300000 | 8.200000 | 8.600000 | 8.700000 | 8.200000 | 8.600000 | 9.000000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
156 | 08X650 | JANE ADDAMS HIGH SCHOOL FOR ACADEMIC CAREERS | 78.0 | 377.0 | 359.0 | 376.0 | 1112.0 | 0 | 44.0 | 69.0 | 8.0 | 121.464286 | 5.178571 | 19.896429 | 16.250000 | 22.678571 | 20112012.0 | 85.700000 | 717.000000 | 240.00000 | 187.000000 | 126.000000 | 164.000000 | 80.000000 | 11.200000 | 159.000000 | 22.200000 | 38.000000 | 69.000000 | 11.000000 | 1.500000 | 264.000000 | 36.800000 | 436.000000 | 60.800000 | 2.000000 | 0.300000 | 203.000000 | 28.300000 | 514.000000 | 71.700000 | 365.428571 | 47.585714 | 24.900000 | 53.028571 | 5.514286 | 11.900000 | 19.371429 | 41.157143 | 22.700000 | 46.971429 | 25.900000 | 22.214286 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.823004 | -73.864576 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 54.000000 | 23.000000 | 596.000000 | 40.000000 | 212.000000 | 6.900000 | 6.700000 | 6.700000 | 6.700000 | 5.300000 | 4.200000 | 5.100000 | 5.600000 | 5.800000 | 6.000000 | 6.100000 | 6.800000 | 6.000000 | 5.600000 | 6.000000 | 6.400000 | 08 | DISTRICT 08 | 87.15 | 31625 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
157 | 09X227 | BRONX EXPEDITIONARY LEARNING HIGH SCHOOL | 39.0 | 324.0 | 376.0 | 349.0 | 1049.0 | 0 | 0.0 | 0.0 | 0.0 | 56.192308 | 2.500000 | 22.884615 | 19.692308 | 26.346154 | 20112012.0 | 83.900000 | 355.000000 | 111.00000 | 99.000000 | 70.000000 | 75.000000 | 104.000000 | 29.300000 | 75.000000 | 21.100000 | 30.000000 | 28.000000 | 4.000000 | 1.100000 | 99.000000 | 27.900000 | 246.000000 | 69.300000 | 3.000000 | 0.800000 | 178.000000 | 50.100000 | 177.000000 | 49.900000 | 62.333333 | 55.025000 | 27.875000 | 50.150000 | 0.825000 | 1.475000 | 27.050000 | 48.675000 | 27.150000 | 49.850000 | 32.600000 | 9.275000 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 356.00000 | Traditional | Spanish | English Language and Composition, English Lite... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 240 East 172 Street\nBronx, NY 10457\n(40.8403... | 4.000000 | 16.000000 | 40.840373 | -73.910838 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 91.000000 | 40.000000 | 238.000000 | 30.000000 | 130.000000 | 8.300000 | 8.000000 | 7.800000 | 8.300000 | 7.500000 | 7.500000 | 7.700000 | 8.100000 | 6.500000 | 6.300000 | 7.100000 | 7.600000 | 7.400000 | 7.300000 | 7.500000 | 8.000000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
158 | 09X231 | EAGLE ACADEMY FOR YOUNG MEN | 78.0 | 373.0 | 387.0 | 374.0 | 1134.0 | 0 | 32.0 | 44.0 | 11.0 | 79.500000 | 3.156250 | 24.446875 | 20.968750 | 27.656250 | 20112012.0 | 60.400000 | 550.000000 | 141.00000 | 129.000000 | 96.000000 | 91.000000 | 22.000000 | 4.000000 | 133.000000 | 24.200000 | 41.000000 | 33.000000 | 4.000000 | 0.700000 | 347.000000 | 63.100000 | 186.000000 | 33.800000 | 3.000000 | 0.500000 | 550.000000 | 100.000000 | 0.000000 | 0.000000 | 74.800000 | 66.600000 | 41.650000 | 62.525000 | 0.300000 | 0.450000 | 41.350000 | 62.075000 | 24.950000 | 37.475000 | 27.950000 | 4.375000 | Bronx | 6.000000 | 12.0 | Bronx | 10457.00000 | 645.00000 | All-Boys School | French, Spanish | Calculus AB, Chemistry, Computer Science AB, E... | No courses | No courses | 830.000000 | 400.000000 | 1.000000 | 4143 Third Avenue\nBronx, NY 10457\n(40.845185... | 6.000000 | 15.000000 | 40.845185 | -73.896981 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 89.000000 | 68.000000 | 51.000000 | 383.000000 | 21.000000 | 216.000000 | 8.500000 | 7.900000 | 7.900000 | 7.900000 | 6.700000 | 7.100000 | 7.400000 | 7.300000 | 5.800000 | 5.800000 | 6.500000 | 7.200000 | 7.000000 | 6.900000 | 7.300000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
159 | 09X239 | URBAN ASSEMBLY ACADEMY FOR HISTORY AND CITIZEN... | 33.0 | 372.0 | 355.0 | 357.0 | 1084.0 | 0 | 9.0 | 9.0 | 0.0 | 32.031250 | 1.593750 | 19.353125 | 17.781250 | 20.937500 | 20112012.0 | 50.200000 | 141.000000 | 3.00000 | 59.000000 | 32.000000 | 47.000000 | 28.000000 | 19.900000 | 39.000000 | 27.700000 | 14.000000 | 20.000000 | 1.000000 | 0.700000 | 80.000000 | 56.700000 | 57.000000 | 40.400000 | 1.000000 | 0.700000 | 141.000000 | 100.000000 | 0.000000 | 0.000000 | 48.833333 | 47.875000 | 16.975000 | 35.475000 | 0.000000 | 0.000000 | 16.975000 | 35.475000 | 30.925000 | 64.525000 | 27.700000 | 19.575000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.836349 | -73.906240 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 28.000000 | 100.000000 | 21.000000 | 57.000000 | 17.000000 | 43.000000 | 8.600000 | 8.100000 | 8.000000 | 8.200000 | 6.800000 | 7.000000 | 7.500000 | 7.400000 | 6.400000 | 6.600000 | 6.900000 | 7.900000 | 7.200000 | 7.200000 | 7.400000 | 7.800000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
160 | 09X241 | URBAN ASSEMBLY SCHOOL FOR APPLIED MATH AND SCI... | 80.0 | 411.0 | 464.0 | 415.0 | 1290.0 | 0 | 16.0 | 16.0 | 0.0 | 92.478261 | 4.391304 | 21.534783 | 18.695652 | 24.217391 | 20112012.0 | 79.500000 | 606.000000 | 93.00000 | 87.000000 | 81.000000 | 87.000000 | 57.000000 | 9.400000 | 89.000000 | 14.700000 | 52.000000 | 12.000000 | 16.000000 | 2.600000 | 194.000000 | 32.000000 | 384.000000 | 63.400000 | 9.000000 | 1.500000 | 299.000000 | 49.300000 | 307.000000 | 50.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10457.00000 | 605.00000 | Traditional | Spanish | Biology, Calculus AB | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 1595 Bathgate Avenue\nBronx, NY 10457\n(40.839... | 3.000000 | 16.000000 | 40.839327 | -73.901310 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 91.000000 | 27.000000 | 527.000000 | 43.000000 | 143.000000 | 8.600000 | 7.700000 | 7.600000 | 8.200000 | 7.500000 | 6.100000 | 6.600000 | 7.500000 | 6.800000 | 6.200000 | 6.900000 | 7.600000 | 7.600000 | 6.700000 | 7.000000 | 7.800000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
161 | 09X250 | EXIMIUS COLLEGE PREPARATORY ACADEMY: A COLLEGE... | 50.0 | 393.0 | 394.0 | 382.0 | 1169.0 | 0 | 90.0 | 146.0 | 11.0 | 67.909091 | 2.681818 | 26.295455 | 22.863636 | 29.818182 | 20112012.0 | 62.900000 | 356.000000 | 157.00000 | 95.000000 | 49.000000 | 55.000000 | 29.000000 | 8.100000 | 67.000000 | 18.800000 | 40.000000 | 14.000000 | 2.000000 | 0.600000 | 145.000000 | 40.700000 | 207.000000 | 58.100000 | 1.000000 | 0.300000 | 166.000000 | 46.600000 | 190.000000 | 53.400000 | 35.000000 | 71.766667 | 60.533333 | 84.766667 | 7.800000 | 10.733333 | 52.733333 | 74.033333 | 11.233333 | 15.233333 | 21.300000 | 4.600000 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 423.00000 | Traditional | Spanish | English Language and Composition, English Lite... | No courses | No courses | 800.000000 | 322.000000 | 1.000000 | 1363 Fulton Avenue\nBronx, NY 10456\n(40.83373... | 3.000000 | 16.000000 | 40.833739 | -73.902448 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 100.000000 | 41.000000 | 295.000000 | 23.000000 | 129.000000 | 8.100000 | 7.300000 | 7.200000 | 7.200000 | 6.700000 | 5.500000 | 6.000000 | 6.800000 | 7.300000 | 6.200000 | 7.100000 | 7.700000 | 7.400000 | 6.400000 | 6.700000 | 7.300000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
162 | 09X252 | MOTT HALL BRONX HIGH SCHOOL | 67.0 | 369.0 | 367.0 | 356.0 | 1092.0 | 0 | 0.0 | 0.0 | 0.0 | 87.714286 | 3.214286 | 27.714286 | 23.857143 | 31.857143 | 20112012.0 | 58.900000 | 354.000000 | 89.00000 | 85.000000 | 89.000000 | 91.000000 | 31.000000 | 8.800000 | 55.000000 | 15.500000 | 7.000000 | 28.000000 | 4.000000 | 1.100000 | 86.000000 | 24.300000 | 261.000000 | 73.700000 | 3.000000 | 0.800000 | 162.000000 | 45.800000 | 191.000000 | 54.000000 | 80.750000 | 83.700000 | 75.733333 | 90.866667 | 7.833333 | 9.433333 | 67.866667 | 81.400000 | 8.000000 | 9.133333 | 11.266667 | 1.900000 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 379.00000 | Traditional | French | No courses | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 1595 Bathgate Avenue\nBronx, NY 10457\n(40.839... | 3.000000 | 16.000000 | 40.839327 | -73.901310 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 81.000000 | 95.000000 | 20.000000 | 284.000000 | 20.000000 | 67.000000 | 9.000000 | 8.400000 | 8.200000 | 8.600000 | 6.600000 | 5.700000 | 6.200000 | 6.700000 | 6.600000 | 5.900000 | 6.300000 | 7.200000 | 7.400000 | 6.700000 | 6.900000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
163 | 09X260 | BRONX CENTER FOR SCIENCE AND MATHEMATICS | 81.0 | 459.0 | 480.0 | 457.0 | 1396.0 | 0 | 62.0 | 80.0 | 35.0 | 98.000000 | 4.304348 | 23.530435 | 18.217391 | 28.652174 | 20112012.0 | 70.000000 | 444.000000 | 131.00000 | 128.000000 | 103.000000 | 82.000000 | 7.000000 | 1.600000 | 62.000000 | 14.000000 | 34.000000 | 14.000000 | 26.000000 | 5.900000 | 108.000000 | 24.300000 | 305.000000 | 68.700000 | 5.000000 | 1.100000 | 205.000000 | 46.200000 | 239.000000 | 53.800000 | 73.500000 | 86.500000 | 76.333333 | 88.433333 | 28.666667 | 33.266667 | 47.700000 | 55.166667 | 10.166667 | 11.566667 | 10.466667 | 2.666667 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 461.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 730.000000 | 325.000000 | 1.000000 | 1363 Fulton Avenue\nBronx, NY 10456\n(40.83373... | 3.000000 | 16.000000 | 40.833739 | -73.902448 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 78.000000 | 60.000000 | 402.000000 | 21.000000 | 244.000000 | 8.700000 | 7.900000 | 7.900000 | 8.400000 | 7.700000 | 6.600000 | 7.000000 | 8.000000 | 7.100000 | 6.200000 | 6.900000 | 8.000000 | 7.800000 | 6.900000 | 7.300000 | 8.100000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
164 | 09X263 | VALIDUS PREPARATORY ACADEMY: AN EXPEDITIONARY ... | 74.0 | 356.0 | 363.0 | 356.0 | 1075.0 | 0 | 7.0 | 7.0 | 0.0 | 77.130435 | 2.913043 | 26.304348 | 23.956522 | 28.260870 | 20112012.0 | 76.100000 | 365.000000 | 87.00000 | 87.000000 | 97.000000 | 94.000000 | 44.000000 | 12.100000 | 59.000000 | 16.200000 | 26.000000 | 18.000000 | 4.000000 | 1.100000 | 125.000000 | 34.200000 | 233.000000 | 63.800000 | 1.000000 | 0.300000 | 161.000000 | 44.100000 | 204.000000 | 55.900000 | 86.000000 | 74.333333 | 52.333333 | 70.566667 | 0.533333 | 0.700000 | 51.766667 | 69.866667 | 21.966667 | 29.433333 | 11.000000 | 12.366667 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 374.00000 | Traditional | Spanish | No courses | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 1595 Bathgate Avenue\nBronx, NY 10457\n(40.839... | 3.000000 | 16.000000 | 40.839327 | -73.901310 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 54.000000 | 57.000000 | 56.000000 | 195.000000 | 13.000000 | 193.000000 | 8.400000 | 7.700000 | 7.800000 | 7.900000 | 7.900000 | 7.300000 | 8.400000 | 8.600000 | 7.600000 | 6.900000 | 7.400000 | 7.900000 | 8.000000 | 7.300000 | 7.900000 | 8.200000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
165 | 09X276 | LEADERSHIP INSTITUTE | 30.0 | 361.0 | 353.0 | 367.0 | 1081.0 | 0 | 17.0 | 17.0 | 7.0 | 46.538462 | 2.000000 | 21.942308 | 18.461538 | 24.807692 | 20112012.0 | 94.800000 | 230.000000 | 86.00000 | 70.000000 | 49.000000 | 25.000000 | 38.000000 | 16.500000 | 37.000000 | 16.100000 | 6.000000 | 24.000000 | 4.000000 | 1.700000 | 76.000000 | 33.000000 | 146.000000 | 63.500000 | 3.000000 | 1.300000 | 120.000000 | 52.200000 | 110.000000 | 47.800000 | 49.250000 | 58.866667 | 46.833333 | 80.933333 | 4.600000 | 7.833333 | 42.233333 | 73.066667 | 12.100000 | 19.066667 | 12.966667 | 22.000000 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 227.00000 | Traditional | No Language Classes | No courses | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 1701 Fulton Avenue\nBronx, NY 10457\n(40.84127... | 3.000000 | 15.000000 | 40.841271 | -73.897979 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 82.000000 | 14.000000 | 200.000000 | 18.000000 | 32.000000 | 8.700000 | 8.200000 | 7.900000 | 8.200000 | 6.700000 | 5.000000 | 6.000000 | 6.400000 | 7.100000 | 6.300000 | 7.200000 | 7.800000 | 7.500000 | 6.500000 | 7.000000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
166 | 09X297 | MORRIS ACADEMY FOR COLLABORATIVE STUDIES | 38.0 | 386.0 | 386.0 | 376.0 | 1148.0 | 0 | 0.0 | 0.0 | 0.0 | 68.965517 | 2.931034 | 23.868966 | 20.172414 | 27.620690 | 20112012.0 | 79.100000 | 450.000000 | 148.00000 | 110.000000 | 101.000000 | 91.000000 | 86.000000 | 19.100000 | 101.000000 | 22.400000 | 68.000000 | 19.000000 | 2.000000 | 0.400000 | 117.000000 | 26.000000 | 329.000000 | 73.100000 | 2.000000 | 0.400000 | 242.000000 | 53.800000 | 208.000000 | 46.200000 | 60.285714 | 72.980000 | 24.940000 | 34.260000 | 0.000000 | 0.000000 | 24.940000 | 34.260000 | 48.040000 | 65.740000 | 14.240000 | 9.280000 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 464.00000 | Traditional | Japanese, Spanish | English Language and Composition, Spanish Lang... | No courses | No courses | 815.000000 | 330.000000 | 1.000000 | 1110 Boston Road\nBronx, NY 10456\n(40.8276026... | 3.000000 | 16.000000 | 40.827603 | -73.904475 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 84.000000 | 39.000000 | 321.000000 | 31.000000 | 154.000000 | 8.400000 | 7.900000 | 7.500000 | 8.000000 | 6.800000 | 7.100000 | 7.200000 | 7.600000 | 6.400000 | 5.700000 | 6.400000 | 7.300000 | 7.200000 | 6.900000 | 7.000000 | 7.600000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
167 | 09X324 | BRONX EARLY COLLEGE ACADEMY FOR TEACHING & LEA... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 83.875000 | 3.125000 | 27.962500 | 26.000000 | 30.000000 | 20112012.0 | 79.400000 | 493.000000 | 77.00000 | 75.000000 | 81.000000 | 147.334928 | 54.000000 | 11.000000 | 80.000000 | 16.200000 | 21.000000 | 21.000000 | 15.000000 | 3.000000 | 158.000000 | 32.000000 | 318.000000 | 64.500000 | 1.000000 | 0.200000 | 239.000000 | 48.500000 | 254.000000 | 51.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10456.00000 | 508.00000 | Traditional | French, Spanish | No courses | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 250 East 164 Street\nBronx, NY 10456\n(40.8287... | 4.000000 | 16.000000 | 40.828714 | -73.917756 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 88.000000 | 88.000000 | 60.000000 | 323.000000 | 22.000000 | 207.000000 | 8.500000 | 8.200000 | 8.000000 | 8.100000 | 6.600000 | 5.100000 | 6.100000 | 6.700000 | 6.700000 | 6.700000 | 7.100000 | 8.200000 | 7.300000 | 6.600000 | 7.100000 | 7.700000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
168 | 09X329 | DREAMYARD PREPARATORY SCHOOL | 51.0 | 382.0 | 365.0 | 391.0 | 1138.0 | 0 | 15.0 | 15.0 | 0.0 | 71.956522 | 3.347826 | 20.452174 | 16.130435 | 24.086957 | 20112012.0 | 80.000000 | 349.000000 | 136.00000 | 106.000000 | 51.000000 | 56.000000 | 85.000000 | 24.400000 | 68.000000 | 19.500000 | 9.000000 | 38.000000 | 0.000000 | 0.000000 | 94.000000 | 26.900000 | 244.000000 | 69.900000 | 1.000000 | 0.300000 | 154.000000 | 44.100000 | 195.000000 | 55.900000 | 48.000000 | 47.850000 | 34.400000 | 71.950000 | 3.200000 | 6.800000 | 31.200000 | 65.150000 | 13.450000 | 28.050000 | 35.500000 | 15.600000 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 345.00000 | Traditional | Spanish | Biology, English Language and Composition, Eng... | No courses | No courses | 840.000000 | 315.000000 | 1.000000 | 240 East 172 Street\nBronx, NY 10457\n(40.8403... | 4.000000 | 16.000000 | 40.840373 | -73.910838 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 80.000000 | 40.000000 | 276.000000 | 20.000000 | 120.000000 | 8.300000 | 7.900000 | 7.700000 | 8.200000 | 6.100000 | 5.400000 | 6.600000 | 6.700000 | 6.000000 | 5.800000 | 6.300000 | 6.900000 | 6.800000 | 6.400000 | 6.900000 | 7.300000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
169 | 09X365 | ACADEMY FOR LANGUAGE AND TECHNOLOGY | 54.0 | 315.0 | 339.0 | 297.0 | 951.0 | 0 | 20.0 | 20.0 | 20.0 | 110.214286 | 4.500000 | 23.714286 | 18.357143 | 28.000000 | 20112012.0 | 85.700000 | 336.000000 | 98.00000 | 98.000000 | 89.000000 | 51.000000 | 291.000000 | 86.600000 | 3.000000 | 0.900000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 2.000000 | 0.600000 | 334.000000 | 99.400000 | 0.000000 | 0.000000 | 164.000000 | 48.800000 | 172.000000 | 51.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10453.00000 | 301.00000 | Traditional | No Language Classes | Spanish Language and Culture | Art History, Biology, Chemistry, Psychology, S... | French, Italian | 800.000000 | 400.000000 | 3.000000 | 1700 Macombs Road\nBronx, NY 10453\n(40.849102... | 5.000000 | 14.000000 | 40.849102 | -73.916088 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 79.000000 | 97.000000 | 50.000000 | 277.000000 | 29.000000 | 169.000000 | 9.200000 | 8.600000 | 8.100000 | 8.600000 | 6.900000 | 5.400000 | 6.100000 | 7.000000 | 7.500000 | 6.500000 | 7.200000 | 7.700000 | 7.900000 | 6.800000 | 7.100000 | 7.800000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
170 | 09X403 | BRONX INTERNATIONAL HIGH SCHOOL | 49.0 | 314.0 | 312.0 | 339.0 | 965.0 | 0 | 0.0 | 0.0 | 0.0 | 155.222222 | 10.222222 | 15.611111 | 12.444444 | 22.000000 | 20112012.0 | 82.300000 | 403.000000 | 88.00000 | 128.000000 | 121.000000 | 66.000000 | 351.000000 | 87.100000 | 5.000000 | 1.200000 | 4.000000 | 1.000000 | 4.000000 | 1.000000 | 92.000000 | 22.800000 | 291.000000 | 72.200000 | 15.000000 | 3.700000 | 184.000000 | 45.700000 | 219.000000 | 54.300000 | 65.000000 | 61.214286 | 30.885714 | 50.800000 | 0.228571 | 0.314286 | 30.642857 | 50.485714 | 30.342857 | 49.200000 | 29.042857 | 5.514286 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 414.00000 | International School | French | No courses | No courses | No courses | 900.000000 | 345.000000 | 1.000000 | 1110 Boston Road\nBronx, NY 10456\n(40.8276026... | 3.000000 | 16.000000 | 40.827603 | -73.904475 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 75.000000 | 56.000000 | 15.000000 | 289.000000 | 15.000000 | 52.000000 | 8.400000 | 8.300000 | 7.800000 | 8.300000 | 6.800000 | 6.400000 | 7.500000 | 8.200000 | 7.000000 | 6.800000 | 7.200000 | 7.600000 | 7.400000 | 7.200000 | 7.500000 | 8.100000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
171 | 09X404 | SCHOOL FOR EXCELLENCE | 32.0 | 363.0 | 360.0 | 351.0 | 1074.0 | 0 | 0.0 | 0.0 | 0.0 | 84.944444 | 3.833333 | 24.277778 | 21.333333 | 28.166667 | 20112012.0 | 81.400000 | 386.000000 | 110.00000 | 100.000000 | 83.000000 | 93.000000 | 80.000000 | 20.700000 | 101.000000 | 26.200000 | 40.000000 | 35.000000 | 1.000000 | 0.300000 | 133.000000 | 34.500000 | 249.000000 | 64.500000 | 0.000000 | 0.000000 | 202.000000 | 52.300000 | 184.000000 | 47.700000 | 83.285714 | 67.628571 | 25.114286 | 37.985714 | 0.000000 | 0.000000 | 25.114286 | 37.985714 | 42.500000 | 62.014286 | 20.685714 | 6.857143 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 396.00000 | Traditional | Spanish | No courses | No courses | No courses | 815.000000 | 245.000000 | 1.000000 | 1110 Boston Road\nBronx, NY 10456\n(40.8276026... | 3.000000 | 16.000000 | 40.827603 | -73.904475 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 100.000000 | 90.000000 | 343.000000 | 30.000000 | 346.000000 | 8.900000 | 7.600000 | 7.800000 | 7.800000 | 6.700000 | 7.000000 | 7.000000 | 7.400000 | 6.900000 | 6.100000 | 6.300000 | 7.300000 | 7.500000 | 6.900000 | 7.000000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
172 | 09X412 | BRONX HIGH SCHOOL OF BUSINESS | 34.0 | 356.0 | 376.0 | 351.0 | 1083.0 | 0 | 26.0 | 31.0 | 9.0 | 87.500000 | 4.035714 | 19.917857 | 16.928571 | 23.000000 | 20112012.0 | 77.600000 | 401.000000 | 115.00000 | 118.000000 | 94.000000 | 74.000000 | 93.000000 | 23.200000 | 93.000000 | 23.200000 | 21.000000 | 53.000000 | 3.000000 | 0.700000 | 155.000000 | 38.700000 | 240.000000 | 59.900000 | 2.000000 | 0.500000 | 220.000000 | 54.900000 | 181.000000 | 45.100000 | 88.571429 | 47.266667 | 34.566667 | 72.833333 | 12.133333 | 26.116667 | 22.416667 | 46.700000 | 12.716667 | 27.166667 | 31.150000 | 18.583333 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 359.00000 | Traditional | Spanish | English Literature and Composition, Spanish La... | No courses | No courses | 745.000000 | 315.000000 | 1.000000 | 240 East 172 Street\nBronx, NY 10457\n(40.8403... | 4.000000 | 16.000000 | 40.840373 | -73.910838 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 93.000000 | 18.000000 | 374.000000 | 27.000000 | 70.000000 | 7.800000 | 7.600000 | 7.200000 | 7.400000 | 5.900000 | 5.700000 | 6.000000 | 6.400000 | 6.100000 | 5.700000 | 6.200000 | 7.100000 | 6.600000 | 6.300000 | 6.400000 | 7.000000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
173 | 09X413 | BRONX HIGH SCHOOL FOR MEDICAL SCIENCE | 64.0 | 400.0 | 419.0 | 402.0 | 1221.0 | 0 | 0.0 | 0.0 | 0.0 | 98.437500 | 4.062500 | 24.125000 | 20.125000 | 27.937500 | 20112012.0 | 76.900000 | 455.000000 | 94.00000 | 93.000000 | 67.000000 | 33.000000 | 26.000000 | 5.700000 | 39.000000 | 8.600000 | 6.000000 | 21.000000 | 24.000000 | 5.300000 | 167.000000 | 36.700000 | 263.000000 | 57.800000 | 1.000000 | 0.200000 | 192.000000 | 42.200000 | 263.000000 | 57.800000 | 93.000000 | 81.716667 | 59.483333 | 70.966667 | 15.516667 | 17.800000 | 43.983333 | 53.166667 | 22.283333 | 29.033333 | 12.950000 | 4.150000 | Bronx | 6.000000 | 12.0 | Bronx | 10457.00000 | 465.00000 | Traditional | Spanish | Spanish Language and Culture | No courses | No courses | 745.000000 | 315.000000 | 1.000000 | 240 East 172 Street\nBronx, NY 10457\n(40.8403... | 4.000000 | 16.000000 | 40.840373 | -73.910838 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 30.000000 | 405.000000 | 26.000000 | 118.000000 | 8.800000 | 8.000000 | 7.700000 | 8.300000 | 8.100000 | 8.100000 | 8.700000 | 8.700000 | 6.000000 | 5.600000 | 5.800000 | 6.900000 | 7.600000 | 7.200000 | 7.400000 | 8.000000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
174 | 09X414 | JONATHAN LEVIN HIGH SCHOOL FOR MEDIA AND COMMU... | 35.0 | 379.0 | 364.0 | 379.0 | 1122.0 | 0 | 18.0 | 18.0 | 0.0 | 88.380952 | 3.857143 | 19.123810 | 15.904762 | 22.000000 | 20112012.0 | 77.700000 | 382.000000 | 105.00000 | 107.000000 | 91.000000 | 79.000000 | 147.000000 | 38.500000 | 80.000000 | 20.900000 | 2.000000 | 47.000000 | 2.000000 | 0.500000 | 85.000000 | 22.300000 | 288.000000 | 75.400000 | 6.000000 | 1.600000 | 204.000000 | 53.400000 | 178.000000 | 46.600000 | 74.000000 | 54.333333 | 32.583333 | 60.783333 | 0.266667 | 0.566667 | 32.300000 | 60.200000 | 22.050000 | 39.700000 | 31.116667 | 8.050000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.836349 | -73.906240 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 100.000000 | 16.000000 | 281.000000 | 32.000000 | 59.000000 | 8.700000 | 8.200000 | 7.900000 | 8.300000 | 6.700000 | 6.600000 | 6.600000 | 7.300000 | 6.300000 | 5.700000 | 6.100000 | 6.900000 | 7.200000 | 6.900000 | 6.900000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
175 | 09X505 | BRONX SCHOOL FOR LAW, GOVERNMENT AND JUSTICE | 80.0 | 404.0 | 418.0 | 402.0 | 1224.0 | 0 | 45.0 | 55.0 | 27.0 | 73.382353 | 2.647059 | 26.320588 | 23.147059 | 28.852941 | 20112012.0 | 66.200000 | 763.000000 | 153.00000 | 150.000000 | 100.000000 | 83.000000 | 50.000000 | 6.600000 | 107.000000 | 14.000000 | 27.000000 | 45.000000 | 15.000000 | 2.000000 | 232.000000 | 30.400000 | 505.000000 | 66.200000 | 8.000000 | 1.000000 | 350.000000 | 45.900000 | 413.000000 | 54.100000 | 99.857143 | 70.600000 | 47.714286 | 67.300000 | 3.557143 | 5.071429 | 44.142857 | 62.200000 | 22.914286 | 32.700000 | 17.014286 | 8.085714 | Bronx | 6.000000 | 12.0 | Bronx | 10451.00000 | 773.00000 | Traditional | Spanish | Biology, English Literature and Composition, S... | No courses | No courses | 815.000000 | 300.000000 | 2.000000 | 244 East 163 Street\nBronx, NY 10451\n(40.8275... | 4.000000 | 16.000000 | 40.827589 | -73.918668 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 91.000000 | 61.000000 | 588.000000 | 42.000000 | 399.000000 | 8.300000 | 7.700000 | 7.400000 | 8.000000 | 7.600000 | 6.900000 | 7.200000 | 7.500000 | 6.500000 | 6.200000 | 6.600000 | 7.500000 | 7.500000 | 6.900000 | 7.100000 | 7.700000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
176 | 09X517 | FREDERICK DOUGLASS ACADEMY III SECONDARY SCHOOL | 50.0 | 368.0 | 384.0 | 369.0 | 1121.0 | 0 | 26.0 | 36.0 | 0.0 | 53.388889 | 2.333333 | 21.780556 | 18.972222 | 24.222222 | 20112012.0 | 79.700000 | 532.000000 | 125.00000 | 110.000000 | 81.000000 | 71.000000 | 34.000000 | 6.400000 | 94.000000 | 17.700000 | 35.000000 | 35.000000 | 6.000000 | 1.100000 | 299.000000 | 56.200000 | 220.000000 | 41.400000 | 2.000000 | 0.400000 | 274.000000 | 51.500000 | 258.000000 | 48.500000 | 62.000000 | 81.125000 | 51.475000 | 63.450000 | 0.725000 | 0.900000 | 50.700000 | 62.550000 | 29.625000 | 36.550000 | 15.300000 | 2.025000 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 410.00000 | Traditional | French, Italian, Spanish | Art History, Biology, Calculus AB, English Lan... | No courses | No courses | 830.000000 | 400.000000 | 1.000000 | 3630 Third Avenue\nBronx, NY 10456\n(40.834167... | 3.000000 | 16.000000 | 40.834167 | -73.904033 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 95.000000 | 78.000000 | 61.000000 | 564.000000 | 32.000000 | 336.000000 | 8.400000 | 8.000000 | 8.100000 | 8.200000 | 6.100000 | 5.500000 | 6.200000 | 6.600000 | 6.500000 | 6.200000 | 6.500000 | 7.600000 | 7.000000 | 6.600000 | 6.900000 | 7.500000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
177 | 09X525 | BRONX LEADERSHIP ACADEMY HIGH SCHOOL | 114.0 | 384.0 | 394.0 | 388.0 | 1166.0 | 0 | 40.0 | 42.0 | 8.0 | 103.111111 | 3.888889 | 25.277778 | 22.185185 | 27.925926 | 20112012.0 | 76.900000 | 705.000000 | 261.00000 | 172.000000 | 123.000000 | 149.000000 | 68.000000 | 9.600000 | 143.000000 | 20.300000 | 25.000000 | 69.000000 | 5.000000 | 0.700000 | 290.000000 | 41.100000 | 402.000000 | 57.000000 | 0.000000 | 0.000000 | 305.000000 | 43.300000 | 400.000000 | 56.700000 | 159.285714 | 66.828571 | 36.171429 | 55.042857 | 4.800000 | 7.228571 | 31.371429 | 47.814286 | 30.671429 | 44.957143 | 16.614286 | 12.228571 | Bronx | 9.000000 | 12.0 | Bronx | 10457.00000 | 711.00000 | Traditional | Spanish | Biology, English Language and Composition, Uni... | No courses | No courses | 800.000000 | 344.000000 | 1.000000 | 1710 Webster Avenue\nBronx, NY 10457\n(40.8435... | 3.000000 | 15.000000 | 40.843581 | -73.903220 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 76.000000 | 10.000000 | 507.000000 | 31.000000 | 59.000000 | 8.300000 | 7.800000 | 7.600000 | 7.900000 | 7.000000 | 6.600000 | 7.200000 | 7.600000 | 6.100000 | 5.800000 | 6.300000 | 7.300000 | 7.100000 | 6.700000 | 7.000000 | 7.600000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
178 | 09X543 | HIGH SCHOOL FOR VIOLIN AND DANCE | 27.0 | 353.0 | 315.0 | 371.0 | 1039.0 | 0 | 0.0 | 0.0 | 0.0 | 53.315789 | 2.157895 | 24.468421 | 22.631579 | 26.473684 | 20112012.0 | 84.300000 | 323.000000 | 162.00000 | 85.000000 | 42.000000 | 34.000000 | 28.000000 | 8.700000 | 72.000000 | 22.300000 | 38.000000 | 16.000000 | 1.000000 | 0.300000 | 119.000000 | 36.800000 | 202.000000 | 62.500000 | 0.000000 | 0.000000 | 47.000000 | 14.600000 | 276.000000 | 85.400000 | 45.333333 | 75.816667 | 50.166667 | 64.950000 | 5.116667 | 6.316667 | 45.033333 | 58.633333 | 25.633333 | 35.066667 | 14.450000 | 7.133333 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 378.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 1110 Boston Road\nBronx, NY 10456\n(40.8276026... | 3.000000 | 16.000000 | 40.827603 | -73.904475 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 88.000000 | 30.000000 | 192.000000 | 15.000000 | 62.000000 | 8.600000 | 7.900000 | 7.900000 | 8.100000 | 6.800000 | 6.100000 | 7.000000 | 7.300000 | 6.600000 | 6.000000 | 6.800000 | 7.400000 | 7.300000 | 6.700000 | 7.200000 | 7.600000 | 09 | DISTRICT 09 | 89.27 | 34518 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
179 | 10X141 | RIVERDALE / KINGSBRIDGE ACADEMY (MIDDLE SCHOOL... | 113.0 | 438.0 | 455.0 | 440.0 | 1333.0 | 0 | 133.0 | 184.0 | 119.0 | 83.441176 | 3.235294 | 22.455882 | 19.529412 | 24.617647 | 20112012.0 | 39.700000 | 1337.000000 | 175.00000 | 190.000000 | 135.000000 | 130.000000 | 90.000000 | 6.700000 | 203.000000 | 15.200000 | 11.000000 | 65.000000 | 117.000000 | 8.800000 | 174.000000 | 13.000000 | 709.000000 | 53.000000 | 333.000000 | 24.900000 | 692.000000 | 51.800000 | 645.000000 | 48.200000 | 122.428571 | 82.942857 | 59.514286 | 71.214286 | 11.442857 | 13.700000 | 48.057143 | 57.528571 | 23.442857 | 28.785714 | 12.800000 | 3.057143 | Bronx | 6.000000 | 12.0 | Bronx | 10463.00000 | 1355.00000 | Traditional | French, Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 820.000000 | 240.000000 | 1.000000 | 660 West 237 Street\nBronx, NY 10463\n(40.8883... | 8.000000 | 11.000000 | 40.888373 | -73.914093 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 89.000000 | 85.000000 | 27.000000 | 1165.000000 | 76.000000 | 307.000000 | 7.100000 | 6.800000 | 6.900000 | 6.900000 | 5.900000 | 5.600000 | 5.700000 | 6.300000 | 5.900000 | 5.500000 | 6.200000 | 7.000000 | 6.300000 | 6.000000 | 6.300000 | 6.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
180 | 10X213 | BRONX ENGINEERING AND TECHNOLOGY ACADEMY | 86.0 | 373.0 | 412.0 | 365.0 | 1150.0 | 0 | 107.0 | 228.0 | 10.0 | 81.285714 | 3.571429 | 22.790476 | 19.190476 | 26.619048 | 20112012.0 | 79.800000 | 444.000000 | 148.00000 | 126.000000 | 70.000000 | 100.000000 | 69.000000 | 15.500000 | 95.000000 | 21.400000 | 70.000000 | 4.000000 | 23.000000 | 5.200000 | 131.000000 | 29.500000 | 285.000000 | 64.200000 | 4.000000 | 0.900000 | 367.000000 | 82.700000 | 77.000000 | 17.300000 | 57.200000 | 80.300000 | 66.400000 | 82.150000 | 17.600000 | 22.400000 | 48.800000 | 59.750000 | 13.900000 | 17.850000 | 8.875000 | 6.500000 | Bronx | 9.000000 | 12.0 | Bronx | 10463.00000 | 420.00000 | Traditional | No Language Classes | Calculus AB, Chemistry, English Language and C... | No courses | No courses | 815.000000 | 430.000000 | 1.000000 | 99 Terrace View Avenue\nBronx, NY 10463\n(40.8... | 8.000000 | 10.000000 | 40.877049 | -73.912337 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 87.000000 | 39.000000 | 332.000000 | 27.000000 | 157.000000 | 8.400000 | 7.600000 | 7.500000 | 7.700000 | 6.300000 | 6.300000 | 6.600000 | 7.000000 | 6.500000 | 5.900000 | 6.800000 | 7.500000 | 7.100000 | 6.600000 | 7.000000 | 7.400000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
181 | 10X225 | THEATRE ARTS PRODUCTION COMPANY SCHOOL | 59.0 | 405.0 | 391.0 | 394.0 | 1190.0 | 0 | 17.0 | 27.0 | 0.0 | 54.285714 | 2.214286 | 24.842857 | 23.642857 | 26.000000 | 20112012.0 | 67.400000 | 524.000000 | 86.00000 | 70.000000 | 82.000000 | 65.000000 | 23.000000 | 4.400000 | 99.000000 | 18.900000 | 73.000000 | 3.000000 | 6.000000 | 1.100000 | 143.000000 | 27.300000 | 365.000000 | 69.700000 | 6.000000 | 1.100000 | 162.000000 | 30.900000 | 362.000000 | 69.100000 | 65.000000 | 92.833333 | 77.533333 | 83.500000 | 15.866667 | 17.000000 | 61.733333 | 66.533333 | 15.300000 | 16.500000 | 5.533333 | 1.533333 | Bronx | 6.000000 | 12.0 | Bronx | 10457.00000 | 581.00000 | Traditional | Spanish | Calculus AB, English Literature and Composition | Calculus AB, English Language and Composition,... | Spanish | 830.000000 | 330.000000 | 3.000000 | 2225 Webster Avenue\nBronx, NY 10457\n(40.8546... | 5.000000 | 15.000000 | 40.854647 | -73.896646 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 89.000000 | 21.000000 | 450.000000 | 32.000000 | 98.000000 | 8.600000 | 7.800000 | 7.600000 | 8.200000 | 6.100000 | 5.000000 | 5.700000 | 6.700000 | 7.700000 | 6.900000 | 7.500000 | 8.000000 | 7.500000 | 6.600000 | 6.900000 | 7.600000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
182 | 10X237 | THE MARIE CURIE SCHOOL FOR MEDICINE, NURSING, ... | 79.0 | 382.0 | 393.0 | 382.0 | 1157.0 | 0 | 15.0 | 15.0 | 0.0 | 77.266667 | 3.033333 | 25.196667 | 21.600000 | 28.866667 | 20112012.0 | 71.500000 | 540.000000 | 189.00000 | 125.000000 | 135.000000 | 91.000000 | 36.000000 | 6.700000 | 84.000000 | 15.600000 | 39.000000 | 19.000000 | 8.000000 | 1.500000 | 192.000000 | 35.600000 | 310.000000 | 57.400000 | 18.000000 | 3.300000 | 89.000000 | 16.500000 | 451.000000 | 83.500000 | 72.000000 | 82.500000 | 61.400000 | 74.325000 | 0.350000 | 0.375000 | 61.050000 | 73.925000 | 21.125000 | 25.675000 | 13.925000 | 3.250000 | Bronx | 9.000000 | 12.0 | Bronx | 10463.00000 | 573.00000 | Traditional | Spanish | Biology, English Literature and Composition, U... | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 120 West 231 Street\nBronx, NY 10463\n(40.8759... | 8.000000 | 14.000000 | 40.875975 | -73.901235 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 62.000000 | 59.000000 | 47.000000 | 287.000000 | 17.000000 | 212.000000 | 8.100000 | 7.600000 | 7.400000 | 7.800000 | 6.000000 | 5.400000 | 6.100000 | 6.400000 | 5.900000 | 5.900000 | 5.900000 | 6.900000 | 6.700000 | 6.300000 | 6.500000 | 7.000000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
183 | 10X243 | WEST BRONX ACADEMY FOR THE FUTURE | 26.0 | 382.0 | 406.0 | 370.0 | 1158.0 | 0 | 25.0 | 29.0 | 14.0 | 58.000000 | 2.400000 | 23.106667 | 20.800000 | 25.033333 | 20112012.0 | 86.300000 | 636.000000 | 185.00000 | 85.000000 | 61.000000 | 39.000000 | 84.000000 | 13.200000 | 124.000000 | 19.500000 | 89.000000 | 15.000000 | 22.000000 | 3.500000 | 157.000000 | 24.700000 | 442.000000 | 69.500000 | 8.000000 | 1.300000 | 368.000000 | 57.900000 | 268.000000 | 42.100000 | 42.000000 | 46.425000 | 28.425000 | 59.150000 | 1.400000 | 2.650000 | 27.025000 | 56.500000 | 18.000000 | 40.850000 | 29.350000 | 16.600000 | Bronx | 6.000000 | 12.0 | Bronx | 10458.00000 | 611.00000 | Traditional | French, Spanish | Art History, Chemistry, English Language and C... | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 83.000000 | 100.000000 | 41.000000 | 490.000000 | 46.000000 | 223.000000 | 8.000000 | 7.400000 | 7.400000 | 7.700000 | 7.000000 | 6.300000 | 7.400000 | 7.700000 | 6.600000 | 6.000000 | 7.000000 | 7.600000 | 7.200000 | 6.600000 | 7.300000 | 7.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
184 | 10X268 | KINGSBRIDGE INTERNATIONAL HIGH SCHOOL | 52.0 | 304.0 | 356.0 | 302.0 | 962.0 | 0 | 32.0 | 37.0 | 0.0 | 195.071429 | 6.571429 | 29.628571 | 27.000000 | 32.428571 | 20112012.0 | 95.100000 | 497.000000 | 111.00000 | 127.000000 | 129.000000 | 130.000000 | 441.000000 | 88.700000 | 2.000000 | 0.400000 | 0.000000 | 0.000000 | 34.000000 | 6.800000 | 27.000000 | 5.400000 | 421.000000 | 84.700000 | 15.000000 | 3.000000 | 260.000000 | 52.300000 | 237.000000 | 47.700000 | 121.000000 | 58.733333 | 34.466667 | 58.733333 | 10.466667 | 17.833333 | 24.000000 | 40.933333 | 24.233333 | 41.266667 | 25.533333 | 14.666667 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 443.00000 | International School | No Language Classes | English Language and Composition | No courses | No courses | 745.000000 | 245.000000 | 1.000000 | 2780 Reservoir Avenue\nBronx, NY 10468\n(40.87... | 7.000000 | 11.000000 | 40.870377 | -73.898163 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 88.000000 | 36.000000 | 389.000000 | 21.000000 | 155.000000 | 8.200000 | 7.900000 | 7.500000 | 7.900000 | 6.900000 | 6.000000 | 7.600000 | 7.900000 | 6.900000 | 6.000000 | 6.600000 | 7.400000 | 7.300000 | 6.600000 | 7.200000 | 7.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
185 | 10X284 | BRONX SCHOOL OF LAW AND FINANCE | 54.0 | 402.0 | 395.0 | 385.0 | 1182.0 | 0 | 21.0 | 27.0 | 0.0 | 63.551724 | 2.793103 | 20.968966 | 16.448276 | 24.896552 | 20112012.0 | 74.200000 | 422.000000 | 137.00000 | 108.000000 | 91.000000 | 86.000000 | 30.000000 | 7.100000 | 64.000000 | 15.200000 | 30.000000 | 21.000000 | 3.000000 | 0.700000 | 133.000000 | 31.500000 | 275.000000 | 65.200000 | 11.000000 | 2.600000 | 239.000000 | 56.600000 | 183.000000 | 43.400000 | 67.142857 | 67.760000 | 55.780000 | 82.500000 | 7.160000 | 10.480000 | 48.640000 | 72.020000 | 11.980000 | 17.500000 | 16.020000 | 13.200000 | Bronx | 9.000000 | 12.0 | Bronx | 10463.00000 | 435.00000 | Traditional | Latin | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 99 Terrace View Avenue\nBronx, NY 10463\n(40.8... | 8.000000 | 10.000000 | 40.877049 | -73.912337 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 79.000000 | 32.000000 | 320.000000 | 23.000000 | 120.000000 | 8.000000 | 7.400000 | 7.300000 | 7.600000 | 6.800000 | 6.700000 | 6.700000 | 7.000000 | 6.100000 | 6.000000 | 6.400000 | 7.100000 | 7.000000 | 6.700000 | 6.800000 | 7.200000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
186 | 10X319 | PROVIDING URBAN LEARNERS SUCCESS IN EDUCATION ... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 61.285714 | 3.571429 | 16.957143 | 14.571429 | 22.000000 | 20112012.0 | 81.800000 | 213.000000 | 45.00000 | 70.000000 | 24.000000 | 74.000000 | 11.000000 | 5.200000 | 35.000000 | 16.400000 | 14.000000 | 1.000000 | 0.000000 | 0.000000 | 80.000000 | 37.600000 | 131.000000 | 61.500000 | 1.000000 | 0.500000 | 86.000000 | 40.400000 | 127.000000 | 59.600000 | 64.000000 | 26.916667 | 13.783333 | 57.400000 | 0.000000 | 0.000000 | 13.783333 | 57.400000 | 13.150000 | 42.600000 | 50.700000 | 20.866667 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 73.000000 | 1.000000 | 145.000000 | 11.000000 | 2.000000 | 9.100000 | 6.800000 | 6.100000 | 7.500000 | 7.700000 | 5.700000 | 6.100000 | 6.900000 | 8.400000 | 7.300000 | 7.900000 | 8.300000 | 8.200000 | 6.600000 | 6.800000 | 7.600000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
187 | 10X342 | INTERNATIONAL SCHOOL FOR LIBERAL ARTS | 49.0 | 300.0 | 333.0 | 301.0 | 934.0 | 0 | 55.0 | 73.0 | 45.0 | 141.692308 | 5.538462 | 23.723077 | 16.615385 | 28.769231 | 20112012.0 | 78.300000 | 606.000000 | 87.00000 | 96.000000 | 121.000000 | 112.000000 | 484.000000 | 79.900000 | 28.000000 | 4.600000 | 11.000000 | 3.000000 | 1.000000 | 0.200000 | 0.000000 | 0.000000 | 605.000000 | 99.800000 | 0.000000 | 0.000000 | 297.000000 | 49.000000 | 309.000000 | 51.000000 | 65.000000 | 63.400000 | 53.500000 | 83.533333 | 10.000000 | 13.833333 | 43.500000 | 69.666667 | 9.966667 | 16.466667 | 25.500000 | 9.100000 | Bronx | 6.000000 | 12.0 | Bronx | 10468.00000 | 543.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 2780 Reservoir Avenue\nBronx, NY 10468\n(40.87... | 7.000000 | 11.000000 | 40.870377 | -73.898163 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 92.000000 | 65.000000 | 488.000000 | 34.000000 | 316.000000 | 9.000000 | 8.300000 | 7.800000 | 8.300000 | 7.100000 | 6.500000 | 6.500000 | 7.200000 | 7.400000 | 6.400000 | 7.100000 | 7.700000 | 7.800000 | 7.100000 | 7.100000 | 7.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
188 | 10X368 | INsTECH ACADEMY (M.S. / HIGH SCHOOL 368) | 111.0 | 390.0 | 408.0 | 383.0 | 1181.0 | 0 | 40.0 | 54.0 | 17.0 | 95.375000 | 3.500000 | 26.691667 | 22.250000 | 29.791667 | 20112012.0 | 77.900000 | 1126.000000 | 171.00000 | 163.000000 | 107.000000 | 114.000000 | 136.000000 | 12.100000 | 161.000000 | 14.300000 | 53.000000 | 36.000000 | 45.000000 | 4.000000 | 134.000000 | 11.900000 | 922.000000 | 81.900000 | 23.000000 | 2.000000 | 551.000000 | 48.900000 | 575.000000 | 51.100000 | 109.600000 | 63.900000 | 32.080000 | 50.200000 | 4.260000 | 6.780000 | 27.780000 | 43.420000 | 31.800000 | 49.800000 | 22.360000 | 12.420000 | Bronx | 6.000000 | 12.0 | Bronx | 10463.00000 | 1036.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 2975 Tibbett Avenue\nBronx, NY 10463\n(40.8800... | 8.000000 | 11.000000 | 40.880050 | -73.909209 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 91.000000 | 51.000000 | 978.000000 | 72.000000 | 496.000000 | 8.600000 | 7.600000 | 7.600000 | 7.900000 | 7.400000 | 6.200000 | 6.600000 | 7.200000 | 6.500000 | 6.200000 | 6.600000 | 7.500000 | 7.500000 | 6.700000 | 6.900000 | 7.500000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
189 | 10X374 | KNOWLEDGE AND POWER PREPARATORY ACADEMY INTERN... | 61.0 | 392.0 | 401.0 | 387.0 | 1180.0 | 0 | 0.0 | 0.0 | 0.0 | 111.333333 | 4.809524 | 22.690476 | 17.857143 | 27.571429 | 20112012.0 | 75.300000 | 324.000000 | 98.00000 | 92.000000 | 68.000000 | 66.000000 | 30.000000 | 9.300000 | 36.000000 | 11.100000 | 15.000000 | 3.000000 | 3.000000 | 0.900000 | 114.000000 | 35.200000 | 194.000000 | 59.900000 | 10.000000 | 3.100000 | 153.000000 | 47.200000 | 171.000000 | 52.800000 | 1.666667 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10458.00000 | 467.00000 | Traditional | French, Spanish | No courses | No courses | No courses | 730.000000 | 400.000000 | 1.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 75.000000 | 329.000000 | 31.000000 | 258.000000 | 8.800000 | 8.500000 | 8.200000 | 8.800000 | 7.900000 | 6.900000 | 7.900000 | 8.500000 | 7.200000 | 6.600000 | 7.200000 | 8.000000 | 8.000000 | 7.300000 | 7.800000 | 8.400000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
190 | 10X397 | ENGLISH LANGUAGE LEARNERS AND INTERNATIONAL SU... | 38.0 | 343.0 | 356.0 | 330.0 | 1029.0 | 0 | 0.0 | 0.0 | 0.0 | 159.500000 | 8.800000 | 17.940000 | 14.500000 | 21.400000 | 20112012.0 | 92.800000 | 316.000000 | 95.00000 | 96.000000 | 75.000000 | 50.000000 | 254.000000 | 80.400000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 22.000000 | 7.000000 | 52.000000 | 16.500000 | 229.000000 | 72.500000 | 6.000000 | 1.900000 | 176.000000 | 55.700000 | 140.000000 | 44.300000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 14.000000 | 26.000000 | 166.000000 | 2.000000 | 53.000000 | 8.700000 | 7.900000 | 7.600000 | 8.100000 | 8.400000 | 7.800000 | 8.300000 | 9.300000 | 7.400000 | 6.500000 | 7.000000 | 7.800000 | 8.100000 | 7.300000 | 7.500000 | 8.200000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
191 | 10X433 | HIGH SCHOOL FOR TEACHING AND THE PROFESSIONS | 57.0 | 370.0 | 371.0 | 365.0 | 1106.0 | 0 | 62.0 | 83.0 | 13.0 | 88.080000 | 4.080000 | 20.532000 | 17.440000 | 22.960000 | 20112012.0 | 88.100000 | 473.000000 | 230.00000 | 107.000000 | 89.000000 | 47.000000 | 84.000000 | 17.800000 | 95.000000 | 20.100000 | 8.000000 | 44.000000 | 12.000000 | 2.500000 | 119.000000 | 25.200000 | 333.000000 | 70.400000 | 9.000000 | 1.900000 | 200.000000 | 42.300000 | 273.000000 | 57.700000 | 114.428571 | 63.500000 | 37.342857 | 57.771429 | 2.871429 | 4.642857 | 34.442857 | 53.128571 | 26.157143 | 42.228571 | 20.457143 | 14.028571 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 499.00000 | Traditional | Spanish | English Literature and Composition, Spanish La... | No courses | No courses | 845.000000 | 345.000000 | 1.000000 | 2780 Reservoir Avenue\nBronx, NY 10468\n(40.87... | 7.000000 | 11.000000 | 40.870377 | -73.898163 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 27.000000 | 384.000000 | 35.000000 | 112.000000 | 8.400000 | 8.000000 | 7.900000 | 7.900000 | 7.300000 | 7.800000 | 8.000000 | 8.800000 | 5.900000 | 5.400000 | 6.100000 | 6.700000 | 7.200000 | 7.100000 | 7.400000 | 7.800000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
192 | 10X434 | BELMONT PREPARATORY HIGH SCHOOL | 51.0 | 404.0 | 418.0 | 400.0 | 1222.0 | 0 | 31.0 | 45.0 | 10.0 | 98.800000 | 4.700000 | 20.035000 | 16.100000 | 24.050000 | 20112012.0 | 76.800000 | 407.000000 | 136.00000 | 111.000000 | 73.000000 | 87.000000 | 46.000000 | 11.300000 | 64.000000 | 15.700000 | 2.000000 | 43.000000 | 13.000000 | 3.200000 | 118.000000 | 29.000000 | 267.000000 | 65.600000 | 7.000000 | 1.700000 | 192.000000 | 47.200000 | 215.000000 | 52.800000 | 78.714286 | 57.366667 | 41.866667 | 70.683333 | 4.516667 | 8.050000 | 37.316667 | 62.666667 | 15.733333 | 29.666667 | 26.800000 | 13.450000 | Bronx | 9.000000 | 12.0 | Bronx | 10458.00000 | 410.00000 | Traditional | Spanish | Art History, Calculus AB, Chemistry, English L... | No courses | No courses | 815.000000 | 345.000000 | 1.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 63.000000 | 53.000000 | 295.000000 | 22.000000 | 195.000000 | 8.200000 | 6.900000 | 6.900000 | 7.300000 | 7.500000 | 6.600000 | 7.200000 | 7.800000 | 6.000000 | 5.400000 | 5.500000 | 6.700000 | 7.200000 | 6.300000 | 6.600000 | 7.300000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
193 | 10X437 | FORDHAM HIGH SCHOOL FOR THE ARTS | 48.0 | 355.0 | 350.0 | 372.0 | 1077.0 | 0 | 0.0 | 0.0 | 0.0 | 49.147059 | 2.294118 | 20.247059 | 17.294118 | 22.911765 | 20112012.0 | 78.300000 | 387.000000 | 112.00000 | 123.000000 | 91.000000 | 61.000000 | 48.000000 | 12.400000 | 87.000000 | 22.500000 | 18.000000 | 41.000000 | 6.000000 | 1.600000 | 138.000000 | 35.700000 | 238.000000 | 61.500000 | 5.000000 | 1.300000 | 167.000000 | 43.200000 | 220.000000 | 56.800000 | 88.500000 | 55.033333 | 34.800000 | 67.483333 | 3.450000 | 4.500000 | 31.366667 | 62.966667 | 20.250000 | 32.516667 | 20.316667 | 15.216667 | Bronx | 9.000000 | 12.0 | Bronx | 10458.00000 | 407.00000 | Traditional | French, Spanish | Biology, Computer Science A, English Language ... | Biology, Computer Science A, English Language ... | French, Spanish | 800.000000 | 345.000000 | 1.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 70.000000 | 52.000000 | 23.000000 | 250.000000 | 17.000000 | 81.000000 | 8.400000 | 8.500000 | 8.500000 | 8.400000 | 6.300000 | 5.500000 | 6.100000 | 6.700000 | 7.000000 | 6.200000 | 7.100000 | 7.600000 | 7.200000 | 6.700000 | 7.200000 | 7.600000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
194 | 10X438 | FORDHAM LEADERSHIP ACADEMY FOR BUSINESS AND TE... | 63.0 | 367.0 | 385.0 | 367.0 | 1119.0 | 0 | 42.0 | 47.0 | 12.0 | 58.535714 | 2.750000 | 19.971429 | 17.571429 | 22.214286 | 20112012.0 | 78.900000 | 451.000000 | 162.00000 | 133.000000 | 72.000000 | 84.000000 | 75.000000 | 16.600000 | 93.000000 | 20.600000 | 21.000000 | 46.000000 | 12.000000 | 2.700000 | 125.000000 | 27.700000 | 306.000000 | 67.800000 | 6.000000 | 1.300000 | 286.000000 | 63.400000 | 165.000000 | 36.600000 | 118.285714 | 47.833333 | 33.683333 | 69.400000 | 1.566667 | 3.216667 | 32.116667 | 66.200000 | 14.166667 | 30.616667 | 24.950000 | 20.433333 | Bronx | 9.000000 | 12.0 | Bronx | 10458.00000 | 460.00000 | Traditional | Spanish | Biology, English Literature and Composition, S... | No courses | No courses | 800.000000 | 400.000000 | 1.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 52.000000 | 55.000000 | 64.000000 | 215.000000 | 21.000000 | 261.000000 | 8.500000 | 7.400000 | 7.300000 | 7.300000 | 5.600000 | 4.200000 | 5.700000 | 5.800000 | 5.800000 | 5.300000 | 5.900000 | 6.900000 | 6.600000 | 5.600000 | 6.300000 | 6.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
195 | 10X439 | BRONX HIGH SCHOOL FOR LAW AND COMMUNITY SERVICE | 65.0 | 366.0 | 364.0 | 352.0 | 1082.0 | 0 | 44.0 | 65.0 | 9.0 | 74.967742 | 3.483871 | 20.593548 | 16.838710 | 23.612903 | 20112012.0 | 80.200000 | 432.000000 | 154.00000 | 143.000000 | 53.000000 | 82.000000 | 58.000000 | 13.400000 | 90.000000 | 20.800000 | 29.000000 | 33.000000 | 10.000000 | 2.300000 | 133.000000 | 30.800000 | 279.000000 | 64.600000 | 4.000000 | 0.900000 | 192.000000 | 44.400000 | 240.000000 | 55.600000 | 89.285714 | 42.450000 | 28.550000 | 66.500000 | 1.900000 | 4.333333 | 26.650000 | 62.166667 | 13.900000 | 33.500000 | 34.666667 | 20.200000 | Bronx | 9.000000 | 12.0 | Bronx | 10458.00000 | 403.00000 | Traditional | Italian, Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 815.000000 | 400.000000 | 2.000000 | 500 East Fordham Road\nBronx, NY 10458\n(40.86... | 6.000000 | 15.000000 | 40.860012 | -73.888230 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 92.000000 | 43.000000 | 332.000000 | 33.000000 | 159.000000 | 7.500000 | 7.600000 | 7.200000 | 7.700000 | 6.900000 | 6.000000 | 6.200000 | 7.000000 | 6.000000 | 6.000000 | 6.500000 | 7.300000 | 6.800000 | 6.500000 | 6.600000 | 7.300000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
196 | 10X440 | DEWITT CLINTON HIGH SCHOOL | 443.0 | 419.0 | 426.0 | 410.0 | 1255.0 | 0 | 366.0 | 540.0 | 262.0 | 398.511628 | 15.697674 | 23.400000 | 16.488372 | 27.511628 | 20112012.0 | 74.800000 | 4159.000000 | 1380.00000 | 1119.000000 | 976.000000 | 684.000000 | 791.000000 | 19.000000 | 621.000000 | 14.900000 | 135.000000 | 352.000000 | 278.000000 | 6.700000 | 1282.000000 | 30.800000 | 2478.000000 | 59.600000 | 86.000000 | 2.100000 | 2126.000000 | 51.100000 | 2033.000000 | 48.900000 | 990.142857 | 57.114286 | 40.442857 | 70.957143 | 14.457143 | 25.414286 | 25.985714 | 45.528571 | 16.714286 | 29.100000 | 24.057143 | 14.757143 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 2746.00000 | Traditional | Latin, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 800.000000 | 246.000000 | 5.000000 | 100 West Mosholu Parkway South\nBronx, NY 1046... | 7.000000 | 11.000000 | 40.880082 | -73.885902 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 87.000000 | 33.000000 | 2820.000000 | 244.000000 | 1325.000000 | 5.700000 | 6.400000 | 6.500000 | 6.800000 | 6.000000 | 6.900000 | 7.300000 | 7.600000 | 5.200000 | 5.400000 | 6.000000 | 6.900000 | 5.700000 | 6.200000 | 6.600000 | 7.100000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
197 | 10X442 | CELIA CRUZ BRONX HIGH SCHOOL OF MUSIC, THE | 52.0 | 423.0 | 420.0 | 427.0 | 1270.0 | 0 | 31.0 | 35.0 | 8.0 | 86.333333 | 3.833333 | 23.261111 | 19.388889 | 26.666667 | 20112012.0 | 74.700000 | 423.000000 | 146.00000 | 144.000000 | 65.000000 | 68.000000 | 15.000000 | 3.500000 | 33.000000 | 7.800000 | 1.000000 | 2.000000 | 2.000000 | 0.500000 | 115.000000 | 27.200000 | 294.000000 | 69.500000 | 10.000000 | 2.400000 | 172.000000 | 40.700000 | 251.000000 | 59.300000 | 77.200000 | 71.940000 | 48.920000 | 67.800000 | 9.400000 | 12.760000 | 39.500000 | 55.040000 | 23.040000 | 32.200000 | 20.880000 | 5.080000 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 436.00000 | Traditional | Spanish | Biology, Chemistry, English Language and Compo... | No courses | No courses | 800.000000 | 345.000000 | 3.000000 | 2780 Reservoir Avenue\nBronx, NY 10468\n(40.87... | 7.000000 | 11.000000 | 40.870377 | -73.898163 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 77.000000 | 31.000000 | 335.000000 | 24.000000 | 115.000000 | 8.200000 | 7.800000 | 7.600000 | 7.800000 | 6.500000 | 4.600000 | 5.400000 | 6.000000 | 6.500000 | 6.200000 | 6.900000 | 7.400000 | 7.100000 | 6.200000 | 6.600000 | 7.100000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
198 | 10X445 | BRONX HIGH SCHOOL OF SCIENCE | 731.0 | 632.0 | 688.0 | 649.0 | 1969.0 | 0 | 1190.0 | 2435.0 | 2189.0 | 728.894737 | 23.000000 | 31.163158 | 23.368421 | 34.210526 | 20112012.0 | 34.200000 | 3013.000000 | 764.00000 | 770.000000 | 755.000000 | 724.000000 | 2.000000 | 0.100000 | 3.000000 | 0.100000 | 0.000000 | 0.000000 | 1912.000000 | 63.500000 | 105.000000 | 3.500000 | 216.000000 | 7.200000 | 764.000000 | 25.400000 | 1741.000000 | 57.800000 | 1272.000000 | 42.200000 | 614.000000 | 98.057143 | 98.057143 | 100.000000 | 97.271429 | 99.185714 | 0.785714 | 0.814286 | 0.000000 | 0.000000 | 1.785714 | 0.085714 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 3037.00000 | Specialized School | Chinese, French, Italian, Japanese, Latin, Mod... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 75 West 205 Street\nBronx, NY 10468\n(40.87705... | 7.000000 | 11.000000 | 40.877056 | -73.889780 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 98.000000 | 50.000000 | 45.000000 | 2956.000000 | 74.000000 | 1314.000000 | 8.100000 | 7.800000 | 7.600000 | 7.900000 | 7.400000 | 5.000000 | 5.300000 | 6.900000 | 6.800000 | 6.300000 | 6.700000 | 7.600000 | 7.400000 | 6.400000 | 6.500000 | 7.500000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
199 | 10X475 | JOHN F. KENNEDY HIGH SCHOOL | 109.0 | 351.0 | 362.0 | 339.0 | 1052.0 | 0 | 46.0 | 48.0 | 19.0 | 117.400000 | 4.800000 | 22.797143 | 19.171429 | 25.457143 | 20112012.0 | 77.800000 | 706.000000 | 56.00000 | 258.000000 | 191.000000 | 201.000000 | 168.000000 | 23.800000 | 147.000000 | 20.800000 | 43.000000 | 57.000000 | 5.000000 | 0.700000 | 248.000000 | 35.100000 | 443.000000 | 62.700000 | 10.000000 | 1.400000 | 482.000000 | 68.300000 | 224.000000 | 31.700000 | 711.142857 | 37.714286 | 17.514286 | 47.271429 | 2.600000 | 7.271429 | 14.928571 | 40.014286 | 20.200000 | 52.785714 | 28.485714 | 25.314286 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 31.000000 | 43.000000 | 8.000000 | 314.000000 | 30.000000 | 80.000000 | 7.300000 | 6.900000 | 6.700000 | 6.800000 | 4.700000 | 3.600000 | 3.800000 | 4.500000 | 5.600000 | 5.200000 | 5.700000 | 6.200000 | 5.600000 | 4.900000 | 5.100000 | 5.600000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
200 | 10X477 | MARBLE HILL HIGH SCHOOL FOR INTERNATIONAL STUDIES | 99.0 | 414.0 | 435.0 | 414.0 | 1263.0 | 0 | 83.0 | 141.0 | 37.0 | 90.533333 | 3.666667 | 25.023333 | 20.933333 | 28.000000 | 20112012.0 | 83.900000 | 456.000000 | 114.00000 | 109.000000 | 133.000000 | 100.000000 | 147.000000 | 32.200000 | 31.000000 | 6.800000 | 21.000000 | 0.000000 | 50.000000 | 11.000000 | 105.000000 | 23.000000 | 264.000000 | 57.900000 | 34.000000 | 7.500000 | 213.000000 | 46.700000 | 243.000000 | 53.300000 | 84.571429 | 89.016667 | 81.366667 | 91.400000 | 16.300000 | 18.366667 | 65.066667 | 73.066667 | 7.650000 | 8.600000 | 7.866667 | 1.816667 | Bronx | 9.000000 | 12.0 | Bronx | 10463.00000 | 447.00000 | Traditional | English, Italian, Japanese | Biology, Calculus AB, English Literature and C... | No courses | No courses | 830.000000 | 440.000000 | 2.000000 | 99 Terrace View Avenue\nBronx, NY 10463\n(40.8... | 8.000000 | 10.000000 | 40.877049 | -73.912337 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 97.000000 | 97.000000 | 45.000000 | 428.000000 | 28.000000 | 190.000000 | 8.800000 | 8.200000 | 7.900000 | 8.300000 | 8.200000 | 6.600000 | 7.000000 | 7.600000 | 7.100000 | 6.300000 | 6.900000 | 7.700000 | 8.000000 | 7.100000 | 7.300000 | 7.900000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
201 | 10X478 | LEARNING TO WORK GED AT JOHN F. KENNEDY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
202 | 10X546 | BRONX THEATRE HIGH SCHOOL | 68.0 | 348.0 | 362.0 | 354.0 | 1064.0 | 0 | 34.0 | 34.0 | 0.0 | 75.250000 | 3.041667 | 25.983333 | 22.125000 | 29.875000 | 20112012.0 | 73.700000 | 445.000000 | 179.00000 | 127.000000 | 80.000000 | 59.000000 | 42.000000 | 9.400000 | 67.000000 | 15.100000 | 17.000000 | 21.000000 | 2.000000 | 0.400000 | 128.000000 | 28.800000 | 307.000000 | 69.000000 | 8.000000 | 1.800000 | 143.000000 | 32.100000 | 302.000000 | 67.900000 | 81.833333 | 63.760000 | 37.740000 | 58.900000 | 2.460000 | 3.960000 | 35.280000 | 54.960000 | 26.020000 | 41.100000 | 19.700000 | 14.840000 | Bronx | 9.000000 | 12.0 | Bronx | 10463.00000 | 435.00000 | Traditional | French, Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 840.000000 | 400.000000 | 2.000000 | 99 Terrace View Avenue\nBronx, NY 10463\n(40.8... | 8.000000 | 10.000000 | 40.877049 | -73.912337 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 91.000000 | 94.000000 | 88.000000 | 388.000000 | 30.000000 | 360.000000 | 9.600000 | 9.300000 | 9.300000 | 9.400000 | 7.200000 | 6.600000 | 7.100000 | 7.500000 | 7.400000 | 6.400000 | 7.600000 | 8.100000 | 8.000000 | 7.400000 | 8.000000 | 8.300000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
203 | 10X549 | DISCOVERY HIGH SCHOOL | 55.0 | 372.0 | 379.0 | 364.0 | 1115.0 | 0 | 0.0 | 0.0 | 0.0 | 83.272727 | 3.772727 | 19.731818 | 15.818182 | 23.454545 | 20112012.0 | 80.000000 | 529.000000 | 164.00000 | 196.000000 | 131.000000 | 38.000000 | 109.000000 | 20.600000 | 94.000000 | 17.800000 | 6.000000 | 53.000000 | 11.000000 | 2.100000 | 107.000000 | 20.200000 | 400.000000 | 75.600000 | 7.000000 | 1.300000 | 277.000000 | 52.400000 | 252.000000 | 47.600000 | 75.666667 | 59.380000 | 44.340000 | 74.060000 | 15.340000 | 25.000000 | 29.000000 | 49.060000 | 15.060000 | 25.940000 | 22.540000 | 11.620000 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 542.00000 | Traditional | Spanish | Biology, English Language and Composition, Env... | No courses | No courses | 845.000000 | 345.000000 | 1.000000 | 2780 Reservoir Avenue\nBronx, NY 10468\n(40.87... | 7.000000 | 11.000000 | 40.870377 | -73.898163 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 70.000000 | 8.000000 | 283.000000 | 23.000000 | 37.000000 | 8.700000 | 8.000000 | 7.700000 | 8.100000 | 8.300000 | 7.300000 | 7.100000 | 8.200000 | 6.200000 | 5.500000 | 6.100000 | 6.800000 | 7.600000 | 6.700000 | 6.800000 | 7.600000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
204 | 10X660 | GRACE DODGE CAREER AND TECHNICAL EDUCATION HIG... | 73.0 | 362.0 | 382.0 | 356.0 | 1100.0 | 0 | 0.0 | 0.0 | 0.0 | 137.625000 | 5.593750 | 21.668750 | 16.093750 | 25.187500 | 20112012.0 | 71.000000 | 1162.000000 | 377.00000 | 364.000000 | 190.000000 | 231.000000 | 219.000000 | 18.800000 | 280.000000 | 24.100000 | 38.000000 | 153.000000 | 17.000000 | 1.500000 | 350.000000 | 30.100000 | 780.000000 | 67.100000 | 10.000000 | 0.900000 | 465.000000 | 40.000000 | 697.000000 | 60.000000 | 331.571429 | 40.985714 | 20.657143 | 50.014286 | 2.600000 | 6.414286 | 18.042857 | 43.585714 | 20.357143 | 49.985714 | 29.114286 | 25.685714 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 87.000000 | 10.000000 | 806.000000 | 83.000000 | 119.000000 | 7.500000 | 7.500000 | 7.400000 | 7.600000 | 7.900000 | 8.100000 | 8.500000 | 8.700000 | 5.900000 | 5.500000 | 5.900000 | 6.800000 | 7.100000 | 7.000000 | 7.300000 | 7.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
205 | 10X667 | GRACE DODGE YABC | 10.0 | 350.0 | 356.0 | 317.0 | 1023.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.870345 | -73.898360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 39.000000 | 94.000000 | 2.000000 | 91.000000 | 30.000000 | 5.000000 | 7.800000 | 7.000000 | 7.200000 | 7.700000 | 8.200000 | 8.600000 | 8.600000 | 8.700000 | 7.600000 | 7.200000 | 7.600000 | 8.100000 | 7.900000 | 7.700000 | 7.900000 | 8.300000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
206 | 10X696 | HIGH SCHOOL OF AMERICAN STUDIES AT LEHMAN COLLEGE | 92.0 | 636.0 | 648.0 | 636.0 | 1920.0 | 0 | 194.0 | 302.0 | 243.0 | 120.789474 | 5.526316 | 22.189474 | 18.421053 | 25.421053 | 20112012.0 | 20.800000 | 377.000000 | 89.00000 | 101.000000 | 99.000000 | 88.000000 | 0.000000 | 0.000000 | 5.000000 | 1.300000 | 0.000000 | 0.000000 | 63.000000 | 16.700000 | 40.000000 | 10.600000 | 68.000000 | 18.000000 | 203.000000 | 53.800000 | 203.000000 | 53.800000 | 174.000000 | 46.200000 | 77.333333 | 95.650000 | 95.650000 | 100.000000 | 80.666667 | 84.233333 | 14.966667 | 15.766667 | 0.000000 | 0.000000 | 3.416667 | 0.716667 | Bronx | 9.000000 | 12.0 | Bronx | 10468.00000 | 387.00000 | Specialized School | Spanish | Calculus AB, Chemistry, English Language and C... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 2925 Goulden Avenue\nBronx, NY 10468\n(40.8712... | 8.000000 | 11.000000 | 40.871255 | -73.897516 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 98.000000 | 100.000000 | 52.000000 | 359.000000 | 27.000000 | 188.000000 | 9.100000 | 8.100000 | 8.100000 | 8.700000 | 8.800000 | 7.400000 | 8.200000 | 9.000000 | 8.100000 | 7.100000 | 7.800000 | 8.600000 | 8.700000 | 7.500000 | 8.000000 | 8.700000 | 10 | DISTRICT 10 | 88.92 | 56757 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
207 | 11X249 | BRONX HEALTH SCIENCES HIGH SCHOOL | 74.0 | 370.0 | 381.0 | 382.0 | 1133.0 | 0 | 0.0 | 0.0 | 0.0 | 100.578947 | 4.263158 | 25.710526 | 19.368421 | 32.421053 | 20112012.0 | 73.900000 | 377.000000 | 153.00000 | 86.000000 | 61.000000 | 77.000000 | 23.000000 | 6.100000 | 28.000000 | 7.400000 | 15.000000 | 8.000000 | 18.000000 | 4.800000 | 214.000000 | 56.800000 | 137.000000 | 36.300000 | 2.000000 | 0.500000 | 133.000000 | 35.300000 | 244.000000 | 64.700000 | 62.000000 | 92.150000 | 88.375000 | 95.650000 | 13.700000 | 14.575000 | 74.675000 | 81.075000 | 3.775000 | 4.350000 | 3.100000 | 4.750000 | Bronx | 9.000000 | 12.0 | Bronx | 10475.00000 | 345.00000 | Traditional | Spanish | No courses | No courses | No courses | 715.000000 | 300.000000 | 1.000000 | 750 Baychester Avenue\nBronx, NY 10475\n(40.87... | 10.000000 | 12.000000 | 40.874132 | -73.833805 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 87.000000 | 14.000000 | 266.000000 | 20.000000 | 39.000000 | 8.300000 | 7.900000 | 7.300000 | 8.000000 | 8.200000 | 6.800000 | 7.400000 | 7.900000 | 6.300000 | 5.400000 | 5.800000 | 7.200000 | 7.600000 | 6.700000 | 6.800000 | 7.700000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
208 | 11X253 | BRONX HIGH SCHOOL FOR WRITING AND COMMUNICATIO... | 46.0 | 400.0 | 357.0 | 390.0 | 1147.0 | 0 | 28.0 | 30.0 | 0.0 | 84.727273 | 3.772727 | 23.245455 | 18.727273 | 27.454545 | 20112012.0 | 72.400000 | 422.000000 | 174.00000 | 125.000000 | 57.000000 | 66.000000 | 36.000000 | 8.500000 | 61.000000 | 14.500000 | 21.000000 | 23.000000 | 10.000000 | 2.400000 | 204.000000 | 48.300000 | 201.000000 | 47.600000 | 7.000000 | 1.700000 | 172.000000 | 40.800000 | 250.000000 | 59.200000 | 72.333333 | 66.850000 | 43.300000 | 64.300000 | 1.500000 | 2.275000 | 41.750000 | 62.025000 | 23.600000 | 35.700000 | 16.425000 | 14.150000 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 413.00000 | Traditional | Spanish | English Literature and Composition, Environmen... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 57.000000 | 46.000000 | 21.000000 | 225.000000 | 13.000000 | 80.000000 | 7.400000 | 7.600000 | 7.300000 | 7.800000 | 6.800000 | 5.900000 | 6.800000 | 7.100000 | 5.500000 | 5.300000 | 5.800000 | 6.600000 | 6.600000 | 6.200000 | 6.600000 | 7.200000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
209 | 11X265 | BRONX LAB SCHOOL | 81.0 | 377.0 | 391.0 | 367.0 | 1135.0 | 0 | 0.0 | 0.0 | 0.0 | 63.916667 | 2.875000 | 23.391667 | 20.541667 | 25.791667 | 20112012.0 | 75.500000 | 482.000000 | 156.00000 | 117.000000 | 114.000000 | 95.000000 | 18.000000 | 3.700000 | 76.000000 | 15.800000 | 42.000000 | 14.000000 | 13.000000 | 2.700000 | 182.000000 | 37.800000 | 276.000000 | 57.300000 | 8.000000 | 1.700000 | 287.000000 | 59.500000 | 195.000000 | 40.500000 | 77.000000 | 73.700000 | 39.150000 | 52.850000 | 0.550000 | 0.800000 | 38.600000 | 52.075000 | 34.525000 | 47.150000 | 22.050000 | 4.200000 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 476.00000 | Traditional | Spanish | Biology | No courses | No courses | 845.000000 | 500.000000 | 1.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 88.000000 | 40.000000 | 411.000000 | 30.000000 | 175.000000 | 7.600000 | 7.600000 | 7.500000 | 7.500000 | 6.400000 | 6.400000 | 6.600000 | 7.100000 | 6.400000 | 6.000000 | 6.400000 | 7.300000 | 6.800000 | 6.700000 | 6.800000 | 7.300000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
210 | 11X270 | ACADEMY FOR SCHOLARSHIP AND ENTREPRENEURSHIP: ... | 56.0 | 386.0 | 394.0 | 361.0 | 1141.0 | 0 | 24.0 | 24.0 | 0.0 | 58.863636 | 2.136364 | 27.881818 | 25.090909 | 31.227273 | 20112012.0 | 63.700000 | 606.000000 | 100.00000 | 89.000000 | 96.000000 | 82.000000 | 38.000000 | 6.300000 | 112.000000 | 18.500000 | 34.000000 | 45.000000 | 15.000000 | 2.500000 | 386.000000 | 63.700000 | 194.000000 | 32.000000 | 4.000000 | 0.700000 | 315.000000 | 52.000000 | 291.000000 | 48.000000 | 50.750000 | 67.433333 | 43.166667 | 63.400000 | 3.466667 | 5.266667 | 39.700000 | 58.100000 | 24.266667 | 36.600000 | 25.766667 | 5.366667 | Bronx | 9.000000 | 12.0 | Bronx | 10466.00000 | 437.00000 | Traditional | Spanish | Biology, English Language and Composition, Uni... | No courses | No courses | 800.000000 | 256.000000 | 1.000000 | 921 East 228Th Street\nBronx, NY 10466\n(40.88... | 12.000000 | 12.000000 | 40.887919 | -73.852872 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 47.000000 | 26.000000 | 404.000000 | 18.000000 | 143.000000 | 7.600000 | 7.400000 | 7.300000 | 7.200000 | 5.600000 | 5.000000 | 5.700000 | 6.400000 | 5.200000 | 5.600000 | 5.600000 | 6.900000 | 6.100000 | 6.000000 | 6.200000 | 6.800000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
211 | 11X275 | HIGH SCHOOL OF COMPUTERS AND TECHNOLOGY | 72.0 | 381.0 | 376.0 | 354.0 | 1111.0 | 0 | 0.0 | 0.0 | 0.0 | 97.368421 | 3.526316 | 28.126316 | 24.263158 | 31.052632 | 20112012.0 | 71.800000 | 550.000000 | 189.00000 | 155.000000 | 102.000000 | 104.000000 | 56.000000 | 10.200000 | 111.000000 | 20.200000 | 64.000000 | 8.000000 | 20.000000 | 3.600000 | 192.000000 | 34.900000 | 327.000000 | 59.500000 | 7.000000 | 1.300000 | 480.000000 | 87.300000 | 70.000000 | 12.700000 | 52.142857 | 83.725000 | 60.525000 | 72.375000 | 19.600000 | 22.775000 | 40.875000 | 49.575000 | 23.225000 | 27.625000 | 13.475000 | 2.525000 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 556.00000 | CTE School | No Language Classes | English Language and Composition, English Lite... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 97.000000 | 66.000000 | 436.000000 | 33.000000 | 340.000000 | 9.300000 | 8.800000 | 8.900000 | 9.000000 | 6.600000 | 6.200000 | 6.300000 | 6.800000 | 6.300000 | 5.700000 | 6.600000 | 7.400000 | 7.400000 | 6.900000 | 7.200000 | 7.700000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
212 | 11X288 | COLLEGIATE INSTITUTE FOR MATH AND SCIENCE | 97.0 | 444.0 | 471.0 | 433.0 | 1348.0 | 0 | 79.0 | 111.0 | 33.0 | 100.500000 | 4.125000 | 24.291667 | 19.125000 | 29.041667 | 20112012.0 | 67.900000 | 543.000000 | 165.00000 | 140.000000 | 136.000000 | 102.000000 | 18.000000 | 3.300000 | 76.000000 | 14.000000 | 38.000000 | 18.000000 | 50.000000 | 9.200000 | 200.000000 | 36.800000 | 254.000000 | 46.800000 | 38.000000 | 7.000000 | 310.000000 | 57.100000 | 233.000000 | 42.900000 | 90.166667 | 79.800000 | 68.740000 | 85.960000 | 26.180000 | 32.840000 | 42.620000 | 53.120000 | 11.040000 | 14.040000 | 8.980000 | 9.020000 | Bronx | 9.000000 | 12.0 | Bronx | 10469.00000 | 656.00000 | Traditional | Spanish | Calculus AB, Chemistry, English Literature and... | No courses | No courses | 815.000000 | 415.000000 | 1.000000 | 925 Astor Avenue\nBronx, NY 10469\n(40.8596983... | 11.000000 | 13.000000 | 40.859698 | -73.860741 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 92.000000 | 63.000000 | 391.000000 | 24.000000 | 297.000000 | 8.300000 | 8.300000 | 7.900000 | 8.400000 | 8.400000 | 8.600000 | 8.500000 | 9.100000 | 7.200000 | 6.700000 | 7.300000 | 8.400000 | 8.000000 | 7.900000 | 7.900000 | 8.700000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
213 | 11X290 | BRONX ACADEMY OF HEALTH CAREERS | 69.0 | 387.0 | 365.0 | 383.0 | 1135.0 | 0 | 0.0 | 0.0 | 0.0 | 76.393939 | 3.060606 | 24.675758 | 21.696970 | 27.666667 | 20112012.0 | 70.800000 | 483.000000 | 155.00000 | 143.000000 | 108.000000 | 77.000000 | 37.000000 | 7.700000 | 92.000000 | 19.000000 | 33.000000 | 33.000000 | 16.000000 | 3.300000 | 254.000000 | 52.600000 | 199.000000 | 41.200000 | 5.000000 | 1.000000 | 158.000000 | 32.700000 | 325.000000 | 67.300000 | 66.714286 | 65.080000 | 53.020000 | 81.860000 | 5.580000 | 8.680000 | 47.480000 | 73.160000 | 12.060000 | 18.140000 | 20.520000 | 13.420000 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 461.00000 | Traditional | Spanish | English Language and Composition | No courses | No courses | 825.000000 | 315.000000 | 1.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 96.000000 | 56.000000 | 370.000000 | 26.000000 | 242.000000 | 7.300000 | 7.100000 | 7.000000 | 7.400000 | 7.900000 | 8.200000 | 7.900000 | 8.400000 | 5.900000 | 5.700000 | 5.900000 | 7.000000 | 7.000000 | 7.000000 | 7.000000 | 7.600000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
214 | 11X299 | ASTOR COLLEGIATE ACADEMY | 60.0 | 387.0 | 391.0 | 391.0 | 1169.0 | 0 | 36.0 | 48.0 | 12.0 | 69.424242 | 2.939394 | 23.651515 | 19.878788 | 27.484848 | 20112012.0 | 64.400000 | 498.000000 | 180.00000 | 132.000000 | 107.000000 | 79.000000 | 38.000000 | 7.600000 | 108.000000 | 21.700000 | 49.000000 | 23.000000 | 27.000000 | 5.400000 | 178.000000 | 35.700000 | 229.000000 | 46.000000 | 59.000000 | 11.800000 | 292.000000 | 58.600000 | 206.000000 | 41.400000 | 81.333333 | 76.560000 | 45.260000 | 58.620000 | 5.200000 | 6.180000 | 40.080000 | 52.440000 | 31.240000 | 41.380000 | 17.640000 | 5.240000 | Bronx | 9.000000 | 12.0 | Bronx | 10469.00000 | 474.00000 | Traditional | Spanish | Biology, Chemistry, English Language and Compo... | No courses | No courses | 735.000000 | 355.000000 | 1.000000 | 925 Astor Avenue\nBronx, NY 10469\n(40.8596983... | 11.000000 | 13.000000 | 40.859698 | -73.860741 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 97.000000 | 57.000000 | 395.000000 | 31.000000 | 248.000000 | 7.700000 | 7.700000 | 7.600000 | 7.800000 | 6.800000 | 7.400000 | 7.300000 | 7.700000 | 5.900000 | 5.700000 | 6.300000 | 7.200000 | 6.800000 | 6.900000 | 7.100000 | 7.600000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
215 | 11X415 | CHRISTOPHER COLUMBUS HIGH SCHOOL | 121.0 | 367.0 | 361.0 | 353.0 | 1081.0 | 0 | 34.0 | 34.0 | 6.0 | 118.675676 | 4.567568 | 27.067568 | 22.864865 | 31.243243 | 20112012.0 | 59.200000 | 727.000000 | 138.00000 | 266.000000 | 171.000000 | 152.000000 | 133.000000 | 18.300000 | 175.000000 | 24.100000 | 49.000000 | 88.000000 | 42.000000 | 5.800000 | 254.000000 | 34.900000 | 338.000000 | 46.500000 | 92.000000 | 12.700000 | 401.000000 | 55.200000 | 326.000000 | 44.800000 | 527.285714 | 40.685714 | 20.142857 | 49.242857 | 1.771429 | 4.357143 | 18.342857 | 44.871429 | 20.557143 | 50.757143 | 36.885714 | 15.985714 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.873138 | -73.856120 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 57.000000 | 79.000000 | 27.000000 | 586.000000 | 62.000000 | 290.000000 | 8.500000 | 8.200000 | 8.400000 | 8.100000 | 6.700000 | 7.300000 | 7.400000 | 7.800000 | 6.100000 | 5.900000 | 6.600000 | 7.200000 | 7.100000 | 7.100000 | 7.500000 | 7.700000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
216 | 11X417 | YOUNG ADULT BOROUGH CNTR CHRISTOPHER COLUMBUS HS | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.873138 | -73.856120 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 74.000000 | 92.000000 | 184.000000 | 32.000000 | 232.000000 | 9.300000 | 9.200000 | 9.300000 | 9.100000 | 8.600000 | 8.500000 | 8.800000 | 9.000000 | 8.600000 | 6.600000 | 8.200000 | 8.900000 | 8.800000 | 8.100000 | 8.800000 | 9.000000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
217 | 11X418 | BRONX HIGH SCHOOL FOR THE VISUAL ARTS | 48.0 | 419.0 | 433.0 | 416.0 | 1268.0 | 0 | 26.0 | 41.0 | 9.0 | 65.535714 | 2.428571 | 26.867857 | 24.642857 | 29.071429 | 20112012.0 | 68.700000 | 483.000000 | 158.00000 | 178.000000 | 64.000000 | 83.000000 | 25.000000 | 5.200000 | 101.000000 | 20.900000 | 43.000000 | 26.000000 | 9.000000 | 1.900000 | 141.000000 | 29.200000 | 301.000000 | 62.300000 | 31.000000 | 6.400000 | 280.000000 | 58.000000 | 203.000000 | 42.000000 | 73.571429 | 64.333333 | 35.583333 | 56.016667 | 2.800000 | 4.433333 | 32.783333 | 51.566667 | 28.733333 | 43.983333 | 18.333333 | 10.766667 | Bronx | 9.000000 | 12.0 | Bronx | 10462.00000 | 509.00000 | Traditional | Spanish | English Literature and Composition, Environmen... | No courses | No courses | 815.000000 | 245.000000 | 2.000000 | 2040 Antin Pl\nBronx, NY 10462\n(40.851433485,... | 11.000000 | 13.000000 | 40.851433 | -73.865018 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 52.000000 | 42.000000 | 330.000000 | 13.000000 | 168.000000 | 8.400000 | 7.400000 | 7.500000 | 7.300000 | 7.000000 | 6.600000 | 6.800000 | 7.300000 | 6.300000 | 5.300000 | 6.100000 | 6.900000 | 7.300000 | 6.400000 | 6.800000 | 7.100000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
218 | 11X455 | HARRY S TRUMAN HIGH SCHOOL | 189.0 | 386.0 | 397.0 | 368.0 | 1151.0 | 0 | 103.0 | 135.0 | 27.0 | 344.611111 | 12.916667 | 22.800000 | 14.361111 | 27.250000 | 20112012.0 | 50.600000 | 1773.000000 | 727.00000 | 457.000000 | 323.000000 | 266.000000 | 164.000000 | 9.200000 | 445.000000 | 25.100000 | 21.000000 | 258.000000 | 35.000000 | 2.000000 | 918.000000 | 51.800000 | 777.000000 | 43.800000 | 23.000000 | 1.300000 | 1063.000000 | 60.000000 | 710.000000 | 40.000000 | 575.571429 | 58.014286 | 45.157143 | 77.657143 | 3.700000 | 6.371429 | 41.442857 | 71.300000 | 12.828571 | 22.342857 | 22.171429 | 13.714286 | Bronx | 9.000000 | 12.0 | Bronx | 10475.00000 | 1911.00000 | Traditional | American Sign Language, Spanish | Biology, Calculus AB, Calculus BC, English Lit... | No courses | No courses | 800.000000 | 300.000000 | 7.000000 | 750 Baychester Avenue\nBronx, NY 10475\n(40.87... | 10.000000 | 12.000000 | 40.874132 | -73.833805 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 62.000000 | 88.000000 | 10.000000 | 1156.000000 | 99.000000 | 175.000000 | 7.100000 | 6.900000 | 7.000000 | 7.200000 | 7.200000 | 7.200000 | 7.300000 | 7.700000 | 6.000000 | 5.600000 | 6.300000 | 7.200000 | 6.800000 | 6.600000 | 6.900000 | 7.400000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
219 | 11X456 | LEARNING TO WORK YABC AT TRUMAN HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.873138 | -73.856120 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 100.000000 | 11.000000 | 106.000000 | 17.000000 | 8.000000 | 9.600000 | 9.300000 | 9.000000 | 9.500000 | 8.100000 | 8.500000 | 8.600000 | 8.800000 | 8.200000 | 7.400000 | 8.000000 | 8.500000 | 8.600000 | 8.400000 | 8.500000 | 8.900000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
220 | 11X513 | NEW WORLD HIGH SCHOOL | 72.0 | 332.0 | 381.0 | 335.0 | 1048.0 | 0 | 12.0 | 12.0 | 0.0 | 118.500000 | 5.083333 | 21.716667 | 17.000000 | 25.500000 | 20112012.0 | 79.500000 | 402.000000 | 119.00000 | 111.000000 | 93.000000 | 79.000000 | 322.000000 | 80.100000 | 6.000000 | 1.500000 | 0.000000 | 0.000000 | 50.000000 | 12.400000 | 53.000000 | 13.200000 | 283.000000 | 70.400000 | 13.000000 | 3.200000 | 201.000000 | 50.000000 | 201.000000 | 50.000000 | 53.800000 | 75.450000 | 53.575000 | 71.050000 | 20.000000 | 26.275000 | 33.575000 | 44.800000 | 21.900000 | 28.950000 | 22.050000 | 2.175000 | Bronx | 9.000000 | 12.0 | Bronx | 10466.00000 | 401.00000 | Traditional | French, Spanish, Spanish Native Language Arts | Calculus AB, French Language and Culture, Span... | French Language and Culture, Spanish Language ... | French, Spanish | 800.000000 | 300.000000 | 1.000000 | 921 East 228Th Street\nBronx, NY 10466\n(40.88... | 12.000000 | 12.000000 | 40.887919 | -73.852872 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.000000 | 67.000000 | 32.000000 | 316.000000 | 16.000000 | 93.000000 | 8.200000 | 7.600000 | 7.300000 | 8.100000 | 6.700000 | 5.000000 | 6.100000 | 7.200000 | 7.100000 | 6.800000 | 7.300000 | 8.000000 | 7.300000 | 6.500000 | 6.900000 | 7.800000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
221 | 11X514 | THE BRONXWOOD PREPARATORY ACADEMY | 48.0 | 377.0 | 372.0 | 363.0 | 1112.0 | 0 | 0.0 | 0.0 | 0.0 | 54.903226 | 2.612903 | 22.009677 | 19.548387 | 24.161290 | 20112012.0 | 66.700000 | 416.000000 | 168.00000 | 94.000000 | 89.000000 | 65.000000 | 29.000000 | 7.000000 | 87.000000 | 20.900000 | 21.000000 | 42.000000 | 8.000000 | 1.900000 | 242.000000 | 58.200000 | 155.000000 | 37.300000 | 4.000000 | 1.000000 | 255.000000 | 61.300000 | 161.000000 | 38.700000 | 57.000000 | 57.750000 | 18.975000 | 32.475000 | 0.625000 | 0.825000 | 18.350000 | 31.650000 | 38.775000 | 67.525000 | 27.600000 | 12.150000 | Bronx | 9.000000 | 12.0 | Bronx | 10466.00000 | 414.00000 | Traditional | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 921 East 228Th Street\nBronx, NY 10466\n(40.88... | 12.000000 | 12.000000 | 40.887919 | -73.852872 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 74.000000 | 38.000000 | 274.000000 | 20.000000 | 129.000000 | 8.600000 | 8.000000 | 7.700000 | 8.000000 | 6.800000 | 6.600000 | 6.600000 | 7.400000 | 6.000000 | 5.700000 | 6.100000 | 7.100000 | 7.100000 | 6.800000 | 6.800000 | 7.500000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
222 | 11X541 | GLOBAL ENTERPRISE HIGH SCHOOL | 57.0 | 372.0 | 382.0 | 375.0 | 1129.0 | 0 | 0.0 | 0.0 | 0.0 | 55.758621 | 2.586207 | 18.744828 | 16.241379 | 21.068966 | 20112012.0 | 80.300000 | 270.000000 | 60.00000 | 97.000000 | 70.000000 | 43.000000 | 39.000000 | 14.400000 | 48.000000 | 17.800000 | 24.000000 | 22.000000 | 11.000000 | 4.100000 | 97.000000 | 35.900000 | 146.000000 | 54.100000 | 15.000000 | 5.600000 | 153.000000 | 56.700000 | 117.000000 | 43.300000 | 74.428571 | 55.320000 | 17.640000 | 31.780000 | 1.360000 | 2.660000 | 16.240000 | 29.140000 | 37.720000 | 68.220000 | 25.000000 | 13.060000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.873138 | -73.856120 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 19.000000 | 24.000000 | 260.000000 | 6.000000 | 83.000000 | 7.700000 | 7.600000 | 7.300000 | 7.600000 | 7.100000 | 6.200000 | 5.200000 | 6.400000 | 5.900000 | 5.800000 | 6.200000 | 7.100000 | 6.900000 | 6.500000 | 6.200000 | 7.000000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
223 | 11X542 | PELHAM PREPARATORY ACADEMY | 76.0 | 431.0 | 438.0 | 419.0 | 1288.0 | 0 | 46.0 | 57.0 | 17.0 | 87.785714 | 3.535714 | 22.167857 | 18.857143 | 24.821429 | 20112012.0 | 61.000000 | 507.000000 | 150.00000 | 157.000000 | 114.000000 | 86.000000 | 11.000000 | 2.200000 | 72.000000 | 14.200000 | 31.000000 | 29.000000 | 12.000000 | 2.400000 | 204.000000 | 40.200000 | 252.000000 | 49.700000 | 35.000000 | 6.900000 | 244.000000 | 48.100000 | 263.000000 | 51.900000 | 89.714286 | 86.433333 | 70.933333 | 82.000000 | 15.966667 | 18.616667 | 55.000000 | 63.383333 | 15.466667 | 18.000000 | 8.183333 | 4.016667 | Bronx | 9.000000 | 12.0 | Bronx | 10469.00000 | 480.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, English Langu... | Environmental Science | No courses | 815.000000 | 345.000000 | 1.000000 | 925 Astor Avenue\nBronx, NY 10469\n(40.8596983... | 11.000000 | 13.000000 | 40.859698 | -73.860741 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 62.000000 | 434.000000 | 27.000000 | 292.000000 | 8.700000 | 8.300000 | 8.200000 | 8.600000 | 7.200000 | 8.100000 | 7.500000 | 8.200000 | 6.400000 | 5.600000 | 6.400000 | 7.600000 | 7.400000 | 7.400000 | 7.400000 | 8.100000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
224 | 11X544 | HIGH SCHOOL FOR CONTEMPORARY ARTS | 55.0 | 383.0 | 378.0 | 365.0 | 1126.0 | 0 | 0.0 | 0.0 | 0.0 | 78.482759 | 2.931034 | 27.255172 | 23.586207 | 30.724138 | 20112012.0 | 71.900000 | 479.000000 | 152.00000 | 220.000000 | 30.000000 | 77.000000 | 49.000000 | 10.200000 | 102.000000 | 21.300000 | 27.000000 | 34.000000 | 5.000000 | 1.000000 | 178.000000 | 37.200000 | 287.000000 | 59.900000 | 5.000000 | 1.000000 | 265.000000 | 55.300000 | 214.000000 | 44.700000 | 74.142857 | 73.440000 | 54.640000 | 73.960000 | 8.400000 | 10.640000 | 46.240000 | 63.340000 | 18.780000 | 26.040000 | 21.820000 | 3.220000 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 518.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 245.000000 | 2.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 85.000000 | 75.000000 | 295.000000 | 22.000000 | 320.000000 | 8.700000 | 7.700000 | 7.800000 | 7.800000 | 7.500000 | 7.500000 | 7.800000 | 8.100000 | 6.700000 | 5.600000 | 6.500000 | 7.000000 | 7.600000 | 6.900000 | 7.400000 | 7.600000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
225 | 11X545 | BRONX AEROSPACE HIGH SCHOOL | 46.0 | 388.0 | 393.0 | 382.0 | 1163.0 | 0 | 0.0 | 0.0 | 0.0 | 40.225000 | 2.025000 | 19.472500 | 17.375000 | 22.125000 | 20112012.0 | 45.600000 | 416.000000 | 149.00000 | 129.000000 | 63.000000 | 75.000000 | 61.000000 | 14.700000 | 107.000000 | 25.700000 | 39.000000 | 45.000000 | 9.000000 | 2.200000 | 99.000000 | 23.800000 | 302.000000 | 72.600000 | 5.000000 | 1.200000 | 343.000000 | 82.500000 | 73.000000 | 17.500000 | 61.428571 | 91.116667 | 50.733333 | 55.750000 | 2.133333 | 2.433333 | 48.600000 | 53.366667 | 40.366667 | 44.250000 | 3.966667 | 2.583333 | Bronx | 9.000000 | 12.0 | Bronx | 10467.00000 | 404.00000 | Traditional | French, Spanish | Calculus AB, United States History | No courses | No courses | 900.000000 | 500.000000 | 1.000000 | 800 East Gun Hill Road\nBronx, NY 10467\n(40.8... | 12.000000 | 12.000000 | 40.875754 | -73.861388 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 86.000000 | 83.000000 | 35.000000 | 308.000000 | 20.000000 | 121.000000 | 7.600000 | 7.100000 | 6.900000 | 7.300000 | 6.300000 | 6.000000 | 6.400000 | 6.700000 | 5.600000 | 5.500000 | 5.500000 | 6.400000 | 6.500000 | 6.200000 | 6.300000 | 6.800000 | 11 | DISTRICT 11 | 89.84 | 38230 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
226 | 12X245 | NEW DAY ACADEMY | 25.0 | 348.0 | 344.0 | 354.0 | 1046.0 | 0 | 0.0 | 0.0 | 0.0 | 40.958333 | 1.958333 | 21.033333 | 19.333333 | 22.958333 | 20112012.0 | 87.000000 | 191.000000 | 16.00000 | 28.000000 | 40.000000 | 37.000000 | 21.000000 | 11.000000 | 44.000000 | 23.000000 | 14.000000 | 19.000000 | 2.000000 | 1.000000 | 87.000000 | 45.500000 | 102.000000 | 53.400000 | 0.000000 | 0.000000 | 92.000000 | 48.200000 | 99.000000 | 51.800000 | 44.800000 | 38.866667 | 38.866667 | 100.000000 | 0.000000 | 0.000000 | 38.866667 | 100.000000 | 0.000000 | 0.000000 | 35.333333 | 20.266667 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 91.000000 | 33.000000 | 215.000000 | 29.000000 | 94.000000 | 8.000000 | 7.500000 | 7.400000 | 7.500000 | 7.100000 | 7.000000 | 7.100000 | 7.200000 | 6.000000 | 5.900000 | 6.500000 | 7.100000 | 7.000000 | 6.800000 | 7.000000 | 7.300000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
227 | 12X248 | METROPOLITAN HIGH SCHOOL, THE | 49.0 | 347.0 | 367.0 | 341.0 | 1055.0 | 0 | 25.0 | 25.0 | 0.0 | 66.318182 | 2.727273 | 23.822727 | 21.090909 | 26.181818 | 20112012.0 | 86.600000 | 339.000000 | 105.00000 | 88.000000 | 87.000000 | 59.000000 | 74.000000 | 21.800000 | 71.000000 | 20.900000 | 43.000000 | 16.000000 | 6.000000 | 1.800000 | 82.000000 | 24.200000 | 247.000000 | 72.900000 | 3.000000 | 0.900000 | 183.000000 | 54.000000 | 156.000000 | 46.000000 | 63.000000 | 72.066667 | 40.900000 | 56.733333 | 3.333333 | 4.600000 | 37.566667 | 52.133333 | 31.166667 | 43.266667 | 8.233333 | 13.533333 | Bronx | 9.000000 | 12.0 | Bronx | 10459.00000 | 313.00000 | Traditional | Spanish | English Literature and Composition, Spanish La... | No courses | No courses | 800.000000 | 400.000000 | 1.000000 | 1180 Rev J A Polite Ave\nBronx, NY 10459\n(40.... | 2.000000 | 17.000000 | 40.825226 | -73.893950 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 79.000000 | 62.000000 | 16.000000 | 246.000000 | 16.000000 | 47.000000 | 8.900000 | 8.500000 | 7.900000 | 8.600000 | 7.400000 | 6.900000 | 6.500000 | 7.400000 | 6.800000 | 6.000000 | 6.600000 | 7.100000 | 7.700000 | 7.100000 | 7.000000 | 7.700000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
228 | 12X251 | EXPLORATIONS ACADEMY | 57.0 | 381.0 | 381.0 | 360.0 | 1122.0 | 0 | 0.0 | 0.0 | 0.0 | 60.464286 | 2.571429 | 23.067857 | 20.178571 | 26.107143 | 20112012.0 | 76.400000 | 362.000000 | 101.00000 | 116.000000 | 75.000000 | 70.000000 | 72.000000 | 19.900000 | 77.000000 | 21.300000 | 38.000000 | 19.000000 | 6.000000 | 1.700000 | 113.000000 | 31.200000 | 237.000000 | 65.500000 | 5.000000 | 1.400000 | 184.000000 | 50.800000 | 178.000000 | 49.200000 | 44.800000 | 70.500000 | 52.500000 | 74.566667 | 3.566667 | 5.300000 | 48.933333 | 69.266667 | 17.966667 | 25.433333 | 6.233333 | 19.000000 | Bronx | 9.000000 | 12.0 | Bronx | 10460.00000 | 357.00000 | Traditional | Spanish | Biology, English Literature and Composition, S... | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 1619 Boston Road\nBronx, NY 10460\n(40.8359373... | 3.000000 | 17.000000 | 40.835937 | -73.890468 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 65.000000 | 62.000000 | 27.000000 | 232.000000 | 16.000000 | 91.000000 | 8.300000 | 8.000000 | 7.800000 | 8.100000 | 6.500000 | 5.700000 | 6.200000 | 7.300000 | 6.900000 | 6.500000 | 7.100000 | 7.700000 | 7.200000 | 6.700000 | 7.000000 | 7.700000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
229 | 12X262 | PERFORMANCE CONSERVATORY HIGH SCHOOL | 30.0 | 361.0 | 353.0 | 360.0 | 1074.0 | 0 | 0.0 | 0.0 | 0.0 | 61.160000 | 2.360000 | 25.496000 | 23.280000 | 27.760000 | 20112012.0 | 61.900000 | 260.000000 | 62.00000 | 98.000000 | 34.000000 | 66.000000 | 26.000000 | 10.000000 | 73.000000 | 28.100000 | 23.000000 | 29.000000 | 3.000000 | 1.200000 | 102.000000 | 39.200000 | 150.000000 | 57.700000 | 2.000000 | 0.800000 | 64.000000 | 24.600000 | 196.000000 | 75.400000 | 80.600000 | 48.725000 | 17.800000 | 37.100000 | 0.000000 | 0.000000 | 17.800000 | 37.100000 | 30.900000 | 62.900000 | 29.725000 | 18.875000 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 96.000000 | 51.000000 | 217.000000 | 24.000000 | 175.000000 | 8.500000 | 7.700000 | 7.600000 | 7.400000 | 5.900000 | 4.500000 | 5.000000 | 5.800000 | 6.000000 | 5.600000 | 6.400000 | 7.000000 | 6.800000 | 5.900000 | 6.300000 | 6.700000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
230 | 12X267 | BRONX LATIN | 36.0 | 408.0 | 432.0 | 411.0 | 1251.0 | 0 | 0.0 | 0.0 | 0.0 | 51.411765 | 2.529412 | 20.517647 | 17.058824 | 24.117647 | 20112012.0 | 79.300000 | 418.000000 | 95.00000 | 67.000000 | 38.000000 | 40.000000 | 57.000000 | 13.600000 | 90.000000 | 21.500000 | 28.000000 | 34.000000 | 1.000000 | 0.200000 | 107.000000 | 25.600000 | 306.000000 | 73.200000 | 4.000000 | 1.000000 | 208.000000 | 49.800000 | 210.000000 | 50.200000 | 2.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 6.000000 | 12.0 | Bronx | 10456.00000 | 523.00000 | Traditional | Latin, Spanish | Biology, Spanish Language and Culture, Statist... | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 800 Home Street\nBronx, NY 10456\n(40.82776397... | 3.000000 | 16.000000 | 40.827764 | -73.900387 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 100.000000 | 87.000000 | 339.000000 | 33.000000 | 274.000000 | 8.200000 | 7.600000 | 7.300000 | 8.000000 | 7.900000 | 7.500000 | 7.300000 | 8.500000 | 8.500000 | 8.400000 | 8.600000 | 9.100000 | 8.200000 | 7.800000 | 7.700000 | 8.500000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
231 | 12X271 | EAST BRONX ACADEMY FOR THE FUTURE | 46.0 | 366.0 | 378.0 | 358.0 | 1102.0 | 0 | 32.0 | 37.0 | 0.0 | 92.571429 | 3.523810 | 23.723810 | 19.714286 | 26.809524 | 20112012.0 | 86.200000 | 619.000000 | 91.00000 | 117.000000 | 82.000000 | 77.000000 | 72.000000 | 11.600000 | 149.000000 | 24.100000 | 38.000000 | 40.000000 | 12.000000 | 1.900000 | 182.000000 | 29.400000 | 423.000000 | 68.300000 | 1.000000 | 0.200000 | 328.000000 | 53.000000 | 291.000000 | 47.000000 | 50.833333 | 65.075000 | 41.350000 | 62.850000 | 1.625000 | 2.800000 | 39.725000 | 60.025000 | 23.775000 | 37.150000 | 19.525000 | 12.525000 | Bronx | 6.000000 | 12.0 | Bronx | 10460.00000 | 609.00000 | Traditional | German, Spanish | English Language and Composition, Spanish Lite... | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 1716 Southern Boulevard\nBronx, NY 10460\n(40.... | 3.000000 | 17.000000 | 40.836953 | -73.887962 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 66.000000 | 58.000000 | 18.000000 | 399.000000 | 28.000000 | 101.000000 | 8.200000 | 7.800000 | 7.500000 | 8.000000 | 7.300000 | 7.700000 | 8.000000 | 8.200000 | 6.800000 | 6.400000 | 6.900000 | 7.700000 | 7.400000 | 7.300000 | 7.500000 | 7.900000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
232 | 12X278 | PEACE AND DIVERSITY ACADEMY | 34.0 | 390.0 | 401.0 | 364.0 | 1155.0 | 0 | 8.0 | 8.0 | 0.0 | 40.733333 | 1.900000 | 21.666667 | 20.666667 | 22.766667 | 20112012.0 | 78.800000 | 231.000000 | 71.00000 | 72.000000 | 40.000000 | 48.000000 | 32.000000 | 13.900000 | 40.000000 | 17.300000 | 16.000000 | 12.000000 | 4.000000 | 1.700000 | 101.000000 | 43.700000 | 124.000000 | 53.700000 | 2.000000 | 0.900000 | 104.000000 | 45.000000 | 127.000000 | 55.000000 | 62.200000 | 53.750000 | 50.125000 | 92.700000 | 0.000000 | 0.000000 | 50.125000 | 92.700000 | 3.650000 | 7.300000 | 27.575000 | 17.075000 | Bronx | 9.000000 | 12.0 | Bronx | 10459.00000 | 189.00000 | Traditional | Spanish | English Language and Composition | No courses | No courses | 845.000000 | 315.000000 | 1.000000 | 1180 Rev J A Polite Ave\nBronx, NY 10459\n(40.... | 2.000000 | 17.000000 | 40.825226 | -73.893950 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 67.000000 | 92.000000 | 236.000000 | 16.000000 | 246.000000 | 9.100000 | 8.500000 | 8.400000 | 8.700000 | 6.500000 | 5.300000 | 6.500000 | 7.000000 | 8.600000 | 8.600000 | 8.300000 | 9.100000 | 8.100000 | 7.400000 | 7.700000 | 8.200000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
233 | 12X388 | PAN AMERICAN INTERNATIONAL HIGH SCHOOL AT MONROE | 30.0 | 321.0 | 351.0 | 298.0 | 970.0 | 0 | 0.0 | 0.0 | 0.0 | 119.153846 | 7.923077 | 15.361538 | 13.230769 | 18.076923 | 20112012.0 | 100.000000 | 406.000000 | 97.00000 | 183.000000 | 113.000000 | 13.000000 | 377.000000 | 92.900000 | 1.000000 | 0.200000 | 0.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 405.000000 | 99.800000 | 0.000000 | 0.000000 | 209.000000 | 51.500000 | 197.000000 | 48.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10472.00000 | 401.00000 | International School | Spanish Native Language Arts | Spanish Language and Culture, Spanish Literatu... | No courses | No courses | 830.000000 | 530.000000 | 1.000000 | 1300 Boynton Avenue\nBronx, NY 10472\n(40.8313... | 9.000000 | 18.000000 | 40.831366 | -73.878823 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 78.000000 | 41.000000 | 274.000000 | 18.000000 | 117.000000 | 8.500000 | 8.100000 | 7.800000 | 7.800000 | 6.700000 | 5.200000 | 6.400000 | 6.900000 | 6.800000 | 7.100000 | 7.600000 | 8.000000 | 7.300000 | 6.800000 | 7.300000 | 7.600000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
234 | 12X428 | LEARNING TO WORK YABC AT MONROE ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 47.000000 | 85.000000 | 15.000000 | 90.000000 | 28.000000 | 30.000000 | 9.400000 | 8.500000 | 8.300000 | 8.900000 | 8.200000 | 7.100000 | 7.600000 | 8.100000 | 8.200000 | 6.700000 | 7.800000 | 8.400000 | 8.600000 | 7.500000 | 7.900000 | 8.500000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
235 | 12X446 | ARTURO A. SCHOMBURG SATELLITE ACADEMY BRONX | 14.0 | 380.0 | 372.0 | 349.0 | 1101.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 62.100000 | 228.000000 | 106.00000 | 52.000000 | 51.000000 | 19.000000 | 11.000000 | 4.800000 | 21.000000 | 9.200000 | 3.000000 | 0.000000 | 1.000000 | 0.400000 | 94.000000 | 41.200000 | 130.000000 | 57.000000 | 0.000000 | 0.000000 | 76.000000 | 33.300000 | 152.000000 | 66.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 55.000000 | 87.000000 | 14.000000 | 103.000000 | 13.000000 | 25.000000 | 8.900000 | 8.400000 | 8.500000 | 8.600000 | 7.400000 | 5.500000 | 7.000000 | 7.000000 | 6.800000 | 6.000000 | 6.400000 | 7.000000 | 7.700000 | 6.600000 | 7.300000 | 7.500000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
236 | 12X478 | THE CINEMA SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 69.636364 | 3.090909 | 22.690909 | 18.727273 | 25.000000 | 20112012.0 | 75.900000 | 223.000000 | 91.00000 | 61.000000 | 71.000000 | 147.334928 | 9.000000 | 4.000000 | 9.000000 | 4.000000 | 1.000000 | 0.000000 | 10.000000 | 4.500000 | 64.000000 | 28.700000 | 145.000000 | 65.000000 | 4.000000 | 1.800000 | 91.000000 | 40.800000 | 132.000000 | 59.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10472.00000 | 318.00000 | Traditional | No Language Classes | Biology, Calculus AB, English Language and Com... | No courses | French, German, Italian, Portuguese, Spanish | 830.000000 | 345.000000 | 1.000000 | 1551 East 172Nd Street\nBronx, NY 10472\n(40.8... | 9.000000 | 18.000000 | 40.831365 | -73.878345 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 32.000000 | 118.000000 | 10.000000 | 41.000000 | 9.000000 | 8.600000 | 8.300000 | 8.800000 | 9.000000 | 8.600000 | 9.200000 | 9.300000 | 7.500000 | 7.100000 | 7.500000 | 8.100000 | 8.500000 | 8.100000 | 8.300000 | 8.700000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
237 | 12X479 | BRONX CAREER AND COLLEGE PREPARATORY HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 57.615385 | 2.538462 | 23.561538 | 20.769231 | 25.538462 | 20112012.0 | 72.200000 | 244.000000 | 118.00000 | 78.000000 | 48.000000 | 147.334928 | 41.000000 | 16.800000 | 67.000000 | 27.500000 | 34.000000 | 24.000000 | 6.000000 | 2.500000 | 91.000000 | 37.300000 | 146.000000 | 59.800000 | 1.000000 | 0.400000 | 108.000000 | 44.300000 | 136.000000 | 55.700000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 9.000000 | 12.0 | Bronx | 10456.00000 | 323.00000 | Traditional | Italian, Spanish | No courses | No courses | Spanish, Spanish Native Language Arts | 800.000000 | 215.000000 | 1.000000 | 800 Home Street\nBronx, NY 10456\n(40.82776397... | 3.000000 | 16.000000 | 40.827764 | -73.900387 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 78.000000 | 41.000000 | 91.000000 | 7.000000 | 60.000000 | 8.400000 | 7.600000 | 7.300000 | 7.600000 | 6.500000 | 6.400000 | 6.700000 | 7.600000 | 6.500000 | 5.900000 | 6.400000 | 7.400000 | 7.100000 | 6.600000 | 6.800000 | 7.600000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
238 | 12X480 | BRONX REGIONAL HIGH SCHOOL | 16.0 | 398.0 | 385.0 | 398.0 | 1181.0 | 0 | 0.0 | 0.0 | 0.0 | 109.916667 | 4.333333 | 27.283333 | 22.833333 | 31.833333 | 20112012.0 | 73.000000 | 338.000000 | 199.09611 | 73.000000 | 145.000000 | 120.000000 | 34.000000 | 10.100000 | 27.000000 | 8.000000 | 0.000000 | 0.000000 | 5.000000 | 1.500000 | 137.000000 | 40.500000 | 193.000000 | 57.100000 | 2.000000 | 0.600000 | 127.000000 | 37.600000 | 211.000000 | 62.400000 | 121.571429 | 20.714286 | 6.842857 | 30.057143 | 0.000000 | 0.000000 | 6.842857 | 30.057143 | 13.814286 | 69.942857 | 68.371429 | 8.771429 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 57.000000 | 95.000000 | 18.000000 | 144.000000 | 20.000000 | 45.000000 | 9.000000 | 8.100000 | 8.000000 | 8.500000 | 8.300000 | 8.000000 | 8.400000 | 8.900000 | 7.200000 | 6.000000 | 6.900000 | 7.700000 | 8.200000 | 7.400000 | 7.800000 | 8.400000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
239 | 12X550 | HIGH SCHOOL OF WORLD CULTURES | 42.0 | 304.0 | 323.0 | 312.0 | 939.0 | 0 | 0.0 | 0.0 | 0.0 | 112.333333 | 4.800000 | 23.166667 | 17.933333 | 28.733333 | 20112012.0 | 90.600000 | 369.000000 | 59.00000 | 121.000000 | 149.000000 | 40.000000 | 319.000000 | 86.400000 | 2.000000 | 0.500000 | 0.000000 | 0.000000 | 9.000000 | 2.400000 | 40.000000 | 10.800000 | 312.000000 | 84.600000 | 2.000000 | 0.500000 | 192.000000 | 52.000000 | 177.000000 | 48.000000 | 59.857143 | 61.428571 | 32.585714 | 48.371429 | 2.500000 | 3.600000 | 30.071429 | 44.785714 | 29.071429 | 52.371429 | 30.685714 | 4.942857 | Bronx | 9.000000 | 12.0 | Bronx | 10472.00000 | 388.00000 | Traditional | Spanish | Biology, Calculus AB, Spanish Language and Cul... | No courses | No courses | 800.000000 | 400.000000 | 1.000000 | 1300 Boynton Avenue\nBronx, NY 10472\n(40.8313... | 9.000000 | 18.000000 | 40.831366 | -73.878823 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 84.000000 | 340.000000 | 25.000000 | 258.000000 | 9.100000 | 7.500000 | 7.600000 | 7.700000 | 7.500000 | 6.400000 | 7.300000 | 7.300000 | 7.800000 | 6.200000 | 7.500000 | 7.800000 | 8.100000 | 6.700000 | 7.500000 | 7.600000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
240 | 12X682 | FANNIE LOU HAMER FREEDOM HIGH SCHOOL | 72.0 | 342.0 | 346.0 | 341.0 | 1029.0 | 0 | 0.0 | 0.0 | 0.0 | 70.083333 | 3.083333 | 20.950000 | 18.750000 | 22.791667 | 20112012.0 | 81.100000 | 477.000000 | 140.00000 | 113.000000 | 119.000000 | 105.000000 | 55.000000 | 11.500000 | 125.000000 | 26.200000 | 44.000000 | 41.000000 | 1.000000 | 0.200000 | 146.000000 | 30.600000 | 328.000000 | 68.800000 | 1.000000 | 0.200000 | 258.000000 | 54.100000 | 219.000000 | 45.900000 | 104.428571 | 62.042857 | 34.942857 | 54.985714 | 0.000000 | 0.000000 | 34.942857 | 54.985714 | 27.128571 | 45.014286 | 20.742857 | 9.957143 | Bronx | 9.000000 | 12.0 | Bronx | 10460.00000 | 493.00000 | Consortium School | Spanish | English Language and Composition, Spanish Lang... | No courses | No courses | 845.000000 | 245.000000 | 1.000000 | 1021 Jennings Street\nBronx, NY 10460\n(40.830... | 3.000000 | 17.000000 | 40.830807 | -73.886021 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 94.000000 | 85.000000 | 317.000000 | 32.000000 | 408.000000 | 9.800000 | 9.200000 | 9.400000 | 9.500000 | 8.500000 | 8.300000 | 8.800000 | 8.900000 | 6.600000 | 5.900000 | 6.600000 | 7.300000 | 8.300000 | 7.800000 | 8.300000 | 8.600000 | 12 | DISTRICT 12 | 87.33 | 23118 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
241 | 12X684 | WINGS ACADEMY | 66.0 | 378.0 | 374.0 | 362.0 | 1114.0 | 0 | 20.0 | 27.0 | 0.0 | 86.533333 | 3.733333 | 19.433333 | 16.233333 | 22.500000 | 20112012.0 | 66.400000 | 538.000000 | 176.00000 | 136.000000 | 108.000000 | 118.000000 | 24.000000 | 4.500000 | 120.000000 | 22.300000 | 21.000000 | 57.000000 | 7.000000 | 1.300000 | 296.000000 | 55.000000 | 227.000000 | 42.200000 | 7.000000 | 1.300000 | 289.000000 | 53.700000 | 249.000000 | 46.300000 | 110.571429 | 58.000000 | 43.328571 | 74.442857 | 3.957143 | 6.542857 | 39.400000 | 67.914286 | 14.657143 | 25.557143 | 26.828571 | 10.085714 | Bronx | 9.000000 | 12.0 | Bronx | 10460.00000 | 534.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 1122 East 180 Street\nBronx, NY 10460\n(40.841... | 6.000000 | 15.000000 | 40.841805 | -73.875418 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 90.000000 | 48.000000 | 396.000000 | 28.000000 | 236.000000 | 7.800000 | 7.300000 | 7.200000 | 7.500000 | 6.200000 | 6.500000 | 6.900000 | 7.500000 | 5.900000 | 5.300000 | 6.000000 | 6.900000 | 6.700000 | 6.400000 | 6.700000 | 7.300000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
242 | 12X690 | MONROE ACADEMY FOR BUSINESS/LAW | 31.0 | 375.0 | 387.0 | 376.0 | 1138.0 | 0 | 7.0 | 7.0 | 0.0 | 74.521739 | 3.304348 | 21.678261 | 18.478261 | 25.000000 | 20112012.0 | 80.800000 | 249.000000 | 11.00000 | 65.000000 | 106.000000 | 67.000000 | 37.000000 | 14.900000 | 46.000000 | 18.500000 | 10.000000 | 22.000000 | 6.000000 | 2.400000 | 67.000000 | 26.900000 | 172.000000 | 69.100000 | 1.000000 | 0.400000 | 151.000000 | 60.600000 | 98.000000 | 39.400000 | 124.428571 | 45.114286 | 25.114286 | 54.600000 | 1.800000 | 3.728571 | 23.314286 | 50.871429 | 20.014286 | 45.400000 | 28.400000 | 22.028571 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.831412 | -73.886946 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 100.000000 | 14.000000 | 228.000000 | 26.000000 | 49.000000 | 6.400000 | 6.700000 | 6.400000 | 6.900000 | 5.900000 | 4.500000 | 4.500000 | 6.000000 | 5.500000 | 5.300000 | 5.500000 | 6.200000 | 5.900000 | 5.500000 | 5.500000 | 6.400000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
243 | 12X692 | MONROE ACADEMY FOR VISUAL ARTS & DESIGN | 43.0 | 332.0 | 357.0 | 349.0 | 1038.0 | 0 | 0.0 | 0.0 | 0.0 | 86.125000 | 3.916667 | 19.916667 | 16.708333 | 24.250000 | 20112012.0 | 87.300000 | 466.000000 | 210.00000 | 132.000000 | 76.000000 | 48.000000 | 134.000000 | 28.800000 | 97.000000 | 20.800000 | 21.000000 | 43.000000 | 4.000000 | 0.900000 | 95.000000 | 20.400000 | 361.000000 | 77.500000 | 6.000000 | 1.300000 | 245.000000 | 52.600000 | 221.000000 | 47.400000 | 104.285714 | 36.585714 | 24.171429 | 62.500000 | 1.885714 | 4.757143 | 22.285714 | 57.757143 | 12.414286 | 37.500000 | 41.742857 | 17.928571 | Bronx | 9.000000 | 12.0 | Bronx | 10472.00000 | 460.00000 | Traditional | Spanish | English Literature and Composition | No courses | No courses | 830.000000 | 300.000000 | 1.000000 | 1300 Boynton Avenue\nBronx, NY 10472\n(40.8313... | 9.000000 | 18.000000 | 40.831366 | -73.878823 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 68.000000 | 19.000000 | 340.000000 | 25.000000 | 78.000000 | 8.500000 | 7.400000 | 7.200000 | 7.700000 | 7.200000 | 6.600000 | 7.200000 | 7.900000 | 6.700000 | 5.400000 | 6.300000 | 7.200000 | 7.400000 | 6.500000 | 6.900000 | 7.600000 | 12 | DISTRICT 12 | 87.33 | 23118 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
244 | 13K265 | DR. SUSAN S. MCKINNEY SECONDARY SCHOOL OF THE ... | 29.0 | 352.0 | 349.0 | 373.0 | 1074.0 | 0 | 17.0 | 22.0 | 0.0 | 84.458333 | 3.958333 | 21.837500 | 18.458333 | 24.750000 | 20112012.0 | 71.100000 | 443.000000 | 60.00000 | 81.000000 | 85.000000 | 39.000000 | 19.000000 | 4.300000 | 90.000000 | 20.300000 | 10.000000 | 42.000000 | 2.000000 | 0.500000 | 319.000000 | 72.000000 | 109.000000 | 24.600000 | 8.000000 | 1.800000 | 164.000000 | 37.000000 | 279.000000 | 63.000000 | 67.571429 | 73.985714 | 50.585714 | 69.914286 | 0.000000 | 0.000000 | 50.585714 | 69.914286 | 23.842857 | 30.671429 | 17.728571 | 6.328571 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11205.00000 | 503.00000 | Traditional | Spanish | Art History, English Literature and Compositio... | No courses | No courses | 800.000000 | 315.000000 | 5.000000 | 101 Park Avenue\nBrooklyn, NY 11205\n(40.69634... | 2.000000 | 35.000000 | 40.696344 | -73.975771 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 68.000000 | 69.000000 | 32.000000 | 322.000000 | 27.000000 | 142.000000 | 8.100000 | 7.500000 | 7.400000 | 7.600000 | 7.400000 | 6.700000 | 7.300000 | 7.600000 | 6.100000 | 5.600000 | 6.100000 | 7.100000 | 7.200000 | 6.600000 | 6.900000 | 7.400000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
245 | 13K336 | ACADEMY OF BUSINESS AND COMMUNITY DEVELOPMENT | 9.0 | 439.0 | 374.0 | 418.0 | 1231.0 | 0 | 0.0 | 0.0 | 0.0 | 34.083333 | 1.500000 | 22.358333 | 21.500000 | 23.166667 | 20112012.0 | 59.100000 | 225.000000 | 39.00000 | 22.000000 | 29.000000 | 16.000000 | 7.000000 | 3.100000 | 48.000000 | 21.300000 | 19.000000 | 11.000000 | 6.000000 | 2.700000 | 200.000000 | 88.900000 | 16.000000 | 7.100000 | 1.000000 | 0.400000 | 224.000000 | 99.600000 | 1.000000 | 0.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.692865 | -73.977016 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 88.000000 | 6.000000 | 119.000000 | 14.000000 | 12.000000 | 8.900000 | 7.900000 | 7.900000 | 8.200000 | 5.900000 | 3.700000 | 5.000000 | 5.000000 | 6.300000 | 6.100000 | 6.800000 | 7.500000 | 6.700000 | 5.500000 | 6.300000 | 6.700000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
246 | 13K350 | URBAN ASSEMBLY HIGH SCHOOL OF MUSIC AND ART | 52.0 | 360.0 | 364.0 | 356.0 | 1080.0 | 0 | 0.0 | 0.0 | 0.0 | 60.333333 | 2.629630 | 22.229630 | 19.037037 | 26.888889 | 20112012.0 | 74.100000 | 431.000000 | 139.00000 | 101.000000 | 100.000000 | 91.000000 | 20.000000 | 4.600000 | 97.000000 | 22.500000 | 36.000000 | 39.000000 | 8.000000 | 1.900000 | 316.000000 | 73.300000 | 98.000000 | 22.700000 | 4.000000 | 0.900000 | 184.000000 | 42.700000 | 247.000000 | 57.300000 | 94.333333 | 74.133333 | 51.500000 | 69.333333 | 0.000000 | 0.000000 | 51.500000 | 69.333333 | 22.666667 | 30.666667 | 15.966667 | 7.800000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 394.00000 | Traditional | Spanish | English Language and Composition | No courses | No courses | 830.000000 | 400.000000 | 1.000000 | 49 Flatbush Avenue Extension\nBrooklyn, NY 112... | 2.000000 | 33.000000 | 40.697175 | -73.984960 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 58.000000 | 69.000000 | 18.000000 | 215.000000 | 18.000000 | 65.000000 | 7.600000 | 7.100000 | 6.900000 | 7.000000 | 6.600000 | 6.400000 | 6.600000 | 7.100000 | 6.500000 | 6.100000 | 6.400000 | 7.300000 | 6.900000 | 6.500000 | 6.600000 | 7.100000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
247 | 13K412 | BROOKLYN COMMUNITY HIGH SCHOOL OF COMMUNICATIO... | 37.0 | 375.0 | 355.0 | 384.0 | 1114.0 | 0 | 21.0 | 21.0 | 0.0 | 67.892857 | 2.642857 | 25.592857 | 22.464286 | 28.142857 | 20112012.0 | 68.900000 | 462.000000 | 135.00000 | 124.000000 | 118.000000 | 85.000000 | 11.000000 | 2.400000 | 83.000000 | 18.000000 | 50.000000 | 10.000000 | 3.000000 | 0.600000 | 366.000000 | 79.200000 | 79.000000 | 17.100000 | 6.000000 | 1.300000 | 210.000000 | 45.500000 | 252.000000 | 54.500000 | 52.666667 | 57.700000 | 41.050000 | 71.800000 | 6.400000 | 11.300000 | 34.650000 | 60.500000 | 16.650000 | 28.200000 | 37.200000 | 2.600000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11205.00000 | 401.00000 | Traditional | French, Spanish | English Literature and Composition, Statistics... | No courses | No courses | 830.000000 | 320.000000 | 1.000000 | 300 Willoughby Avenue\nBrooklyn, NY 11205\n(40... | 3.000000 | 33.000000 | 40.692582 | -73.958873 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 75.000000 | 38.000000 | 12.000000 | 337.000000 | 12.000000 | 54.000000 | 8.200000 | 7.500000 | 7.300000 | 7.700000 | 6.700000 | 6.700000 | 6.900000 | 7.800000 | 6.100000 | 6.600000 | 6.600000 | 7.500000 | 7.000000 | 6.900000 | 7.000000 | 7.600000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
248 | 13K419 | SCIENCE SKILLS CENTER HIGH SCHOOL FOR SCIENCE,... | 92.0 | 399.0 | 417.0 | 395.0 | 1211.0 | 0 | 52.0 | 59.0 | 0.0 | 105.354839 | 3.935484 | 24.841935 | 20.516129 | 27.935484 | 20112012.0 | 60.700000 | 517.000000 | 130.00000 | 147.000000 | 109.000000 | 131.000000 | 36.000000 | 7.000000 | 71.000000 | 13.700000 | 29.000000 | 21.000000 | 37.000000 | 7.200000 | 402.000000 | 77.800000 | 63.000000 | 12.200000 | 11.000000 | 2.100000 | 290.000000 | 56.100000 | 227.000000 | 43.900000 | 202.571429 | 64.857143 | 50.428571 | 77.771429 | 4.242857 | 6.414286 | 46.200000 | 71.357143 | 14.442857 | 22.228571 | 25.942857 | 7.028571 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 537.00000 | Traditional | French, Spanish | Biology, Calculus AB, Computer Science A, Engl... | Biology, Environmental Science | No courses | 807.000000 | 340.000000 | 3.000000 | 49 Flatbush Avenue Extension\nBrooklyn, NY 112... | 2.000000 | 33.000000 | 40.697175 | -73.984960 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 26.000000 | 603.000000 | 40.000000 | 151.000000 | 9.800000 | 9.600000 | 9.700000 | 9.600000 | 7.000000 | 7.300000 | 7.400000 | 7.700000 | 6.000000 | 6.400000 | 6.600000 | 7.200000 | 7.600000 | 7.800000 | 7.900000 | 8.200000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
249 | 13K430 | BROOKLYN TECHNICAL HIGH SCHOOL | 1277.0 | 587.0 | 659.0 | 587.0 | 1833.0 | 0 | 2117.0 | 3692.0 | 2687.0 | 1329.052632 | 41.157895 | 32.452632 | 28.578947 | 33.947368 | 20112012.0 | 50.700000 | 5332.000000 | 1413.00000 | 1399.000000 | 1319.000000 | 1201.000000 | 4.000000 | 0.100000 | 29.000000 | 0.500000 | 1.000000 | 0.000000 | 3214.000000 | 60.300000 | 542.000000 | 10.200000 | 420.000000 | 7.900000 | 1135.000000 | 21.300000 | 3106.000000 | 58.300000 | 2226.000000 | 41.700000 | 985.714286 | 92.014286 | 91.985714 | 99.971429 | 82.514286 | 89.671429 | 9.485714 | 10.285714 | 0.028571 | 0.028571 | 7.042857 | 0.585714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11217.00000 | 5458.00000 | Specialized School | Chinese (Mandarin), French, Italian, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | Microeconomics, Physics B | No courses | 845.000000 | 315.000000 | 1.000000 | 29 Ft Greene Place\nBrooklyn, NY 11217\n(40.68... | 2.000000 | 35.000000 | 40.688107 | -73.976745 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 94.000000 | 77.000000 | 45.000000 | 4768.000000 | 189.000000 | 2192.000000 | 7.900000 | 6.900000 | 7.300000 | 7.400000 | 7.800000 | 6.300000 | 7.000000 | 7.500000 | 7.000000 | 5.900000 | 6.700000 | 7.600000 | 7.500000 | 6.400000 | 7.000000 | 7.500000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
250 | 13K439 | BROOKLYN INTERNATIONAL HIGH SCHOOL | 90.0 | 305.0 | 364.0 | 312.0 | 981.0 | 0 | 0.0 | 0.0 | 0.0 | 138.785714 | 7.642857 | 19.585714 | 17.214286 | 21.357143 | 20112012.0 | 80.000000 | 367.000000 | 93.00000 | 97.000000 | 87.000000 | 90.000000 | 305.000000 | 83.100000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 156.000000 | 42.500000 | 74.000000 | 20.200000 | 105.000000 | 28.600000 | 32.000000 | 8.700000 | 177.000000 | 48.200000 | 190.000000 | 51.800000 | 86.714286 | 80.957143 | 50.271429 | 61.428571 | 0.000000 | 0.000000 | 50.271429 | 61.428571 | 30.671429 | 38.571429 | 14.014286 | 5.000000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 343.00000 | Consortium, International School | French | No courses | No courses | No courses | 915.000000 | 330.000000 | 1.000000 | 49 Flatbush Avenue Extension\nBrooklyn, NY 112... | 2.000000 | 33.000000 | 40.697175 | -73.984960 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 94.000000 | 92.000000 | 84.000000 | 360.000000 | 24.000000 | 292.000000 | 8.700000 | 8.100000 | 8.000000 | 8.200000 | 8.600000 | 7.500000 | 8.500000 | 9.000000 | 7.900000 | 7.200000 | 7.800000 | 8.000000 | 8.400000 | 7.600000 | 8.100000 | 8.400000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
251 | 13K483 | THE URBAN ASSEMBLY SCHOOL FOR LAW AND JUSTICE | 105.0 | 400.0 | 417.0 | 389.0 | 1206.0 | 0 | 31.0 | 57.0 | 24.0 | 75.206897 | 3.344828 | 21.886207 | 18.931034 | 24.482759 | 20112012.0 | 60.500000 | 450.000000 | 122.00000 | 127.000000 | 99.000000 | 102.000000 | 4.000000 | 0.900000 | 60.000000 | 13.300000 | 44.000000 | 8.000000 | 4.000000 | 0.900000 | 356.000000 | 79.100000 | 77.000000 | 17.100000 | 5.000000 | 1.100000 | 178.000000 | 39.600000 | 272.000000 | 60.400000 | 81.800000 | 86.175000 | 67.550000 | 78.350000 | 12.850000 | 15.050000 | 54.700000 | 63.300000 | 18.675000 | 21.650000 | 12.125000 | 1.150000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 449.00000 | Traditional | Spanish | English Language and Composition, Environmenta... | No courses | No courses | 840.000000 | 340.000000 | 1.000000 | 283 Adams Street\nBrooklyn, NY 11201\n(40.6946... | 2.000000 | 33.000000 | 40.694620 | -73.988624 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 88.000000 | 45.000000 | 422.000000 | 30.000000 | 198.000000 | 8.700000 | 8.100000 | 8.000000 | 8.500000 | 7.300000 | 6.900000 | 7.400000 | 8.000000 | 6.800000 | 6.300000 | 6.600000 | 7.800000 | 7.600000 | 7.100000 | 7.300000 | 8.100000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
252 | 13K499 | ACORN COMMUNITY HIGH SCHOOL | 72.0 | 384.0 | 364.0 | 368.0 | 1116.0 | 0 | 64.0 | 95.0 | 0.0 | 80.555556 | 3.055556 | 25.786111 | 22.472222 | 28.277778 | 20112012.0 | 81.000000 | 731.000000 | 252.00000 | 196.000000 | 159.000000 | 124.000000 | 21.000000 | 2.900000 | 136.000000 | 18.600000 | 48.000000 | 52.000000 | 9.000000 | 1.200000 | 619.000000 | 84.700000 | 89.000000 | 12.200000 | 6.000000 | 0.800000 | 408.000000 | 55.800000 | 323.000000 | 44.200000 | 142.714286 | 66.000000 | 44.414286 | 66.828571 | 2.414286 | 3.685714 | 42.000000 | 63.142857 | 21.557143 | 33.171429 | 18.614286 | 11.385714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11238.00000 | 623.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 815.000000 | 315.000000 | 2.000000 | 561 Grand Avenue\nBrooklyn, NY 11238\n(40.6785... | 8.000000 | 35.000000 | 40.678509 | -73.962067 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 72.000000 | 80.000000 | 25.000000 | 513.000000 | 36.000000 | 175.000000 | 7.600000 | 7.300000 | 7.100000 | 7.300000 | 6.000000 | 6.900000 | 6.800000 | 7.400000 | 6.000000 | 5.300000 | 6.100000 | 6.700000 | 6.500000 | 6.500000 | 6.700000 | 7.100000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
253 | 13K509 | FREEDOM ACADEMY HIGH SCHOOL | 29.0 | 400.0 | 390.0 | 403.0 | 1193.0 | 0 | 74.0 | 89.0 | 0.0 | 53.666667 | 2.500000 | 22.391667 | 20.000000 | 25.125000 | 20112012.0 | 68.000000 | 218.000000 | 65.00000 | 46.000000 | 53.000000 | 54.000000 | 4.000000 | 1.800000 | 31.000000 | 14.200000 | 16.000000 | 7.000000 | 3.000000 | 1.400000 | 179.000000 | 82.100000 | 33.000000 | 15.100000 | 2.000000 | 0.900000 | 95.000000 | 43.600000 | 123.000000 | 56.400000 | 47.285714 | 57.383333 | 51.716667 | 90.366667 | 3.950000 | 6.400000 | 47.750000 | 83.933333 | 5.650000 | 9.633333 | 35.700000 | 4.916667 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.692865 | -73.977016 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 95.000000 | 43.000000 | 191.000000 | 18.000000 | 103.000000 | 7.300000 | 7.100000 | 6.800000 | 7.000000 | 6.400000 | 6.100000 | 6.500000 | 6.900000 | 5.900000 | 5.800000 | 5.900000 | 7.000000 | 6.500000 | 6.300000 | 6.400000 | 7.000000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
254 | 13K527 | URBAN ASSEMBLY INSTITUTE OF MATH AND SCIENCE F... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 59.200000 | 2.400000 | 23.740000 | 23.000000 | 24.200000 | 20112012.0 | 62.200000 | 469.000000 | 99.00000 | 61.000000 | 63.000000 | 147.334928 | 7.000000 | 1.500000 | 62.000000 | 13.200000 | 40.000000 | 4.000000 | 24.000000 | 5.100000 | 372.000000 | 79.300000 | 55.000000 | 11.700000 | 12.000000 | 2.600000 | 0.000000 | 0.000000 | 469.000000 | 100.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11201.00000 | 508.00000 | All-Girls School | French, Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 830.000000 | 320.000000 | 1.000000 | 283 Adams Street\nBrooklyn, NY 11201\n(40.6946... | 2.000000 | 33.000000 | 40.694620 | -73.988624 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 91.000000 | 89.000000 | 39.000000 | 352.000000 | 25.000000 | 144.000000 | 7.900000 | 7.600000 | 7.800000 | 7.800000 | 6.800000 | 6.800000 | 6.900000 | 7.600000 | 5.800000 | 6.400000 | 6.600000 | 7.400000 | 6.900000 | 6.900000 | 7.100000 | 7.600000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
255 | 13K553 | BROOKLYN ACADEMY HIGH SCHOOL | 8.0 | 435.0 | 383.0 | 379.0 | 1197.0 | 0 | 0.0 | 0.0 | 0.0 | 61.909091 | 3.000000 | 22.463636 | 20.000000 | 25.363636 | 20112012.0 | 67.200000 | 184.000000 | 199.09611 | 38.000000 | 65.000000 | 81.000000 | 0.000000 | 0.000000 | 18.000000 | 9.800000 | 1.000000 | 1.000000 | 1.000000 | 0.500000 | 159.000000 | 86.400000 | 21.000000 | 11.400000 | 0.000000 | 0.000000 | 91.000000 | 49.500000 | 93.000000 | 50.500000 | 90.714286 | 15.714286 | 3.385714 | 20.600000 | 0.000000 | 0.000000 | 3.385714 | 20.600000 | 12.300000 | 79.400000 | 71.742857 | 10.971429 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.692865 | -73.977016 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 100.000000 | 41.000000 | 137.000000 | 14.000000 | 63.000000 | 9.400000 | 8.800000 | 8.500000 | 9.300000 | 8.200000 | 6.400000 | 6.900000 | 7.800000 | 8.000000 | 6.500000 | 7.200000 | 7.800000 | 8.500000 | 7.200000 | 7.500000 | 8.300000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
256 | 13K575 | BEDFORD STUYVESANT PREPARATORY HIGH SCHOOL | 13.0 | 398.0 | 391.0 | 394.0 | 1183.0 | 0 | 0.0 | 0.0 | 0.0 | 47.916667 | 2.750000 | 18.191667 | 16.083333 | 20.916667 | 20112012.0 | 74.600000 | 152.000000 | 1.00000 | 55.000000 | 50.000000 | 46.000000 | 1.000000 | 0.700000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 0.000000 | 0.000000 | 127.000000 | 83.600000 | 19.000000 | 12.500000 | 3.000000 | 2.000000 | 54.000000 | 35.500000 | 98.000000 | 64.500000 | 62.285714 | 33.457143 | 13.042857 | 39.071429 | 0.000000 | 0.000000 | 13.042857 | 39.071429 | 20.471429 | 60.928571 | 55.557143 | 9.000000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.692865 | -73.977016 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 82.000000 | 29.000000 | 81.000000 | 9.000000 | 30.000000 | 9.300000 | 8.700000 | 8.300000 | 8.600000 | 7.400000 | 6.200000 | 6.800000 | 7.800000 | 8.000000 | 7.600000 | 8.000000 | 8.100000 | 8.200000 | 7.500000 | 7.700000 | 8.200000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
257 | 13K595 | BEDFORD ACADEMY HIGH SCHOOL | 89.0 | 438.0 | 443.0 | 431.0 | 1312.0 | 0 | 43.0 | 57.0 | 16.0 | 104.062500 | 4.687500 | 21.793750 | 17.562500 | 25.437500 | 20112012.0 | 46.700000 | 367.000000 | 80.00000 | 96.000000 | 98.000000 | 93.000000 | 4.000000 | 1.100000 | 15.000000 | 4.100000 | 0.000000 | 1.000000 | 10.000000 | 2.700000 | 328.000000 | 89.400000 | 26.000000 | 7.100000 | 1.000000 | 0.300000 | 180.000000 | 49.000000 | 187.000000 | 51.000000 | 73.500000 | 93.840000 | 89.020000 | 94.880000 | 60.780000 | 64.740000 | 28.260000 | 30.120000 | 4.820000 | 5.120000 | 3.800000 | 2.160000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11216.00000 | 361.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, English Langu... | No courses | No courses | 800.000000 | 415.000000 | 2.000000 | 1119 Bedford Avenue\nBrooklyn, NY 11216\n(40.6... | 3.000000 | 36.000000 | 40.685381 | -73.954268 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 96.000000 | 66.000000 | 347.000000 | 23.000000 | 239.000000 | 9.300000 | 8.200000 | 8.100000 | 8.300000 | 7.600000 | 7.900000 | 7.300000 | 7.900000 | 6.600000 | 6.000000 | 6.700000 | 7.700000 | 7.800000 | 7.400000 | 7.400000 | 8.000000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
258 | 13K605 | GEORGE WESTINGHOUSE CAREER AND TECHNICAL EDUCA... | 85.0 | 406.0 | 391.0 | 392.0 | 1189.0 | 0 | 35.0 | 35.0 | 0.0 | 97.857143 | 4.023810 | 22.190476 | 19.000000 | 24.952381 | 20112012.0 | 65.000000 | 927.000000 | 206.00000 | 232.000000 | 247.000000 | 242.000000 | 18.000000 | 1.900000 | 131.000000 | 14.100000 | 43.000000 | 60.000000 | 26.000000 | 2.800000 | 740.000000 | 79.800000 | 142.000000 | 15.300000 | 12.000000 | 1.300000 | 700.000000 | 75.500000 | 227.000000 | 24.500000 | 210.000000 | 54.185714 | 21.428571 | 39.957143 | 6.714286 | 11.942857 | 14.714286 | 27.985714 | 32.771429 | 60.042857 | 23.885714 | 11.771429 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 702.00000 | CTE School | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 830.000000 | 330.000000 | 4.000000 | 105 Johnson Street\nBrooklyn, NY 11201\n(40.69... | 2.000000 | 33.000000 | 40.694944 | -73.986035 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 92.000000 | 33.000000 | 736.000000 | 60.000000 | 282.000000 | 7.900000 | 7.300000 | 7.200000 | 7.200000 | 6.500000 | 6.400000 | 7.000000 | 7.100000 | 5.500000 | 5.400000 | 5.800000 | 6.800000 | 6.600000 | 6.400000 | 6.700000 | 7.000000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
259 | 13K616 | BROOKLYN HIGH SCHOOL FOR LEADERSHIP AND COMMUN... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 55.428571 | 2.928571 | 18.828571 | 16.357143 | 21.500000 | 20112012.0 | 63.900000 | 212.000000 | 48.00000 | 58.000000 | 38.000000 | 68.000000 | 5.000000 | 2.400000 | 16.000000 | 7.500000 | 10.000000 | 2.000000 | 1.000000 | 0.500000 | 145.000000 | 68.400000 | 60.000000 | 28.300000 | 3.000000 | 1.400000 | 105.000000 | 49.500000 | 107.000000 | 50.500000 | 75.333333 | 5.333333 | 1.533333 | 28.600000 | 0.000000 | 0.000000 | 1.533333 | 28.600000 | 3.800000 | 71.400000 | 75.200000 | 18.733333 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.692865 | -73.977016 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 68.000000 | 100.000000 | 31.000000 | 124.000000 | 14.000000 | 57.000000 | 9.000000 | 8.400000 | 7.800000 | 8.500000 | 8.200000 | 7.700000 | 8.800000 | 9.300000 | 7.700000 | 6.500000 | 7.400000 | 7.800000 | 8.300000 | 7.500000 | 8.000000 | 8.500000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
260 | 13K670 | BENJAMIN BANNEKER ACADEMY | 185.0 | 471.0 | 472.0 | 448.0 | 1391.0 | 0 | 132.0 | 149.0 | 62.0 | 161.523810 | 5.619048 | 28.190476 | 22.000000 | 31.761905 | 20112012.0 | 47.400000 | 895.000000 | 240.00000 | 217.000000 | 231.000000 | 207.000000 | 0.000000 | 0.000000 | 27.000000 | 3.000000 | 1.000000 | 10.000000 | 24.000000 | 2.700000 | 779.000000 | 87.000000 | 79.000000 | 8.800000 | 4.000000 | 0.400000 | 413.000000 | 46.100000 | 482.000000 | 53.900000 | 206.857143 | 91.814286 | 84.285714 | 91.742857 | 37.557143 | 40.685714 | 46.742857 | 51.042857 | 7.528571 | 8.257143 | 5.614286 | 2.271429 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11205.00000 | 907.00000 | Traditional | Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 800.000000 | 300.000000 | 4.000000 | 71 77 Clinton Avenue\nBrooklyn, NY 11205\n(40.... | 2.000000 | 35.000000 | 40.695662 | -73.969286 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 58.000000 | 20.000000 | 697.000000 | 25.000000 | 158.000000 | 8.400000 | 6.900000 | 7.400000 | 7.700000 | 7.300000 | 6.100000 | 6.800000 | 7.000000 | 6.600000 | 5.700000 | 6.600000 | 7.400000 | 7.400000 | 6.200000 | 7.000000 | 7.300000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
261 | 13K674 | CITY POLYTECHNIC HIGH SCHOOL OF ENGINEERING, A... | 20.0 | 441.0 | 499.0 | 413.0 | 1353.0 | 0 | 0.0 | 0.0 | 0.0 | 101.636364 | 4.545455 | 20.427273 | 12.909091 | 26.909091 | 20112012.0 | 61.900000 | 335.000000 | 117.00000 | 132.000000 | 9.000000 | 77.000000 | 12.000000 | 3.600000 | 53.000000 | 15.800000 | 9.000000 | 24.000000 | 25.000000 | 7.500000 | 195.000000 | 58.200000 | 88.000000 | 26.300000 | 15.000000 | 4.500000 | 266.000000 | 79.400000 | 69.000000 | 20.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 451.00000 | CTE School | Spanish | No courses | No courses | No courses | 840.000000 | 407.000000 | 1.000000 | 105 Johnson Street\nBrooklyn, NY 11201\n(40.69... | 2.000000 | 33.000000 | 40.694944 | -73.986035 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 61.000000 | 20.000000 | 206.000000 | 11.000000 | 47.000000 | 8.200000 | 8.000000 | 7.800000 | 8.200000 | 6.600000 | 6.900000 | 6.000000 | 7.100000 | 6.400000 | 6.000000 | 6.900000 | 7.400000 | 7.100000 | 7.000000 | 6.900000 | 7.600000 | 13 | DISTRICT 13 | 89.56 | 22785 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
262 | 14K071 | JUAN MOREL CAMPOS SECONDARY SCHOOL | 102.0 | 365.0 | 361.0 | 359.0 | 1085.0 | 0 | 16.0 | 16.0 | 12.0 | 68.566667 | 2.600000 | 24.540000 | 22.600000 | 25.933333 | 20112012.0 | 76.600000 | 865.000000 | 110.00000 | 103.000000 | 99.000000 | 131.000000 | 215.000000 | 24.900000 | 231.000000 | 26.700000 | 23.000000 | 113.000000 | 2.000000 | 0.200000 | 132.000000 | 15.300000 | 697.000000 | 80.600000 | 29.000000 | 3.400000 | 473.000000 | 54.700000 | 392.000000 | 45.300000 | 53.428571 | 48.550000 | 31.475000 | 65.375000 | 0.800000 | 1.625000 | 30.675000 | 63.750000 | 17.125000 | 34.625000 | 35.625000 | 12.850000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11206.00000 | 778.00000 | Traditional | Spanish | Chemistry, English Language and Composition, E... | No courses | Spanish | 800.000000 | 215.000000 | 4.000000 | 215 Heyward Street\nBrooklyn, NY 11206\n(40.70... | 1.000000 | 33.000000 | 40.703577 | -73.953237 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 84.000000 | 29.000000 | 661.000000 | 64.000000 | 221.000000 | 8.000000 | 7.500000 | 7.400000 | 7.700000 | 7.100000 | 6.700000 | 7.100000 | 7.500000 | 6.100000 | 5.800000 | 6.500000 | 7.400000 | 7.100000 | 6.700000 | 7.000000 | 7.500000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
263 | 14K322 | FOUNDATIONS ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 42.0 | 53.0 | 0.0 | 34.904762 | 1.809524 | 19.809524 | 17.523810 | 22.190476 | 20112012.0 | 78.700000 | 141.000000 | 51.00000 | 32.000000 | 27.000000 | 31.000000 | 8.000000 | 5.700000 | 40.000000 | 28.400000 | 9.000000 | 21.000000 | 2.000000 | 1.400000 | 94.000000 | 66.700000 | 42.000000 | 29.800000 | 2.000000 | 1.400000 | 80.000000 | 56.700000 | 61.000000 | 43.300000 | 54.250000 | 71.266667 | 47.666667 | 66.633333 | 1.500000 | 2.066667 | 46.233333 | 64.566667 | 23.600000 | 33.366667 | 21.733333 | 2.566667 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11206.00000 | 110.00000 | Traditional | Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 70 Tompkins Avenue\nBrooklyn, NY 11206\n(40.69... | 3.000000 | 36.000000 | 40.697061 | -73.946675 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 62.000000 | 100.000000 | 42.000000 | 103.000000 | 14.000000 | 66.000000 | 8.400000 | 7.800000 | 7.600000 | 7.700000 | 6.000000 | 5.700000 | 5.900000 | 6.500000 | 6.900000 | 6.400000 | 7.200000 | 7.700000 | 7.100000 | 6.600000 | 6.900000 | 7.300000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
264 | 14K404 | ACADEMY FOR YOUNG WRITERS | 68.0 | 387.0 | 357.0 | 381.0 | 1125.0 | 0 | 0.0 | 0.0 | 0.0 | 90.647059 | 4.000000 | 22.817647 | 18.529412 | 26.588235 | 20112012.0 | 65.300000 | 400.000000 | 129.00000 | 106.000000 | 86.000000 | 79.000000 | 10.000000 | 2.500000 | 51.000000 | 12.700000 | 31.000000 | 6.000000 | 3.000000 | 0.700000 | 254.000000 | 63.500000 | 129.000000 | 32.200000 | 12.000000 | 3.000000 | 97.000000 | 24.200000 | 303.000000 | 75.700000 | 52.666667 | 80.750000 | 60.250000 | 74.600000 | 0.000000 | 0.000000 | 60.250000 | 74.600000 | 20.500000 | 25.400000 | 14.100000 | 3.800000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.711599 | -73.948360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 71.000000 | 23.000000 | 290.000000 | 20.000000 | 82.000000 | 8.200000 | 7.700000 | 7.500000 | 8.000000 | 7.200000 | 6.900000 | 7.000000 | 8.100000 | 6.500000 | 6.200000 | 6.400000 | 7.400000 | 7.300000 | 6.900000 | 7.000000 | 7.800000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
265 | 14K449 | BROOKLYN LATIN SCHOOL, THE | 72.0 | 586.0 | 584.0 | 570.0 | 1740.0 | 0 | 0.0 | 0.0 | 0.0 | 122.400000 | 5.200000 | 23.260000 | 17.000000 | 28.533333 | 20112012.0 | 53.300000 | 468.000000 | 180.00000 | 124.000000 | 94.000000 | 70.000000 | 2.000000 | 0.400000 | 5.000000 | 1.100000 | 0.000000 | 0.000000 | 172.000000 | 36.800000 | 125.000000 | 26.700000 | 84.000000 | 17.900000 | 68.000000 | 14.500000 | 257.000000 | 54.900000 | 211.000000 | 45.100000 | 51.000000 | 96.100000 | 92.200000 | 96.100000 | 51.000000 | 53.150000 | 41.200000 | 42.950000 | 3.900000 | 3.900000 | 3.900000 | 0.000000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11206.00000 | 592.00000 | Specialized School | Latin, Spanish | No courses | No courses | No courses | 800.000000 | 230.000000 | 1.000000 | 223 Graham Avenue\nBrooklyn, NY 11206\n(40.709... | 1.000000 | 34.000000 | 40.709900 | -73.943660 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 82.000000 | 37.000000 | 328.000000 | 18.000000 | 120.000000 | 8.800000 | 7.900000 | 7.600000 | 8.400000 | 8.500000 | 7.200000 | 7.700000 | 8.800000 | 7.500000 | 7.000000 | 6.900000 | 8.200000 | 8.200000 | 7.400000 | 7.400000 | 8.500000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
266 | 14K454 | GREEN SCHOOL: AN ACADEMY FOR ENVIRONMENTAL CAR... | 41.0 | 407.0 | 386.0 | 396.0 | 1189.0 | 0 | 0.0 | 0.0 | 0.0 | 70.454545 | 3.136364 | 23.450000 | 20.181818 | 26.500000 | 20112012.0 | 72.900000 | 392.000000 | 115.00000 | 102.000000 | 92.000000 | 83.000000 | 45.000000 | 11.500000 | 60.000000 | 15.300000 | 39.000000 | 8.000000 | 8.000000 | 2.000000 | 187.000000 | 47.700000 | 184.000000 | 46.900000 | 10.000000 | 2.600000 | 181.000000 | 46.200000 | 211.000000 | 53.800000 | 49.250000 | 59.400000 | 47.950000 | 81.150000 | 0.000000 | 0.000000 | 47.950000 | 81.150000 | 11.450000 | 18.850000 | 20.800000 | 15.600000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11206.00000 | 328.00000 | Traditional | Spanish Native Language Arts | English Literature and Composition | No courses | No courses | 800.000000 | 330.000000 | 2.000000 | 223 Graham Avenue\nBrooklyn, NY 11206\n(40.709... | 1.000000 | 34.000000 | 40.709900 | -73.943660 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 96.000000 | 36.000000 | 210.000000 | 25.000000 | 113.000000 | 8.400000 | 8.100000 | 7.800000 | 8.200000 | 7.700000 | 6.800000 | 7.800000 | 8.000000 | 6.800000 | 6.400000 | 7.100000 | 7.900000 | 7.700000 | 7.100000 | 7.600000 | 8.000000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
267 | 14K474 | PROGRESS HIGH SCHOOL FOR PROFESSIONAL CAREERS | 144.0 | 364.0 | 379.0 | 371.0 | 1114.0 | 0 | 50.0 | 66.0 | 0.0 | 172.900000 | 6.500000 | 26.150000 | 21.400000 | 29.700000 | 20112012.0 | 84.800000 | 1068.000000 | 448.00000 | 278.000000 | 212.000000 | 130.000000 | 172.000000 | 16.100000 | 139.000000 | 13.000000 | 71.000000 | 28.000000 | 8.000000 | 0.700000 | 348.000000 | 32.600000 | 698.000000 | 65.400000 | 11.000000 | 1.000000 | 518.000000 | 48.500000 | 550.000000 | 51.500000 | 212.000000 | 58.814286 | 33.142857 | 55.214286 | 1.471429 | 2.442857 | 31.685714 | 52.800000 | 25.671429 | 44.785714 | 29.542857 | 8.928571 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 1083.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | Art History, Biology, English Language and Com... | English, Haitian-Creole, Spanish, Spanish Nati... | 800.000000 | 245.000000 | 4.000000 | 850 Grand Street\nBrooklyn, NY 11211\n(40.7119... | 1.000000 | 34.000000 | 40.711963 | -73.940434 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 78.000000 | 35.000000 | 798.000000 | 43.000000 | 311.000000 | 7.800000 | 7.300000 | 7.200000 | 7.400000 | 7.200000 | 6.600000 | 7.000000 | 7.500000 | 6.400000 | 5.600000 | 6.400000 | 7.200000 | 7.100000 | 6.500000 | 6.900000 | 7.400000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
268 | 14K477 | SCHOOL FOR LEGAL STUDIES | 134.0 | 413.0 | 396.0 | 395.0 | 1204.0 | 0 | 24.0 | 27.0 | 0.0 | 159.400000 | 5.680000 | 28.872000 | 24.520000 | 32.520000 | 20112012.0 | 65.600000 | 759.000000 | 159.00000 | 183.000000 | 211.000000 | 206.000000 | 43.000000 | 5.700000 | 99.000000 | 13.000000 | 58.000000 | 9.000000 | 7.000000 | 0.900000 | 438.000000 | 57.700000 | 298.000000 | 39.300000 | 13.000000 | 1.700000 | 348.000000 | 45.800000 | 411.000000 | 54.200000 | 157.571429 | 59.371429 | 30.800000 | 51.700000 | 2.300000 | 3.857143 | 28.528571 | 47.828571 | 28.557143 | 48.300000 | 24.957143 | 13.285714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 641.00000 | Traditional | Spanish | Calculus AB, Chemistry, English Language and C... | No courses | No courses | 800.000000 | 330.000000 | 2.000000 | 850 Grand Street\nBrooklyn, NY 11211\n(40.7119... | 1.000000 | 34.000000 | 40.711963 | -73.940434 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 50.000000 | 85.000000 | 27.000000 | 370.000000 | 44.000000 | 193.000000 | 7.200000 | 7.000000 | 7.100000 | 7.300000 | 7.000000 | 6.800000 | 7.100000 | 7.600000 | 5.400000 | 5.600000 | 5.700000 | 6.700000 | 6.500000 | 6.500000 | 6.600000 | 7.200000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
269 | 14K478 | THE HIGH SCHOOL FOR ENTERPRISE, BUSINESS AND T... | 142.0 | 398.0 | 421.0 | 396.0 | 1215.0 | 0 | 94.0 | 129.0 | 19.0 | 184.812500 | 6.343750 | 29.393750 | 21.343750 | 38.687500 | 20112012.0 | 74.200000 | 976.000000 | 303.00000 | 301.000000 | 172.000000 | 200.000000 | 97.000000 | 9.900000 | 129.000000 | 13.200000 | 64.000000 | 20.000000 | 31.000000 | 3.200000 | 384.000000 | 39.300000 | 541.000000 | 55.400000 | 19.000000 | 1.900000 | 641.000000 | 65.700000 | 335.000000 | 34.300000 | 163.428571 | 79.914286 | 54.085714 | 66.514286 | 18.900000 | 22.500000 | 35.185714 | 44.000000 | 25.828571 | 33.500000 | 12.514286 | 6.271429 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 1016.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 745.000000 | 345.000000 | 4.000000 | 850 Grand Street\nBrooklyn, NY 11211\n(40.7119... | 1.000000 | 34.000000 | 40.711963 | -73.940434 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 68.000000 | 14.000000 | 689.000000 | 41.000000 | 126.000000 | 8.500000 | 7.900000 | 7.700000 | 7.900000 | 7.200000 | 6.200000 | 6.700000 | 7.200000 | 6.000000 | 5.600000 | 6.100000 | 6.900000 | 7.200000 | 6.500000 | 6.900000 | 7.300000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
270 | 14K488 | BROOKLYN PREPARATORY HIGH SCHOOL | 42.0 | 367.0 | 373.0 | 350.0 | 1090.0 | 0 | 28.0 | 46.0 | 7.0 | 61.230769 | 2.538462 | 23.926923 | 21.346154 | 26.192308 | 20112012.0 | 80.300000 | 400.000000 | 130.00000 | 118.000000 | 90.000000 | 62.000000 | 11.000000 | 2.700000 | 75.000000 | 18.800000 | 46.000000 | 8.000000 | 7.000000 | 1.700000 | 235.000000 | 58.700000 | 151.000000 | 37.700000 | 4.000000 | 1.000000 | 191.000000 | 47.700000 | 209.000000 | 52.200000 | 72.250000 | 83.450000 | 66.650000 | 79.375000 | 3.375000 | 3.850000 | 63.275000 | 75.500000 | 16.775000 | 20.625000 | 9.300000 | 4.100000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 489.00000 | Traditional | French, Spanish | Calculus AB, Chemistry, English Language and C... | No courses | No courses | 820.000000 | 310.000000 | 1.000000 | 257 North 6 Street\nBrooklyn, NY 11211\n(40.71... | 1.000000 | 33.000000 | 40.715038 | -73.954650 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 83.000000 | 85.000000 | 33.000000 | 305.000000 | 23.000000 | 118.000000 | 8.100000 | 7.400000 | 7.500000 | 7.700000 | 6.900000 | 6.100000 | 6.800000 | 7.600000 | 6.400000 | 6.100000 | 6.400000 | 7.300000 | 7.200000 | 6.500000 | 6.900000 | 7.600000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
271 | 14K558 | WILLIAMSBURG HIGH SCHOOL FOR ARCHITECTURE AND ... | 72.0 | 363.0 | 385.0 | 364.0 | 1112.0 | 0 | 30.0 | 48.0 | 0.0 | 63.555556 | 2.555556 | 25.662963 | 22.629630 | 28.481481 | 20112012.0 | 82.600000 | 500.000000 | 186.00000 | 135.000000 | 87.000000 | 92.000000 | 35.000000 | 7.000000 | 88.000000 | 17.600000 | 47.000000 | 14.000000 | 7.000000 | 1.400000 | 192.000000 | 38.400000 | 286.000000 | 57.200000 | 11.000000 | 2.200000 | 363.000000 | 72.600000 | 137.000000 | 27.400000 | 59.166667 | 78.750000 | 65.475000 | 82.850000 | 4.975000 | 6.400000 | 60.475000 | 76.425000 | 13.275000 | 17.150000 | 9.875000 | 8.750000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 579.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 257 North 6 Street\nBrooklyn, NY 11211\n(40.71... | 1.000000 | 33.000000 | 40.715038 | -73.954650 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 67.000000 | 400.000000 | 27.000000 | 270.000000 | 8.600000 | 8.100000 | 8.000000 | 8.300000 | 8.400000 | 8.300000 | 8.600000 | 8.900000 | 7.800000 | 6.500000 | 7.600000 | 8.300000 | 8.300000 | 7.700000 | 8.100000 | 8.500000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
272 | 14K561 | WILLIAMSBURG PREPARATORY SCHOOL | 113.0 | 397.0 | 410.0 | 380.0 | 1187.0 | 0 | 31.0 | 41.0 | 0.0 | 77.258065 | 3.000000 | 26.790323 | 23.451613 | 29.645161 | 20112012.0 | 81.000000 | 577.000000 | 157.00000 | 158.000000 | 138.000000 | 124.000000 | 16.000000 | 2.800000 | 73.000000 | 12.700000 | 45.000000 | 4.000000 | 9.000000 | 1.600000 | 147.000000 | 25.500000 | 355.000000 | 61.500000 | 64.000000 | 11.100000 | 294.000000 | 51.000000 | 283.000000 | 49.000000 | 82.400000 | 83.850000 | 79.225000 | 94.400000 | 15.375000 | 18.550000 | 63.800000 | 75.850000 | 4.650000 | 5.600000 | 9.075000 | 6.625000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 671.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 257 North 6 Street\nBrooklyn, NY 11211\n(40.71... | 1.000000 | 33.000000 | 40.715038 | -73.954650 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 97.000000 | 50.000000 | 418.000000 | 37.000000 | 255.000000 | 9.400000 | 9.100000 | 8.800000 | 9.200000 | 8.100000 | 8.300000 | 8.000000 | 8.500000 | 7.200000 | 6.300000 | 7.000000 | 7.900000 | 8.200000 | 7.900000 | 7.900000 | 8.600000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
273 | 14K586 | LYONS COMMUNITY SCHOOL | 31.0 | 371.0 | 377.0 | 355.0 | 1103.0 | 0 | 0.0 | 0.0 | 0.0 | 57.392857 | 2.571429 | 21.964286 | 18.392857 | 25.571429 | 20112012.0 | 78.600000 | 527.000000 | 105.00000 | 83.000000 | 73.000000 | 55.000000 | 77.000000 | 14.600000 | 116.000000 | 22.000000 | 58.000000 | 23.000000 | 6.000000 | 1.100000 | 220.000000 | 41.700000 | 288.000000 | 54.600000 | 11.000000 | 2.100000 | 283.000000 | 53.700000 | 244.000000 | 46.300000 | 4.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11206.00000 | 546.00000 | Traditional | Spanish | No courses | No courses | No courses | 840.000000 | 330.000000 | 1.000000 | 223 Graham Avenue\nBrooklyn, NY 11206\n(40.709... | 1.000000 | 34.000000 | 40.709900 | -73.943660 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 87.000000 | 24.000000 | 391.000000 | 45.000000 | 116.000000 | 8.300000 | 8.000000 | 7.900000 | 8.300000 | 8.100000 | 7.800000 | 8.600000 | 8.600000 | 6.900000 | 6.600000 | 7.000000 | 7.600000 | 7.800000 | 7.500000 | 7.800000 | 8.200000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
274 | 14K610 | AUTOMOTIVE HIGH SCHOOL | 94.0 | 367.0 | 376.0 | 350.0 | 1093.0 | 0 | 0.0 | 0.0 | 0.0 | 100.757576 | 4.121212 | 23.206061 | 18.515152 | 26.848485 | 20112012.0 | 67.100000 | 723.000000 | 245.00000 | 217.000000 | 164.000000 | 97.000000 | 34.000000 | 4.700000 | 219.000000 | 30.300000 | 64.000000 | 70.000000 | 10.000000 | 1.400000 | 478.000000 | 66.100000 | 218.000000 | 30.200000 | 12.000000 | 1.700000 | 691.000000 | 95.600000 | 32.000000 | 4.400000 | 171.142857 | 49.000000 | 18.228571 | 36.357143 | 3.914286 | 7.828571 | 14.328571 | 28.542857 | 30.928571 | 64.057143 | 25.585714 | 17.728571 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11222.00000 | 420.00000 | CTE School | Italian | English Literature and Composition, Environmen... | Biology, Calculus AB, Physics B | French, Japanese | 845.000000 | 350.000000 | 4.000000 | 50 Bedford Avenue\nBrooklyn, NY 11222\n(40.722... | 1.000000 | 33.000000 | 40.722643 | -73.952583 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 68.000000 | 25.000000 | 583.000000 | 48.000000 | 197.000000 | 7.400000 | 7.700000 | 7.400000 | 7.500000 | 5.400000 | 4.600000 | 5.300000 | 6.200000 | 5.300000 | 5.600000 | 6.100000 | 6.900000 | 6.000000 | 6.000000 | 6.300000 | 6.900000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
275 | 14K632 | FRANCES PERKINS ACADEMY | 12.0 | 382.0 | 372.0 | 368.0 | 1122.0 | 0 | 0.0 | 0.0 | 0.0 | 45.692308 | 2.615385 | 17.976923 | 16.538462 | 19.461538 | 20112012.0 | 86.900000 | 173.000000 | 45.00000 | 39.000000 | 37.000000 | 52.000000 | 17.000000 | 9.800000 | 43.000000 | 24.900000 | 33.000000 | 6.000000 | 0.000000 | 0.000000 | 112.000000 | 64.700000 | 54.000000 | 31.200000 | 7.000000 | 4.000000 | 133.000000 | 76.900000 | 40.000000 | 23.100000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11222.00000 | 157.00000 | Traditional | Spanish | English Language and Composition, United State... | English Language and Composition, United State... | No courses | 800.000000 | 300.000000 | 1.000000 | 50 Bedford Avenue\nBrooklyn, NY 11222\n(40.722... | 1.000000 | 33.000000 | 40.722643 | -73.952583 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 87.000000 | 58.000000 | 132.000000 | 13.000000 | 84.000000 | 9.000000 | 8.400000 | 8.400000 | 7.900000 | 5.600000 | 4.200000 | 6.200000 | 6.700000 | 7.100000 | 7.000000 | 7.200000 | 7.400000 | 7.200000 | 6.500000 | 7.200000 | 7.300000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
276 | 14K685 | EL PUENTE ACADEMY FOR PEACE AND JUSTICE | 28.0 | 359.0 | 335.0 | 341.0 | 1035.0 | 0 | 0.0 | 0.0 | 0.0 | 69.000000 | 3.090909 | 21.154545 | 20.090909 | 22.545455 | 20112012.0 | 80.400000 | 218.000000 | 75.00000 | 51.000000 | 48.000000 | 44.000000 | 37.000000 | 17.000000 | 51.000000 | 23.400000 | 6.000000 | 10.000000 | 4.000000 | 1.800000 | 22.000000 | 10.100000 | 191.000000 | 87.600000 | 1.000000 | 0.500000 | 93.000000 | 42.700000 | 125.000000 | 57.300000 | 34.571429 | 66.200000 | 18.114286 | 26.542857 | 0.000000 | 0.000000 | 18.114286 | 26.542857 | 48.085714 | 73.457143 | 27.628571 | 2.285714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11211.00000 | 225.00000 | Consortium School | Spanish | No courses | No courses | No courses | 900.000000 | 330.000000 | 1.000000 | 250 Hooper Street\nBrooklyn, NY 11211\n(40.705... | 1.000000 | 33.000000 | 40.705766 | -73.955729 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 80.000000 | 14.000000 | 151.000000 | 12.000000 | 25.000000 | 9.100000 | 7.900000 | 7.900000 | 8.100000 | 8.600000 | 7.800000 | 8.800000 | 8.700000 | 7.800000 | 6.400000 | 7.200000 | 7.700000 | 8.500000 | 7.400000 | 8.000000 | 8.200000 | 14 | DISTRICT 14 | 89.41 | 20181 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
277 | 14K923 | AUTOMOTIVE HIGH SCHOOL YABC | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.711599 | -73.948360 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 100.000000 | 2.000000 | 127.000000 | 17.000000 | 3.000000 | 8.300000 | 5.300000 | 6.000000 | 8.000000 | 8.800000 | 7.900000 | 8.300000 | 8.700000 | 8.300000 | 6.800000 | 7.800000 | 8.200000 | 8.500000 | 6.900000 | 7.600000 | 8.300000 | 14 | DISTRICT 14 | 89.41 | 20181 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
278 | 15K429 | BROOKLYN SCHOOL FOR GLOBAL STUDIES | 52.0 | 361.0 | 367.0 | 383.0 | 1111.0 | 0 | 0.0 | 0.0 | 0.0 | 32.078947 | 1.421053 | 21.989474 | 20.263158 | 23.500000 | 20112012.0 | 68.200000 | 354.000000 | 46.00000 | 79.000000 | 59.000000 | 73.000000 | 21.000000 | 5.900000 | 90.000000 | 25.400000 | 48.000000 | 30.000000 | 8.000000 | 2.300000 | 193.000000 | 54.500000 | 138.000000 | 39.000000 | 12.000000 | 3.400000 | 199.000000 | 56.200000 | 155.000000 | 43.800000 | 89.142857 | 47.914286 | 23.214286 | 45.542857 | 0.000000 | 0.000000 | 23.214286 | 45.542857 | 24.700000 | 54.457143 | 36.414286 | 9.842857 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11201.00000 | 275.00000 | Consortium School | Spanish | Art History, Calculus AB, English Language and... | Art History, Calculus AB | Arabic, Bengali, Chinese, Chinese (Cantonese),... | 845.000000 | 310.000000 | 1.000000 | 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... | 6.000000 | 33.000000 | 40.685452 | -73.993491 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 56.000000 | 95.000000 | 20.000000 | 231.000000 | 37.000000 | 75.000000 | 7.900000 | 7.500000 | 7.300000 | 7.700000 | 5.900000 | 5.000000 | 5.300000 | 5.900000 | 6.100000 | 5.500000 | 5.900000 | 7.000000 | 6.600000 | 6.000000 | 6.200000 | 6.900000 | 15 | DISTRICT 15 | 91.27 | 26786 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
279 | 15K448 | BROOKLYN SECONDARY SCHOOL FOR COLLABORATIVE ST... | 76.0 | 393.0 | 399.0 | 387.0 | 1179.0 | 0 | 0.0 | 0.0 | 0.0 | 54.281250 | 2.218750 | 24.806250 | 21.281250 | 28.125000 | 20112012.0 | 57.200000 | 692.000000 | 103.00000 | 98.000000 | 83.000000 | 81.000000 | 31.000000 | 4.500000 | 202.000000 | 29.200000 | 123.000000 | 24.000000 | 30.000000 | 4.300000 | 237.000000 | 34.200000 | 333.000000 | 48.100000 | 87.000000 | 12.600000 | 409.000000 | 59.100000 | 283.000000 | 40.900000 | 58.000000 | 85.233333 | 76.333333 | 89.733333 | 0.000000 | 0.000000 | 76.333333 | 89.733333 | 8.900000 | 10.266667 | 7.366667 | 3.866667 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11231.00000 | 670.00000 | Consortium School | American Sign Language, Spanish | No courses | No courses | No courses | 830.000000 | 250.000000 | 1.000000 | 610 Henry Street\nBrooklyn, NY 11231\n(40.6798... | 6.000000 | 39.000000 | 40.679864 | -74.001482 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 87.000000 | 42.000000 | 595.000000 | 55.000000 | 262.000000 | 8.400000 | 8.000000 | 8.000000 | 8.200000 | 6.700000 | 6.200000 | 6.600000 | 7.100000 | 6.700000 | 6.400000 | 7.000000 | 7.600000 | 7.300000 | 6.900000 | 7.200000 | 7.600000 | 15 | DISTRICT 15 | 91.27 | 26786 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
280 | 15K462 | SECONDARY SCHOOL FOR LAW | 59.0 | 398.0 | 411.0 | 394.0 | 1203.0 | 0 | 0.0 | 0.0 | 0.0 | 113.526316 | 4.421053 | 25.015789 | 19.736842 | 29.368421 | 20112012.0 | 76.100000 | 473.000000 | 111.00000 | 126.000000 | 102.000000 | 89.000000 | 30.000000 | 6.300000 | 60.000000 | 12.700000 | 21.000000 | 30.000000 | 12.000000 | 2.500000 | 295.000000 | 62.400000 | 140.000000 | 29.600000 | 26.000000 | 5.500000 | 209.000000 | 44.200000 | 264.000000 | 55.800000 | 80.142857 | 60.457143 | 32.428571 | 51.457143 | 4.685714 | 7.385714 | 27.800000 | 44.085714 | 28.028571 | 48.542857 | 24.685714 | 7.785714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11215.00000 | 389.00000 | Traditional | French, Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 825.000000 | 312.000000 | 1.000000 | 237 7 Avenue\nBrooklyn, NY 11215\n(40.66959817... | 6.000000 | 39.000000 | 40.669598 | -73.979256 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 82.000000 | 81.000000 | 20.000000 | 412.000000 | 30.000000 | 95.000000 | 7.900000 | 7.400000 | 7.200000 | 7.900000 | 6.500000 | 5.600000 | 5.600000 | 6.600000 | 5.500000 | 5.700000 | 5.600000 | 6.800000 | 6.600000 | 6.200000 | 6.200000 | 7.100000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
281 | 15K463 | SECONDARY SCHOOL FOR JOURNALISM | 58.0 | 397.0 | 391.0 | 381.0 | 1169.0 | 0 | 22.0 | 22.0 | 0.0 | 60.181818 | 2.818182 | 17.677273 | 14.636364 | 20.181818 | 20112012.0 | 77.000000 | 336.000000 | 74.00000 | 80.000000 | 77.000000 | 65.000000 | 56.000000 | 16.700000 | 45.000000 | 13.400000 | 4.000000 | 24.000000 | 31.000000 | 9.200000 | 141.000000 | 42.000000 | 145.000000 | 43.200000 | 18.000000 | 5.400000 | 142.000000 | 42.300000 | 194.000000 | 57.700000 | 66.857143 | 58.083333 | 37.850000 | 65.550000 | 5.200000 | 8.833333 | 32.633333 | 56.716667 | 20.233333 | 34.450000 | 33.450000 | 6.033333 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11215.00000 | 271.00000 | Traditional | Spanish | Comparative Government and Politics, English L... | No courses | No courses | 825.000000 | 312.000000 | 1.000000 | 237 7 Avenue\nBrooklyn, NY 11215\n(40.66959817... | 6.000000 | 39.000000 | 40.669598 | -73.979256 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 77.000000 | 11.000000 | 285.000000 | 23.000000 | 37.000000 | 8.200000 | 7.700000 | 7.400000 | 7.900000 | 6.600000 | 6.000000 | 6.100000 | 6.800000 | 5.800000 | 5.700000 | 6.100000 | 7.300000 | 6.900000 | 6.500000 | 6.500000 | 7.400000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
282 | 15K464 | PARK SLOPE COLLEGIATE | 72.0 | 379.0 | 416.0 | 380.0 | 1175.0 | 0 | 0.0 | 0.0 | 0.0 | 63.631579 | 2.473684 | 24.410526 | 22.473684 | 26.052632 | 20112012.0 | 78.000000 | 394.000000 | 87.00000 | 94.000000 | 37.000000 | 83.000000 | 38.000000 | 9.600000 | 65.000000 | 16.500000 | 0.000000 | 48.000000 | 34.000000 | 8.600000 | 131.000000 | 33.200000 | 204.000000 | 51.800000 | 21.000000 | 5.300000 | 208.000000 | 52.800000 | 186.000000 | 47.200000 | 67.142857 | 59.085714 | 32.971429 | 54.528571 | 4.585714 | 6.942857 | 28.385714 | 47.585714 | 26.114286 | 45.471429 | 33.585714 | 5.200000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11215.00000 | 379.00000 | Traditional | Spanish | No courses | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 237 7 Avenue\nBrooklyn, NY 11215\n(40.66959817... | 6.000000 | 39.000000 | 40.669598 | -73.979256 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 88.000000 | 45.000000 | 374.000000 | 29.000000 | 164.000000 | 7.500000 | 7.200000 | 7.300000 | 7.500000 | 6.900000 | 7.100000 | 7.100000 | 8.200000 | 6.200000 | 5.800000 | 6.600000 | 7.300000 | 6.900000 | 6.700000 | 7.000000 | 7.700000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
283 | 15K497 | SCHOOL FOR INTERNATIONAL STUDIES | 64.0 | 405.0 | 415.0 | 392.0 | 1212.0 | 0 | 30.0 | 34.0 | 0.0 | 72.300000 | 3.200000 | 22.195000 | 19.150000 | 25.150000 | 20112012.0 | 68.100000 | 486.000000 | 89.00000 | 94.000000 | 60.000000 | 89.000000 | 71.000000 | 14.600000 | 74.000000 | 15.200000 | 4.000000 | 39.000000 | 30.000000 | 6.200000 | 199.000000 | 40.900000 | 189.000000 | 38.900000 | 68.000000 | 14.000000 | 247.000000 | 50.800000 | 239.000000 | 49.200000 | 68.000000 | 59.742857 | 30.385714 | 48.985714 | 3.242857 | 5.114286 | 27.114286 | 43.900000 | 29.400000 | 51.014286 | 25.342857 | 12.571429 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11201.00000 | 479.00000 | Traditional | Chinese (Mandarin), French, Spanish | English Language and Composition, Environmenta... | No courses | No courses | 830.000000 | 315.000000 | 2.000000 | 284 Baltic Street\nBrooklyn, NY 11201\n(40.685... | 6.000000 | 33.000000 | 40.685452 | -73.993491 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 88.000000 | 89.000000 | 37.000000 | 400.000000 | 31.000000 | 156.000000 | 8.200000 | 7.600000 | 7.400000 | 8.000000 | 6.300000 | 5.300000 | 5.700000 | 6.600000 | 6.700000 | 6.100000 | 6.600000 | 7.500000 | 7.100000 | 6.300000 | 6.600000 | 7.300000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
284 | 15K519 | COBBLE HILL SCHOOL OF AMERICAN STUDIES | 77.0 | 398.0 | 402.0 | 385.0 | 1185.0 | 0 | 25.0 | 36.0 | 0.0 | 82.682927 | 3.390244 | 23.336585 | 20.365854 | 25.853659 | 20112012.0 | 73.400000 | 663.000000 | 232.00000 | 168.000000 | 145.000000 | 118.000000 | 50.000000 | 7.500000 | 125.000000 | 18.900000 | 42.000000 | 62.000000 | 34.000000 | 5.100000 | 474.000000 | 71.500000 | 139.000000 | 21.000000 | 15.000000 | 2.300000 | 291.000000 | 43.900000 | 372.000000 | 56.100000 | 170.857143 | 52.700000 | 27.557143 | 52.071429 | 2.028571 | 4.457143 | 25.514286 | 47.614286 | 25.142857 | 47.928571 | 24.985714 | 13.171429 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11201.00000 | 571.00000 | Traditional | Spanish | Biology, English Language and Composition, Eng... | Biology, Calculus AB | No courses | 800.000000 | 300.000000 | 2.000000 | 347 Baltic Street\nBrooklyn, NY 11201\n(40.684... | 6.000000 | 33.000000 | 40.684579 | -73.991093 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 65.000000 | 67.000000 | 44.000000 | 413.000000 | 32.000000 | 280.000000 | 8.000000 | 7.500000 | 7.400000 | 7.800000 | 6.000000 | 4.300000 | 5.500000 | 6.400000 | 5.600000 | 5.700000 | 5.700000 | 6.700000 | 6.500000 | 5.800000 | 6.200000 | 7.000000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
285 | 15K520 | PACIFIC HIGH SCHOOL | 9.0 | 352.0 | 341.0 | 300.0 | 993.0 | 0 | 0.0 | 0.0 | 0.0 | 68.153846 | 3.307692 | 19.938462 | 15.538462 | 24.000000 | 20112012.0 | 58.000000 | 100.000000 | 199.09611 | 4.000000 | 11.000000 | 85.000000 | 0.000000 | 0.000000 | 8.000000 | 8.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 82.000000 | 82.000000 | 18.000000 | 18.000000 | 0.000000 | 0.000000 | 61.000000 | 61.000000 | 39.000000 | 39.000000 | 94.142857 | 9.728571 | 3.485714 | 35.157143 | 0.000000 | 0.000000 | 3.485714 | 35.157143 | 6.228571 | 64.842857 | 77.800000 | 10.857143 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.675972 | -73.989255 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 15.000000 | 10.000000 | 516.257511 | 2.000000 | 16.000000 | 8.300000 | 7.900000 | 7.200000 | 8.500000 | 8.500000 | 5.700000 | 9.000000 | 9.000000 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 8.300000 | 6.700000 | 7.900000 | 8.600000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
286 | 15K529 | WEST BROOKLYN COMMUNITY HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 68.300000 | 4.100000 | 16.170000 | 12.900000 | 19.400000 | 20112012.0 | 71.200000 | 213.000000 | 199.09611 | 171.000000 | 30.000000 | 12.000000 | 5.000000 | 2.300000 | 16.000000 | 7.500000 | 4.000000 | 0.000000 | 19.000000 | 8.900000 | 20.000000 | 9.400000 | 138.000000 | 64.800000 | 36.000000 | 16.900000 | 125.000000 | 58.700000 | 88.000000 | 41.300000 | 70.285714 | 10.916667 | 6.566667 | 58.000000 | 0.000000 | 0.000000 | 6.566667 | 58.000000 | 4.333333 | 42.000000 | 79.366667 | 8.733333 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.675972 | -73.989255 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 100.000000 | 73.000000 | 171.000000 | 19.000000 | 133.000000 | 9.300000 | 8.700000 | 8.200000 | 8.800000 | 7.900000 | 8.300000 | 8.100000 | 8.300000 | 8.300000 | 7.600000 | 8.000000 | 8.400000 | 8.500000 | 8.200000 | 8.100000 | 8.500000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
287 | 15K530 | METROPOLITAN CORPORATE ACADEMY HIGH SCHOOL | 28.0 | 368.0 | 365.0 | 368.0 | 1101.0 | 0 | 14.0 | 14.0 | 0.0 | 55.857143 | 2.642857 | 20.867857 | 17.714286 | 24.142857 | 20112012.0 | 68.200000 | 186.000000 | 22.00000 | 48.000000 | 36.000000 | 80.000000 | 2.000000 | 1.100000 | 32.000000 | 17.200000 | 7.000000 | 16.000000 | 1.000000 | 0.500000 | 150.000000 | 80.600000 | 31.000000 | 16.700000 | 0.000000 | 0.000000 | 93.000000 | 50.000000 | 93.000000 | 50.000000 | 81.285714 | 51.757143 | 15.771429 | 32.557143 | 0.557143 | 1.171429 | 15.214286 | 31.385714 | 36.000000 | 67.442857 | 35.714286 | 9.814286 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.675972 | -73.989255 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 94.000000 | 33.000000 | 184.000000 | 16.000000 | 89.000000 | 8.300000 | 7.400000 | 7.300000 | 7.600000 | 7.200000 | 6.900000 | 6.800000 | 7.700000 | 6.800000 | 6.100000 | 6.500000 | 7.200000 | 7.500000 | 6.800000 | 6.900000 | 7.500000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
288 | 15K656 | BROOKLYN HIGH SCHOOL OF THE ARTS | 141.0 | 426.0 | 421.0 | 411.0 | 1258.0 | 0 | 0.0 | 0.0 | 0.0 | 200.176471 | 7.529412 | 25.788235 | 18.352941 | 30.588235 | 20112012.0 | 59.300000 | 678.000000 | 157.00000 | 220.000000 | 149.000000 | 152.000000 | 1.000000 | 0.100000 | 49.000000 | 7.200000 | 0.000000 | 14.000000 | 12.000000 | 1.800000 | 519.000000 | 76.500000 | 129.000000 | 19.000000 | 15.000000 | 2.200000 | 230.000000 | 33.900000 | 448.000000 | 66.100000 | 137.428571 | 71.857143 | 43.471429 | 59.728571 | 5.328571 | 7.414286 | 38.142857 | 52.328571 | 28.542857 | 40.457143 | 25.500000 | 1.900000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11217.00000 | 815.00000 | Traditional | Chinese (Mandarin), Spanish | Calculus AB, Chemistry, English Literature and... | Calculus AB, Chemistry | Spanish | 815.000000 | 300.000000 | 5.000000 | 345 Dean Street\nBrooklyn, NY 11217\n(40.68365... | 2.000000 | 33.000000 | 40.683654 | -73.980473 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 86.000000 | 64.000000 | 25.000000 | 558.000000 | 25.000000 | 157.000000 | 8.300000 | 7.400000 | 7.400000 | 7.500000 | 7.200000 | 6.400000 | 6.900000 | 7.100000 | 6.600000 | 5.800000 | 6.600000 | 7.500000 | 7.300000 | 6.500000 | 6.900000 | 7.400000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
289 | 15K667 | SUNSET PARK HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 246.500000 | 9.111111 | 26.783333 | 23.833333 | 30.277778 | 20112012.0 | 79.900000 | 988.000000 | 340.00000 | 325.000000 | 323.000000 | 147.334928 | 142.000000 | 14.400000 | 220.000000 | 22.300000 | 86.000000 | 28.000000 | 46.000000 | 4.700000 | 77.000000 | 7.800000 | 798.000000 | 80.800000 | 66.000000 | 6.700000 | 501.000000 | 50.700000 | 487.000000 | 49.300000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11232.00000 | 1309.00000 | Traditional | Spanish | Spanish Language and Culture | No courses | No courses | 845.000000 | 330.000000 | 1.000000 | 153 35Th Street\nBrooklyn, NY 11232\n(40.65595... | 7.000000 | 38.000000 | 40.655953 | -74.005497 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 98.000000 | 47.000000 | 629.000000 | 51.000000 | 304.000000 | 8.300000 | 7.900000 | 7.900000 | 8.100000 | 7.000000 | 7.000000 | 7.800000 | 8.400000 | 6.400000 | 6.400000 | 6.900000 | 7.300000 | 7.200000 | 7.100000 | 7.500000 | 7.900000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
290 | 15K698 | SOUTH BROOKLYN COMMUNITY HIGH SCHOOL | 8.0 | 430.0 | 416.0 | 425.0 | 1271.0 | 0 | 0.0 | 0.0 | 0.0 | 48.300000 | 2.700000 | 19.110000 | 16.500000 | 22.300000 | 20112012.0 | 74.000000 | 149.000000 | 49.00000 | 56.000000 | 32.000000 | 12.000000 | 3.000000 | 2.000000 | 9.000000 | 6.000000 | 7.000000 | 2.000000 | 1.000000 | 0.700000 | 32.000000 | 21.500000 | 108.000000 | 72.500000 | 6.000000 | 4.000000 | 67.000000 | 45.000000 | 82.000000 | 55.000000 | 62.857143 | 13.328571 | 3.385714 | 25.757143 | 0.000000 | 0.000000 | 3.385714 | 25.757143 | 9.971429 | 74.242857 | 71.271429 | 13.885714 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.675972 | -73.989255 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 92.000000 | 45.000000 | 118.000000 | 11.000000 | 60.000000 | 8.900000 | 8.100000 | 7.400000 | 8.400000 | 6.900000 | 7.400000 | 7.400000 | 7.800000 | 7.800000 | 6.900000 | 7.300000 | 8.100000 | 7.900000 | 7.500000 | 7.400000 | 8.100000 | 15 | DISTRICT 15 | 91.27 | 26786 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
291 | 16K393 | FREDERICK DOUGLASS ACADEMY IV SECONDARY SCHOOL | 20.0 | 355.0 | 355.0 | 358.0 | 1068.0 | 0 | 0.0 | 0.0 | 0.0 | 65.304348 | 2.913043 | 23.000000 | 18.217391 | 27.086957 | 20112012.0 | 71.000000 | 439.000000 | 85.00000 | 55.000000 | 69.000000 | 57.000000 | 6.000000 | 1.400000 | 75.000000 | 17.100000 | 41.000000 | 7.000000 | 4.000000 | 0.900000 | 367.000000 | 83.600000 | 62.000000 | 14.100000 | 2.000000 | 0.500000 | 214.000000 | 48.700000 | 225.000000 | 51.300000 | 53.750000 | 82.700000 | 68.200000 | 82.400000 | 4.666667 | 5.666667 | 63.533333 | 76.800000 | 14.500000 | 17.600000 | 13.600000 | 1.866667 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11221.00000 | 155.00000 | Traditional | French, Spanish | English Language and Composition, United State... | French Language and Culture | No courses | 800.000000 | 220.000000 | 1.000000 | 1014 Lafayette Avenue\nBrooklyn, NY 11221\n(40... | 3.000000 | 36.000000 | 40.692134 | -73.931503 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 81.000000 | 92.000000 | 29.000000 | 372.000000 | 36.000000 | 124.000000 | 7.900000 | 7.200000 | 7.200000 | 7.500000 | 6.200000 | 6.000000 | 6.300000 | 6.800000 | 6.100000 | 5.500000 | 6.600000 | 7.300000 | 6.700000 | 6.200000 | 6.700000 | 7.200000 | 16 | DISTRICT 16 | 85.55 | 10196 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
292 | 16K455 | BOYS AND GIRLS HIGH SCHOOL | 131.0 | 365.0 | 370.0 | 362.0 | 1097.0 | 0 | 22.0 | 32.0 | 0.0 | 235.552632 | 9.763158 | 21.800000 | 14.605263 | 27.815789 | 20112012.0 | 61.700000 | 1631.000000 | 234.00000 | 343.000000 | 498.000000 | 556.000000 | 40.000000 | 2.500000 | 335.000000 | 20.500000 | 59.000000 | 167.000000 | 8.000000 | 0.500000 | 1468.000000 | 90.000000 | 127.000000 | 7.800000 | 12.000000 | 0.700000 | 1006.000000 | 61.700000 | 625.000000 | 38.300000 | 733.285714 | 41.585714 | 26.000000 | 62.728571 | 2.014286 | 4.785714 | 23.985714 | 57.957143 | 15.585714 | 37.271429 | 35.271429 | 15.614286 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11213.00000 | 940.00000 | Traditional | French, Spanish | English Literature and Composition, United Sta... | No courses | No courses | 815.000000 | 315.000000 | 3.000000 | 1700 Fulton Street\nBrooklyn, NY 11213\n(40.67... | 3.000000 | 36.000000 | 40.679433 | -73.932432 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 61.000000 | 76.000000 | 16.000000 | 1146.000000 | 70.000000 | 282.000000 | 7.100000 | 7.300000 | 7.400000 | 7.100000 | 5.900000 | 5.800000 | 6.500000 | 6.700000 | 6.100000 | 6.000000 | 6.700000 | 7.200000 | 6.400000 | 6.400000 | 6.800000 | 7.000000 | 16 | DISTRICT 16 | 85.55 | 10196 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
293 | 16K498 | BROOKLYN HIGH SCHOOL FOR LAW AND TECHNOLOGY | 46.0 | 362.0 | 372.0 | 358.0 | 1092.0 | 0 | 49.0 | 80.0 | 0.0 | 83.280000 | 3.400000 | 21.744000 | 18.960000 | 23.560000 | 20112012.0 | 74.500000 | 405.000000 | 123.00000 | 107.000000 | 87.000000 | 88.000000 | 19.000000 | 4.700000 | 84.000000 | 20.700000 | 6.000000 | 44.000000 | 4.000000 | 1.000000 | 295.000000 | 72.800000 | 101.000000 | 24.900000 | 0.000000 | 0.000000 | 209.000000 | 51.600000 | 196.000000 | 48.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11221.00000 | 518.00000 | Traditional | Spanish | Calculus AB, Chemistry, English Language and C... | Biology, Calculus AB, Chemistry, English Liter... | Haitian-Creole, Latin, Spanish | 800.000000 | 300.000000 | 2.000000 | 1396 Broadway\nBrooklyn, NY 11221\n(40.6889255... | 3.000000 | 41.000000 | 40.688926 | -73.921084 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 56.000000 | 33.000000 | 16.000000 | 215.000000 | 8.000000 | 60.000000 | 8.500000 | 7.300000 | 7.200000 | 7.500000 | 7.000000 | 7.300000 | 7.500000 | 8.000000 | 6.400000 | 5.800000 | 6.200000 | 7.100000 | 7.300000 | 6.800000 | 7.000000 | 7.500000 | 16 | DISTRICT 16 | 85.55 | 10196 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
294 | 16K594 | GOTHAM PROFESSIONAL ARTS ACADEMY | 36.0 | 370.0 | 372.0 | 351.0 | 1093.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 58.600000 | 294.000000 | 98.00000 | 78.000000 | 65.000000 | 53.000000 | 7.000000 | 2.400000 | 51.000000 | 17.300000 | 23.000000 | 10.000000 | 3.000000 | 1.000000 | 231.000000 | 78.600000 | 57.000000 | 19.400000 | 2.000000 | 0.700000 | 127.000000 | 43.200000 | 167.000000 | 56.800000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11233.00000 | 242.00000 | Consortium School | Spanish | No courses | No courses | No courses | 845.000000 | 315.000000 | 1.000000 | 265 Ralph Avenue\nBrooklyn, NY 11233\n(40.6804... | 3.000000 | 41.000000 | 40.680455 | -73.922196 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 86.000000 | 4.000000 | 208.000000 | 19.000000 | 10.000000 | 8.600000 | 9.000000 | 8.200000 | 9.000000 | 4.900000 | 5.000000 | 5.600000 | 6.300000 | 5.800000 | 5.900000 | 6.600000 | 7.500000 | 6.000000 | 6.200000 | 6.500000 | 7.300000 | 16 | DISTRICT 16 | 85.55 | 10196 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
295 | 16K688 | THE BROOKLYN ACADEMY OF GLOBAL FINANCE | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 57.200000 | 2.400000 | 24.920000 | 22.200000 | 27.533333 | 20112012.0 | 57.400000 | 159.000000 | 54.00000 | 61.000000 | 44.000000 | 147.334928 | 10.000000 | 6.300000 | 33.000000 | 20.800000 | 6.000000 | 19.000000 | 3.000000 | 1.900000 | 118.000000 | 74.200000 | 33.000000 | 20.800000 | 4.000000 | 2.500000 | 82.000000 | 51.600000 | 77.000000 | 48.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11221.00000 | 148.00000 | Traditional | Spanish | English Literature and Composition, Environmen... | No courses | No courses | 815.000000 | 312.000000 | 1.000000 | 125 Stuyvesant Avenue\nBrooklyn, NY 11221\n(40... | 3.000000 | 36.000000 | 40.691538 | -73.933726 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 100.000000 | 17.000000 | 99.000000 | 12.000000 | 22.000000 | 6.000000 | 5.800000 | 5.700000 | 6.200000 | 3.900000 | 1.900000 | 3.800000 | 3.600000 | 4.900000 | 5.800000 | 5.400000 | 6.800000 | 4.900000 | 4.500000 | 5.000000 | 5.600000 | 16 | DISTRICT 16 | 85.55 | 10196 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
296 | 17K382 | ACADEMY FOR COLLEGE PREPARATION AND CAREER EXP... | 59.0 | 396.0 | 374.0 | 369.0 | 1139.0 | 0 | 64.0 | 82.0 | 7.0 | 80.238095 | 3.238095 | 25.295238 | 22.380952 | 28.619048 | 20112012.0 | 57.000000 | 565.000000 | 135.00000 | 116.000000 | 86.000000 | 49.000000 | 28.000000 | 5.000000 | 61.000000 | 10.800000 | 43.000000 | 9.000000 | 1.000000 | 0.200000 | 520.000000 | 92.000000 | 38.000000 | 6.700000 | 6.000000 | 1.100000 | 304.000000 | 53.800000 | 261.000000 | 46.200000 | 46.333333 | 84.800000 | 73.900000 | 87.150000 | 17.400000 | 20.500000 | 56.500000 | 66.650000 | 10.850000 | 12.850000 | 10.850000 | 4.300000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11226.00000 | 532.00000 | Traditional | French, Spanish | No courses | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 911 Flatbush Avenue\nBrooklyn, NY 11226\n(40.6... | 14.000000 | 40.000000 | 40.649440 | -73.958431 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 67.000000 | 69.000000 | 10.000000 | 350.000000 | 25.000000 | 51.000000 | 7.000000 | 6.600000 | 6.700000 | 6.900000 | 6.600000 | 6.500000 | 6.800000 | 7.500000 | 5.500000 | 5.500000 | 6.000000 | 6.900000 | 6.400000 | 6.200000 | 6.500000 | 7.100000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
297 | 17K408 | ACADEMY OF HOSPITALITY AND TOURISM | 57.0 | 352.0 | 342.0 | 351.0 | 1045.0 | 0 | 0.0 | 0.0 | 0.0 | 87.058824 | 3.529412 | 25.058824 | 20.058824 | 29.529412 | 20112012.0 | 65.500000 | 319.000000 | 101.00000 | 113.000000 | 51.000000 | 54.000000 | 41.000000 | 12.900000 | 49.000000 | 15.400000 | 30.000000 | 4.000000 | 5.000000 | 1.600000 | 269.000000 | 84.300000 | 41.000000 | 12.900000 | 3.000000 | 0.900000 | 159.000000 | 49.800000 | 160.000000 | 50.200000 | 55.000000 | 73.450000 | 53.100000 | 72.400000 | 1.200000 | 1.700000 | 51.850000 | 70.750000 | 20.400000 | 27.600000 | 21.600000 | 3.700000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11226.00000 | 303.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 911 Flatbush Avenue\nBrooklyn, NY 11226\n(40.6... | 14.000000 | 40.000000 | 40.649440 | -73.958431 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 95.000000 | 78.000000 | 210.000000 | 21.000000 | 220.000000 | 7.000000 | 7.600000 | 7.600000 | 7.800000 | 7.400000 | 8.400000 | 8.700000 | 8.900000 | 5.500000 | 5.800000 | 6.400000 | 7.300000 | 6.600000 | 7.300000 | 7.600000 | 8.000000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
298 | 17K467 | ERASMUS YABC | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.661319 | -73.954519 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 100.000000 | 76.000000 | 152.000000 | 23.000000 | 138.000000 | 8.900000 | 7.400000 | 7.500000 | 7.500000 | 7.800000 | 7.500000 | 7.800000 | 8.000000 | 7.500000 | 5.900000 | 7.000000 | 7.600000 | 8.100000 | 6.900000 | 7.400000 | 7.700000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
299 | 17K489 | W.E.B. DUBOIS ACADEMIC HIGH SCHOOL | 7.0 | 394.0 | 364.0 | 334.0 | 1092.0 | 0 | 0.0 | 0.0 | 0.0 | 77.900000 | 3.500000 | 22.330000 | 16.600000 | 26.500000 | 20112012.0 | 70.300000 | 199.000000 | 11.00000 | 82.000000 | 51.000000 | 55.000000 | 1.000000 | 0.500000 | 22.000000 | 11.100000 | 0.000000 | 0.000000 | 2.000000 | 1.000000 | 186.000000 | 93.500000 | 8.000000 | 4.000000 | 1.000000 | 0.500000 | 91.000000 | 45.700000 | 108.000000 | 54.300000 | 109.428571 | 15.600000 | 4.500000 | 26.000000 | 0.000000 | 0.000000 | 4.500000 | 26.000000 | 11.085714 | 74.014286 | 62.700000 | 19.214286 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.661319 | -73.954519 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 89.000000 | 22.000000 | 126.000000 | 16.000000 | 48.000000 | 8.700000 | 7.900000 | 8.000000 | 8.100000 | 6.300000 | 6.900000 | 6.900000 | 7.300000 | 6.700000 | 5.900000 | 6.900000 | 7.500000 | 7.200000 | 6.900000 | 7.300000 | 7.600000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
300 | 17K524 | INTERNATIONAL HIGH SCHOOL AT PROSPECT HEIGHTS | 71.0 | 287.0 | 335.0 | 291.0 | 913.0 | 0 | 0.0 | 0.0 | 0.0 | 154.846154 | 6.615385 | 23.792308 | 20.461538 | 26.000000 | 20112012.0 | 80.900000 | 401.000000 | 97.00000 | 97.000000 | 96.000000 | 111.000000 | 365.000000 | 91.000000 | 4.000000 | 1.000000 | 0.000000 | 0.000000 | 114.000000 | 28.400000 | 117.000000 | 29.200000 | 112.000000 | 27.900000 | 57.000000 | 14.200000 | 237.000000 | 59.100000 | 164.000000 | 40.900000 | 61.000000 | 48.400000 | 32.575000 | 70.750000 | 0.000000 | 0.000000 | 32.575000 | 70.750000 | 15.850000 | 29.250000 | 40.450000 | 7.825000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11225.00000 | 421.00000 | International School | French | No courses | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67... | 9.000000 | 35.000000 | 40.670299 | -73.961648 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 82.000000 | 100.000000 | 34.000000 | 322.000000 | 32.000000 | 124.000000 | 8.600000 | 7.900000 | 7.700000 | 8.100000 | 7.700000 | 6.200000 | 7.400000 | 8.000000 | 7.400000 | 6.800000 | 7.300000 | 7.700000 | 7.900000 | 7.000000 | 7.500000 | 7.900000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
301 | 17K528 | THE HIGH SCHOOL FOR GLOBAL CITIZENSHIP | 46.0 | 403.0 | 385.0 | 388.0 | 1176.0 | 0 | 20.0 | 34.0 | 0.0 | 80.259259 | 3.185185 | 22.148148 | 18.296296 | 24.814815 | 20112012.0 | 68.700000 | 343.000000 | 79.00000 | 94.000000 | 87.000000 | 83.000000 | 18.000000 | 5.200000 | 46.000000 | 13.400000 | 19.000000 | 20.000000 | 5.000000 | 1.500000 | 306.000000 | 89.200000 | 25.000000 | 7.300000 | 5.000000 | 1.500000 | 172.000000 | 50.100000 | 171.000000 | 49.900000 | 68.666667 | 61.400000 | 47.275000 | 77.075000 | 6.200000 | 10.050000 | 41.050000 | 67.025000 | 14.150000 | 22.925000 | 23.675000 | 11.725000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11225.00000 | 256.00000 | Traditional | No Language Classes | No courses | Art History, Biology, Calculus AB, Chemistry, ... | Chinese (Mandarin), French, German, Italian, J... | 800.000000 | 300.000000 | 2.000000 | 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67... | 9.000000 | 35.000000 | 40.670299 | -73.961648 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 36.000000 | 48.000000 | 28.000000 | 129.000000 | 10.000000 | 99.000000 | 7.400000 | 7.500000 | 7.000000 | 7.300000 | 5.200000 | 4.300000 | 5.400000 | 6.100000 | 6.100000 | 6.000000 | 6.100000 | 6.800000 | 6.200000 | 5.900000 | 6.100000 | 6.800000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
302 | 17K531 | SCHOOL FOR HUMAN RIGHTS, THE | 35.0 | 348.0 | 381.0 | 359.0 | 1088.0 | 0 | 0.0 | 0.0 | 0.0 | 58.916667 | 2.000000 | 29.479167 | 28.041667 | 30.791667 | 20112012.0 | 73.200000 | 386.000000 | 70.00000 | 63.000000 | 57.000000 | 61.000000 | 24.000000 | 6.200000 | 58.000000 | 15.000000 | 31.000000 | 9.000000 | 3.000000 | 0.800000 | 343.000000 | 88.900000 | 32.000000 | 8.300000 | 6.000000 | 1.600000 | 199.000000 | 51.600000 | 187.000000 | 48.400000 | 42.000000 | 73.450000 | 34.100000 | 45.550000 | 5.000000 | 5.925000 | 29.100000 | 39.575000 | 39.350000 | 54.450000 | 17.300000 | 8.100000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11203.00000 | 416.00000 | Traditional | Spanish | Calculus AB | Biology | No courses | 800.000000 | 300.000000 | 1.000000 | 600 Kingston Avenue\nBrooklyn, NY 11203\n(40.6... | 9.000000 | 40.000000 | 40.659517 | -73.942546 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 96.000000 | 35.000000 | 351.000000 | 24.000000 | 124.000000 | 8.600000 | 8.200000 | 8.200000 | 8.300000 | 9.000000 | 8.500000 | 9.100000 | 9.200000 | 6.800000 | 6.500000 | 7.200000 | 7.800000 | 8.100000 | 7.700000 | 8.100000 | 8.400000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
303 | 17K533 | SCHOOL FOR DEMOCRACY AND LEADERSHIP | 38.0 | 377.0 | 404.0 | 372.0 | 1153.0 | 0 | 0.0 | 0.0 | 0.0 | 52.400000 | 2.280000 | 24.096000 | 21.920000 | 26.040000 | 20112012.0 | 68.300000 | 406.000000 | 70.00000 | 81.000000 | 76.000000 | 86.000000 | 15.000000 | 3.700000 | 59.000000 | 14.500000 | 33.000000 | 20.000000 | 2.000000 | 0.500000 | 363.000000 | 89.400000 | 34.000000 | 8.400000 | 6.000000 | 1.500000 | 211.000000 | 52.000000 | 195.000000 | 48.000000 | 55.000000 | 52.550000 | 30.800000 | 58.933333 | 0.000000 | 0.000000 | 30.800000 | 58.933333 | 21.725000 | 41.066667 | 37.175000 | 6.450000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11203.00000 | 330.00000 | Traditional | American Sign Language, Spanish | No courses | No courses | No courses | 800.000000 | 250.000000 | 2.000000 | 600 Kingston Avenue\nBrooklyn, NY 11203\n(40.6... | 9.000000 | 40.000000 | 40.659517 | -73.942546 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 92.000000 | 25.000000 | 340.000000 | 34.000000 | 93.000000 | 7.500000 | 7.800000 | 7.400000 | 7.400000 | 5.000000 | 5.700000 | 5.600000 | 5.900000 | 5.600000 | 5.900000 | 6.300000 | 7.200000 | 6.000000 | 6.500000 | 6.400000 | 6.800000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
304 | 17K537 | HIGH SCHOOL FOR YOUTH AND COMMUNITY DEVELOPMEN... | 73.0 | 338.0 | 349.0 | 340.0 | 1027.0 | 0 | 21.0 | 37.0 | 0.0 | 103.136364 | 4.318182 | 24.281818 | 19.409091 | 28.136364 | 20112012.0 | 60.900000 | 385.000000 | 114.00000 | 105.000000 | 83.000000 | 83.000000 | 35.000000 | 9.100000 | 61.000000 | 15.800000 | 46.000000 | 8.000000 | 4.000000 | 1.000000 | 336.000000 | 87.300000 | 35.000000 | 9.100000 | 4.000000 | 1.000000 | 237.000000 | 61.600000 | 148.000000 | 38.400000 | 72.000000 | 54.000000 | 33.375000 | 60.475000 | 4.925000 | 8.575000 | 28.450000 | 51.875000 | 20.625000 | 39.525000 | 28.575000 | 11.675000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11226.00000 | 347.00000 | Traditional | Spanish | English Literature and Composition, World History | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 911 Flatbush Avenue\nBrooklyn, NY 11226\n(40.6... | 14.000000 | 40.000000 | 40.649440 | -73.958431 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 87.000000 | 51.000000 | 326.000000 | 20.000000 | 181.000000 | 7.100000 | 7.500000 | 7.300000 | 7.800000 | 6.300000 | 6.500000 | 7.500000 | 8.100000 | 5.500000 | 5.700000 | 6.000000 | 6.800000 | 6.300000 | 6.600000 | 6.900000 | 7.600000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
305 | 17K539 | HIGH SCHOOL FOR SERVICE & LEARNING AT ERASMUS | 61.0 | 362.0 | 375.0 | 368.0 | 1105.0 | 0 | 0.0 | 0.0 | 0.0 | 73.571429 | 2.714286 | 27.039286 | 23.071429 | 30.285714 | 20112012.0 | 65.300000 | 422.000000 | 112.00000 | 125.000000 | 93.000000 | 92.000000 | 37.000000 | 8.800000 | 81.000000 | 19.200000 | 51.000000 | 12.000000 | 9.000000 | 2.100000 | 367.000000 | 87.000000 | 38.000000 | 9.000000 | 7.000000 | 1.700000 | 267.000000 | 63.300000 | 155.000000 | 36.700000 | 74.833333 | 76.400000 | 56.325000 | 73.525000 | 9.075000 | 11.675000 | 47.225000 | 61.775000 | 20.100000 | 26.475000 | 8.850000 | 12.475000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11226.00000 | 434.00000 | Traditional | Spanish | English Literature and Composition, United Sta... | Spanish Language and Culture | No courses | 800.000000 | 340.000000 | 1.000000 | 911 Flatbush Avenue\nBrooklyn, NY 11226\n(40.6... | 14.000000 | 40.000000 | 40.649440 | -73.958431 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 96.000000 | 44.000000 | 348.000000 | 24.000000 | 164.000000 | 7.600000 | 7.700000 | 7.400000 | 8.000000 | 7.600000 | 8.000000 | 8.200000 | 8.700000 | 5.500000 | 5.600000 | 6.200000 | 7.100000 | 6.900000 | 7.100000 | 7.300000 | 7.900000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
306 | 17K543 | SCIENCE, TECHNOLOGY AND RESEARCH EARLY COLLEGE... | 69.0 | 457.0 | 462.0 | 441.0 | 1360.0 | 0 | 0.0 | 0.0 | 0.0 | 99.357143 | 4.357143 | 23.092857 | 17.642857 | 28.000000 | 20112012.0 | 63.300000 | 521.000000 | 76.00000 | 84.000000 | 81.000000 | 72.000000 | 0.000000 | 0.000000 | 12.000000 | 2.300000 | 6.000000 | 0.000000 | 16.000000 | 3.100000 | 437.000000 | 83.900000 | 49.000000 | 9.400000 | 7.000000 | 1.300000 | 276.000000 | 53.000000 | 245.000000 | 47.000000 | 60.142857 | 96.300000 | 85.180000 | 88.280000 | 10.080000 | 10.660000 | 75.080000 | 77.620000 | 11.140000 | 11.720000 | 3.700000 | 0.000000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11226.00000 | 532.00000 | Traditional | French, Spanish | English Language and Composition, English Lite... | No courses | No courses | 800.000000 | 245.000000 | 1.000000 | 911 Flatbush Avenue\nBrooklyn, NY 11226\n(40.6... | 14.000000 | 40.000000 | 40.649440 | -73.958431 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 95.000000 | 66.000000 | 92.000000 | 474.000000 | 19.000000 | 444.000000 | 8.900000 | 8.500000 | 8.500000 | 8.700000 | 6.500000 | 5.200000 | 6.100000 | 7.000000 | 6.600000 | 5.900000 | 6.700000 | 7.400000 | 7.400000 | 6.500000 | 7.100000 | 7.700000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
307 | 17K544 | INTERNATIONAL ARTS BUSINESS SCHOOL | 54.0 | 386.0 | 391.0 | 369.0 | 1146.0 | 0 | 0.0 | 0.0 | 0.0 | 84.115385 | 3.576923 | 22.711538 | 18.307692 | 26.423077 | 20112012.0 | 69.300000 | 390.000000 | 118.00000 | 124.000000 | 83.000000 | 65.000000 | 31.000000 | 7.900000 | 68.000000 | 17.400000 | 24.000000 | 24.000000 | 3.000000 | 0.800000 | 339.000000 | 86.900000 | 39.000000 | 10.000000 | 5.000000 | 1.300000 | 187.000000 | 47.900000 | 203.000000 | 52.100000 | 79.666667 | 61.160000 | 37.900000 | 62.360000 | 2.980000 | 5.000000 | 34.940000 | 57.360000 | 23.240000 | 37.640000 | 28.940000 | 8.020000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.661319 | -73.954519 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 59.000000 | 11.000000 | 355.000000 | 20.000000 | 44.000000 | 7.100000 | 7.000000 | 7.000000 | 7.100000 | 5.100000 | 5.300000 | 5.100000 | 5.500000 | 5.400000 | 5.500000 | 5.800000 | 6.600000 | 5.900000 | 5.900000 | 6.000000 | 6.400000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
308 | 17K546 | HIGH SCHOOL FOR PUBLIC SERVICE: HEROES OF TOMO... | 79.0 | 418.0 | 441.0 | 414.0 | 1273.0 | 0 | 106.0 | 130.0 | 13.0 | 104.111111 | 4.500000 | 23.116667 | 19.000000 | 26.111111 | 20112012.0 | 70.300000 | 417.000000 | 114.00000 | 122.000000 | 98.000000 | 83.000000 | 2.000000 | 0.500000 | 17.000000 | 4.100000 | 2.000000 | 1.000000 | 15.000000 | 3.600000 | 344.000000 | 82.500000 | 51.000000 | 12.200000 | 3.000000 | 0.700000 | 104.000000 | 24.900000 | 313.000000 | 75.100000 | 87.200000 | 94.980000 | 79.820000 | 83.860000 | 9.460000 | 9.800000 | 70.360000 | 74.060000 | 15.180000 | 16.140000 | 3.240000 | 1.600000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11203.00000 | 439.00000 | Traditional | French, Spanish | Biology, Calculus AB, Chemistry, English Langu... | No courses | No courses | 830.000000 | 315.000000 | 3.000000 | 600 Kingston Avenue\nBrooklyn, NY 11203\n(40.6... | 9.000000 | 40.000000 | 40.659517 | -73.942546 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 83.000000 | 43.000000 | 29.000000 | 329.000000 | 10.000000 | 112.000000 | 8.700000 | 8.000000 | 7.900000 | 8.600000 | 7.900000 | 6.500000 | 7.200000 | 7.700000 | 6.400000 | 6.000000 | 6.500000 | 7.600000 | 7.700000 | 6.800000 | 7.200000 | 8.000000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
309 | 17K547 | BROOKLYN ACADEMY OF SCIENCE AND THE ENVIRONMENT | 63.0 | 388.0 | 382.0 | 373.0 | 1143.0 | 0 | 49.0 | 59.0 | 0.0 | 87.625000 | 3.958333 | 21.654167 | 17.833333 | 24.541667 | 20112012.0 | 80.900000 | 471.000000 | 166.00000 | 145.000000 | 75.000000 | 85.000000 | 32.000000 | 6.800000 | 56.000000 | 11.900000 | 33.000000 | 12.000000 | 19.000000 | 4.000000 | 375.000000 | 79.600000 | 67.000000 | 14.200000 | 7.000000 | 1.500000 | 256.000000 | 54.400000 | 215.000000 | 45.600000 | 91.000000 | 66.780000 | 46.320000 | 69.280000 | 7.500000 | 11.060000 | 38.820000 | 58.200000 | 20.460000 | 30.740000 | 29.040000 | 3.640000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11225.00000 | 477.00000 | Traditional | French, Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 830.000000 | 415.000000 | 1.000000 | 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67... | 9.000000 | 35.000000 | 40.670299 | -73.961648 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 72.000000 | 94.000000 | 20.000000 | 308.000000 | 30.000000 | 84.000000 | 7.800000 | 7.700000 | 7.600000 | 7.700000 | 5.800000 | 5.600000 | 6.500000 | 6.600000 | 5.700000 | 5.900000 | 6.100000 | 7.000000 | 6.400000 | 6.400000 | 6.700000 | 7.100000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
310 | 17K548 | BROOKLYN SCHOOL FOR MUSIC & THEATRE | 48.0 | 385.0 | 393.0 | 373.0 | 1151.0 | 0 | 37.0 | 41.0 | 9.0 | 56.107143 | 2.142857 | 27.050000 | 24.071429 | 29.464286 | 20112012.0 | 60.500000 | 412.000000 | 125.00000 | 120.000000 | 77.000000 | 90.000000 | 2.000000 | 0.500000 | 50.000000 | 12.100000 | 38.000000 | 3.000000 | 4.000000 | 1.000000 | 341.000000 | 82.800000 | 63.000000 | 15.300000 | 4.000000 | 1.000000 | 135.000000 | 32.800000 | 277.000000 | 67.200000 | 63.714286 | 80.020000 | 53.220000 | 66.360000 | 7.880000 | 9.660000 | 45.340000 | 56.700000 | 26.800000 | 33.660000 | 16.000000 | 2.440000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11225.00000 | 399.00000 | Traditional | Spanish | English Language and Composition, United State... | No courses | No courses | 810.000000 | 300.000000 | 1.000000 | 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67... | 9.000000 | 35.000000 | 40.670299 | -73.961648 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 89.000000 | 41.000000 | 305.000000 | 24.000000 | 153.000000 | 7.200000 | 7.100000 | 7.100000 | 7.400000 | 6.500000 | 6.300000 | 6.900000 | 7.100000 | 5.900000 | 6.100000 | 6.600000 | 7.400000 | 6.500000 | 6.500000 | 6.900000 | 7.300000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
311 | 17K568 | BROWNSVILLE ACADEMY HIGH SCHOOL | 16.0 | 372.0 | 356.0 | 335.0 | 1063.0 | 0 | 0.0 | 0.0 | 0.0 | 53.083333 | 2.916667 | 20.025000 | 16.333333 | 24.500000 | 20112012.0 | 71.700000 | 223.000000 | 199.09611 | 96.000000 | 69.000000 | 58.000000 | 7.000000 | 3.100000 | 19.000000 | 8.500000 | 5.000000 | 3.000000 | 3.000000 | 1.300000 | 188.000000 | 84.300000 | 22.000000 | 9.900000 | 3.000000 | 1.300000 | 84.000000 | 37.700000 | 139.000000 | 62.300000 | 76.428571 | 8.885714 | 3.914286 | 44.633333 | 0.000000 | 0.000000 | 3.914286 | 44.633333 | 4.971429 | 55.366667 | 79.542857 | 11.214286 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.661319 | -73.954519 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 94.000000 | 41.000000 | 96.000000 | 16.000000 | 61.000000 | 9.400000 | 8.800000 | 8.900000 | 9.100000 | 8.100000 | 8.100000 | 8.300000 | 8.700000 | 8.500000 | 7.500000 | 8.500000 | 8.900000 | 8.700000 | 8.200000 | 8.600000 | 8.900000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
312 | 17K590 | MEDGAR EVERS COLLEGE PREPARATORY SCHOOL | 165.0 | 476.0 | 481.0 | 479.0 | 1436.0 | 0 | 272.0 | 507.0 | 86.0 | 269.588235 | 9.882353 | 27.576471 | 18.117647 | 36.176471 | 20112012.0 | 59.100000 | 1104.000000 | 239.00000 | 243.000000 | 213.000000 | 171.000000 | 0.000000 | 0.000000 | 5.000000 | 0.500000 | 0.000000 | 0.000000 | 10.000000 | 0.900000 | 1056.000000 | 95.700000 | 31.000000 | 2.800000 | 0.000000 | 0.000000 | 461.000000 | 41.800000 | 643.000000 | 58.200000 | 177.285714 | 88.457143 | 80.300000 | 90.514286 | 26.928571 | 30.442857 | 53.342857 | 60.085714 | 8.157143 | 9.485714 | 7.757143 | 2.971429 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11225.00000 | 1248.00000 | Traditional | Chinese (Mandarin), French, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 715.000000 | 315.000000 | 2.000000 | 1186 Carroll Street\nBrooklyn, NY 11225\n(40.6... | 9.000000 | 35.000000 | 40.667162 | -73.950858 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 71.000000 | 20.000000 | 57.000000 | 723.000000 | 10.000000 | 562.000000 | 8.900000 | 8.100000 | 8.200000 | 8.500000 | 8.600000 | 8.800000 | 8.700000 | 9.000000 | 5.700000 | 5.300000 | 6.200000 | 7.300000 | 7.800000 | 7.400000 | 7.700000 | 8.300000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
313 | 17K600 | CLARA BARTON HIGH SCHOOL | 259.0 | 425.0 | 413.0 | 413.0 | 1251.0 | 0 | 135.0 | 211.0 | 63.0 | 246.700000 | 8.833333 | 27.983333 | 21.900000 | 32.433333 | 20112012.0 | 73.000000 | 1608.000000 | 490.00000 | 522.000000 | 273.000000 | 323.000000 | 134.000000 | 8.300000 | 205.000000 | 12.700000 | 51.000000 | 133.000000 | 29.000000 | 1.800000 | 1466.000000 | 91.200000 | 93.000000 | 5.800000 | 11.000000 | 0.700000 | 382.000000 | 23.800000 | 1226.000000 | 76.200000 | 491.714286 | 64.271429 | 41.914286 | 65.214286 | 7.257143 | 11.357143 | 34.657143 | 53.828571 | 22.328571 | 34.785714 | 21.885714 | 10.114286 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11225.00000 | 1525.00000 | CTE School | French, Haitian-Creole, Russian, Spanish | Biology, Calculus AB, Chemistry, English Langu... | No courses | No courses | 815.000000 | 330.000000 | 4.000000 | 901 Classon Avenue\nBrooklyn, NY 11225\n(40.67... | 9.000000 | 35.000000 | 40.670271 | -73.961655 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 1.0 | 88.000000 | 93.000000 | 33.000000 | 1455.000000 | 100.000000 | 527.000000 | 7.400000 | 6.800000 | 7.100000 | 7.100000 | 7.300000 | 5.900000 | 6.600000 | 7.200000 | 5.900000 | 5.400000 | 6.000000 | 6.900000 | 6.900000 | 6.000000 | 6.500000 | 7.100000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
314 | 17K625 | PAUL ROBESON HIGH SCHOOL | 53.0 | 365.0 | 363.0 | 355.0 | 1083.0 | 0 | 50.0 | 51.0 | 0.0 | 74.766667 | 2.966667 | 22.936667 | 19.966667 | 25.166667 | 20112012.0 | 77.900000 | 326.000000 | 36.00000 | 84.000000 | 72.000000 | 134.000000 | 11.000000 | 3.400000 | 83.000000 | 25.500000 | 33.000000 | 31.000000 | 3.000000 | 0.900000 | 284.000000 | 87.100000 | 31.000000 | 9.500000 | 5.000000 | 1.500000 | 179.000000 | 54.900000 | 147.000000 | 45.100000 | 287.142857 | 49.442857 | 21.114286 | 42.457143 | 3.100000 | 6.257143 | 18.014286 | 36.214286 | 28.300000 | 57.542857 | 37.328571 | 10.185714 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.661319 | -73.954519 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 52.000000 | 90.000000 | 16.000000 | 294.000000 | 36.000000 | 89.000000 | 8.000000 | 7.800000 | 7.700000 | 7.800000 | 5.600000 | 5.300000 | 5.900000 | 6.400000 | 6.400000 | 6.000000 | 6.700000 | 7.400000 | 6.700000 | 6.400000 | 6.800000 | 7.200000 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
315 | 17K751 | ACADEMY FOR HEALTH CAREERS | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 87.700000 | 138.000000 | 111.00000 | 27.000000 | 155.308756 | 147.334928 | 11.000000 | 8.000000 | 21.000000 | 15.200000 | 5.000000 | 12.000000 | 5.000000 | 3.600000 | 112.000000 | 81.200000 | 19.000000 | 13.800000 | 2.000000 | 1.400000 | 38.000000 | 27.500000 | 100.000000 | 72.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11213.00000 | 314.00000 | CTE School | French, Spanish | English Language and Composition, United State... | No courses | No courses | 830.000000 | 245.000000 | 1.000000 | 150 Albany Avenue\nBrooklyn, NY 11213\n(40.675... | 8.000000 | 36.000000 | 40.675402 | -73.938881 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 17 | DISTRICT 17 | 89.67 | 26551 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
316 | 18K563 | IT TAKES A VILLAGE ACADEMY | 56.0 | 313.0 | 320.0 | 330.0 | 963.0 | 0 | 0.0 | 0.0 | 0.0 | 76.269231 | 3.807692 | 19.646154 | 15.769231 | 24.653846 | 20112012.0 | 76.500000 | 382.000000 | 97.00000 | 122.000000 | 88.000000 | 75.000000 | 116.000000 | 30.400000 | 44.000000 | 11.500000 | 30.000000 | 3.000000 | 7.000000 | 1.800000 | 355.000000 | 92.900000 | 17.000000 | 4.500000 | 2.000000 | 0.500000 | 187.000000 | 49.000000 | 195.000000 | 51.000000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11203.00000 | 513.00000 | Traditional | Arabic, French, Haitian-Creole, Spanish | Calculus AB, Chemistry, English Language and C... | Computer Science A, Physics B | English, French, Haitian-Creole, Spanish | 815.000000 | 415.000000 | 1.000000 | 5800 Tilden Avenue\nBrooklyn, NY 11203\n(40.64... | 17.000000 | 45.000000 | 40.648664 | -73.921899 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 62.000000 | 328.000000 | 30.000000 | 212.000000 | 8.300000 | 8.100000 | 8.100000 | 8.100000 | 8.000000 | 7.700000 | 8.200000 | 8.800000 | 6.100000 | 5.800000 | 6.900000 | 7.400000 | 7.500000 | 7.200000 | 7.700000 | 8.100000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
317 | 18K566 | BROOKLYN GENERATION SCHOOL | 29.0 | 374.0 | 377.0 | 394.0 | 1145.0 | 0 | 0.0 | 0.0 | 0.0 | 48.318182 | 2.181818 | 22.277273 | 20.181818 | 24.363636 | 20112012.0 | 60.500000 | 331.000000 | 96.00000 | 86.000000 | 89.000000 | 60.000000 | 19.000000 | 5.700000 | 65.000000 | 19.600000 | 49.000000 | 10.000000 | 5.000000 | 1.500000 | 294.000000 | 88.800000 | 28.000000 | 8.500000 | 3.000000 | 0.900000 | 202.000000 | 61.000000 | 129.000000 | 39.000000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 297.00000 | Traditional | French | No courses | No courses | No courses | 830.000000 | 320.000000 | 1.000000 | 6565 Flatlands Avenue\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.632627 | -73.917798 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 77.000000 | 42.000000 | 13.000000 | 224.000000 | 8.000000 | 36.000000 | 8.200000 | 7.900000 | 7.600000 | 8.000000 | 5.500000 | 4.000000 | 5.500000 | 5.900000 | 6.000000 | 5.700000 | 5.900000 | 6.800000 | 6.600000 | 5.900000 | 6.300000 | 6.900000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
318 | 18K567 | BROOKLYN THEATRE ARTS HIGH SCHOOL | 54.0 | 383.0 | 358.0 | 377.0 | 1118.0 | 0 | 0.0 | 0.0 | 0.0 | 64.923077 | 2.461538 | 26.500000 | 23.115385 | 29.538462 | 20112012.0 | 67.800000 | 382.000000 | 118.00000 | 108.000000 | 88.000000 | 68.000000 | 19.000000 | 5.000000 | 71.000000 | 18.600000 | 58.000000 | 7.000000 | 2.000000 | 0.500000 | 322.000000 | 84.300000 | 49.000000 | 12.800000 | 8.000000 | 2.100000 | 138.000000 | 36.100000 | 244.000000 | 63.900000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 401.00000 | Traditional | French | Biology, English Literature and Composition | No courses | No courses | 830.000000 | 323.000000 | 1.000000 | 6565 Flatlands Avenue\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.632627 | -73.917798 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 28.000000 | 300.000000 | 22.000000 | 89.000000 | 8.200000 | 7.300000 | 7.400000 | 7.600000 | 6.800000 | 7.000000 | 7.200000 | 7.900000 | 5.800000 | 6.000000 | 6.400000 | 7.000000 | 6.900000 | 6.800000 | 7.000000 | 7.500000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
319 | 18K569 | KURT HAHN EXPEDITIONARY LEARNING SCHOOL | 43.0 | 368.0 | 378.0 | 346.0 | 1092.0 | 0 | 0.0 | 0.0 | 0.0 | 45.346154 | 1.692308 | 26.903846 | 24.884615 | 28.538462 | 20112012.0 | 62.600000 | 294.000000 | 85.00000 | 96.000000 | 51.000000 | 62.000000 | 28.000000 | 9.500000 | 59.000000 | 20.100000 | 41.000000 | 6.000000 | 0.000000 | 0.000000 | 259.000000 | 88.100000 | 26.000000 | 8.800000 | 5.000000 | 1.700000 | 189.000000 | 64.300000 | 105.000000 | 35.700000 | 5.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11203.00000 | 288.00000 | Traditional | Spanish | No courses | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 5800 Tilden Avenue\nBrooklyn, NY 11203\n(40.64... | 17.000000 | 45.000000 | 40.648664 | -73.921899 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 83.000000 | 30.000000 | 232.000000 | 19.000000 | 82.000000 | 8.000000 | 7.700000 | 7.600000 | 7.700000 | 6.200000 | 7.300000 | 7.500000 | 7.800000 | 6.300000 | 5.900000 | 6.400000 | 7.000000 | 6.800000 | 7.000000 | 7.100000 | 7.500000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
320 | 18K576 | VICTORY COLLEGIATE HIGH SCHOOL | 63.0 | 387.0 | 377.0 | 379.0 | 1143.0 | 0 | 0.0 | 0.0 | 0.0 | 74.400000 | 2.866667 | 26.593333 | 24.200000 | 29.333333 | 20112012.0 | 64.100000 | 325.000000 | 85.00000 | 80.000000 | 74.000000 | 86.000000 | 17.000000 | 5.200000 | 54.000000 | 16.600000 | 40.000000 | 8.000000 | 1.000000 | 0.300000 | 304.000000 | 93.500000 | 19.000000 | 5.800000 | 0.000000 | 0.000000 | 159.000000 | 48.900000 | 166.000000 | 51.100000 | 2.333333 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 332.00000 | Traditional | French, Spanish | English Language and Composition, World History | English Literature and Composition, Macroecono... | French, Spanish | 830.000000 | 330.000000 | 1.000000 | 6565 Flatlands Avenue\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.632627 | -73.917798 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 76.000000 | 67.000000 | 30.000000 | 245.000000 | 16.000000 | 92.000000 | 8.400000 | 7.500000 | 7.500000 | 8.000000 | 7.500000 | 7.000000 | 7.400000 | 8.700000 | 6.600000 | 6.300000 | 6.700000 | 7.600000 | 7.500000 | 6.900000 | 7.200000 | 8.100000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
321 | 18K578 | BROOKLYN BRIDGE ACADEMY | 17.0 | 384.0 | 362.0 | 351.0 | 1097.0 | 0 | 0.0 | 0.0 | 0.0 | 45.692308 | 2.461538 | 19.400000 | 16.692308 | 22.538462 | 20112012.0 | 65.000000 | 217.000000 | 45.00000 | 46.000000 | 64.000000 | 62.000000 | 6.000000 | 2.800000 | 24.000000 | 11.100000 | 16.000000 | 3.000000 | 2.000000 | 0.900000 | 191.000000 | 88.000000 | 20.000000 | 9.200000 | 2.000000 | 0.900000 | 127.000000 | 58.500000 | 90.000000 | 41.500000 | 54.000000 | 13.975000 | 5.150000 | 36.875000 | 0.000000 | 0.000000 | 5.150000 | 36.875000 | 8.825000 | 63.125000 | 70.525000 | 11.950000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.641863 | -73.914726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 38.000000 | 72.000000 | 45.000000 | 79.000000 | 13.000000 | 94.000000 | 8.000000 | 7.900000 | 7.700000 | 8.300000 | 5.800000 | 4.500000 | 5.800000 | 6.100000 | 7.100000 | 7.000000 | 7.300000 | 7.900000 | 7.000000 | 6.500000 | 6.900000 | 7.400000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
322 | 18K589 | ARTS & MEDIA PREPARATORY ACADEMY | 48.0 | 361.0 | 360.0 | 359.0 | 1080.0 | 0 | 0.0 | 0.0 | 0.0 | 41.440000 | 2.040000 | 20.748000 | 19.560000 | 21.920000 | 20112012.0 | 54.400000 | 293.000000 | 109.00000 | 69.000000 | 55.000000 | 60.000000 | 10.000000 | 3.400000 | 51.000000 | 17.400000 | 23.000000 | 7.000000 | 2.000000 | 0.700000 | 262.000000 | 89.400000 | 28.000000 | 9.600000 | 0.000000 | 0.000000 | 139.000000 | 47.400000 | 154.000000 | 52.600000 | 4.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11203.00000 | 298.00000 | Traditional | Spanish | No courses | English Language and Composition, English Lite... | No courses | 850.000000 | 340.000000 | 1.000000 | 905 Winthrop Street\nBrooklyn, NY 11203\n(40.6... | 17.000000 | 41.000000 | 40.658457 | -73.929033 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 73.000000 | 33.000000 | 164.000000 | 16.000000 | 80.000000 | 8.300000 | 7.500000 | 7.300000 | 7.900000 | 6.700000 | 5.900000 | 6.400000 | 6.900000 | 6.200000 | 6.200000 | 6.400000 | 7.200000 | 7.100000 | 6.500000 | 6.700000 | 7.300000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
323 | 18K617 | HIGH SCHOOL FOR INNOVATION IN ADVERTISING AND ... | 37.0 | 404.0 | 393.0 | 386.0 | 1183.0 | 0 | 0.0 | 0.0 | 0.0 | 63.304348 | 3.217391 | 19.165217 | 16.304348 | 22.217391 | 20112012.0 | 61.300000 | 310.000000 | 86.00000 | 98.000000 | 77.000000 | 49.000000 | 25.000000 | 8.100000 | 56.000000 | 18.100000 | 25.000000 | 15.000000 | 4.000000 | 1.300000 | 266.000000 | 85.800000 | 33.000000 | 10.600000 | 4.000000 | 1.300000 | 206.000000 | 66.500000 | 104.000000 | 33.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 313.00000 | CTE School | Spanish | Environmental Science, Psychology | No courses | No courses | 800.000000 | 315.000000 | 1.000000 | 1600 Rockaway Parkway\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.641844 | -73.898687 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 44.000000 | 95.000000 | 20.000000 | 104.000000 | 21.000000 | 45.000000 | 8.400000 | 7.900000 | 7.700000 | 8.200000 | 7.200000 | 6.100000 | 6.800000 | 6.900000 | 6.600000 | 6.400000 | 7.000000 | 7.700000 | 7.400000 | 6.800000 | 7.200000 | 7.600000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
324 | 18K629 | CULTURAL ACADEMY FOR THE ARTS AND SCIENCES | 33.0 | 393.0 | 395.0 | 381.0 | 1169.0 | 0 | 0.0 | 0.0 | 0.0 | 61.909091 | 3.363636 | 18.804545 | 15.863636 | 22.272727 | 20112012.0 | 71.600000 | 299.000000 | 118.00000 | 91.000000 | 21.000000 | 69.000000 | 23.000000 | 7.700000 | 55.000000 | 18.400000 | 43.000000 | 7.000000 | 4.000000 | 1.300000 | 259.000000 | 86.600000 | 34.000000 | 11.400000 | 2.000000 | 0.700000 | 154.000000 | 51.500000 | 145.000000 | 48.500000 | 2.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11203.00000 | 309.00000 | Traditional | French, Spanish | Calculus AB, Chemistry, Psychology | Chemistry | No courses | 800.000000 | 300.000000 | 2.000000 | 5800 Tilden Avenue\nBrooklyn, NY 11203\n(40.64... | 17.000000 | 45.000000 | 40.648664 | -73.921899 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.000000 | 94.000000 | 20.000000 | 200.000000 | 17.000000 | 43.000000 | 8.300000 | 7.600000 | 7.500000 | 8.000000 | 6.800000 | 6.700000 | 7.500000 | 7.500000 | 6.000000 | 5.800000 | 5.900000 | 6.600000 | 7.000000 | 6.700000 | 7.000000 | 7.400000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
325 | 18K633 | HIGH SCHOOL FOR MEDICAL PROFESSIONS | 75.0 | 386.0 | 380.0 | 393.0 | 1159.0 | 0 | 0.0 | 0.0 | 0.0 | 66.633333 | 2.400000 | 27.173333 | 24.966667 | 29.366667 | 20112012.0 | 75.200000 | 460.000000 | 117.00000 | 118.000000 | 122.000000 | 103.000000 | 15.000000 | 3.300000 | 48.000000 | 10.400000 | 36.000000 | 7.000000 | 8.000000 | 1.700000 | 391.000000 | 85.000000 | 57.000000 | 12.400000 | 1.000000 | 0.200000 | 99.000000 | 21.500000 | 361.000000 | 78.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 441.00000 | Traditional | Spanish | Biology, Calculus AB, Psychology | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 1600 Rockaway Parkway\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.641844 | -73.898687 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 98.000000 | 100.000000 | 50.000000 | 338.000000 | 23.000000 | 170.000000 | 8.300000 | 8.200000 | 7.900000 | 8.200000 | 7.100000 | 7.200000 | 6.900000 | 7.300000 | 6.300000 | 6.300000 | 6.300000 | 7.600000 | 7.200000 | 7.200000 | 7.000000 | 7.700000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
326 | 18K635 | OLYMPUS ACADEMY | 7.0 | 400.0 | 370.0 | 370.0 | 1140.0 | 0 | 0.0 | 0.0 | 0.0 | 32.200000 | 2.000000 | 14.900000 | 13.000000 | 17.400000 | 20112012.0 | 51.100000 | 203.000000 | 20.00000 | 142.000000 | 21.000000 | 20.000000 | 3.000000 | 1.500000 | 19.000000 | 9.400000 | 4.000000 | 0.000000 | 2.000000 | 1.000000 | 175.000000 | 86.200000 | 23.000000 | 11.300000 | 2.000000 | 1.000000 | 102.000000 | 50.200000 | 101.000000 | 49.800000 | 87.000000 | 13.333333 | 7.066667 | 65.966667 | 0.000000 | 0.000000 | 7.066667 | 65.966667 | 6.266667 | 34.033333 | 76.566667 | 8.766667 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.641863 | -73.914726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 86.000000 | 3.000000 | 89.000000 | 12.000000 | 4.000000 | 7.800000 | 7.100000 | 6.600000 | 6.800000 | 7.300000 | 6.700000 | 7.800000 | 8.600000 | 8.000000 | 6.300000 | 7.900000 | 8.400000 | 7.700000 | 6.600000 | 7.600000 | 8.100000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
327 | 18K637 | ACADEMY FOR CONSERVATION AND THE ENVIRONMENT | 35.0 | 363.0 | 381.0 | 367.0 | 1111.0 | 0 | 0.0 | 0.0 | 0.0 | 59.058824 | 2.882353 | 20.141176 | 18.294118 | 22.000000 | 20112012.0 | 54.500000 | 274.000000 | 99.00000 | 81.000000 | 49.000000 | 45.000000 | 19.000000 | 6.900000 | 46.000000 | 16.800000 | 34.000000 | 10.000000 | 6.000000 | 2.200000 | 230.000000 | 83.900000 | 33.000000 | 12.000000 | 4.000000 | 1.500000 | 150.000000 | 54.700000 | 124.000000 | 45.300000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 280.00000 | Traditional | French, Spanish | Calculus AB, English Literature and Composition | Biology, Chemistry, English Literature and Com... | French, Spanish | 833.000000 | 319.000000 | 1.000000 | 6565 Flatlands Avenue\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.632627 | -73.917798 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 76.000000 | 83.000000 | 17.000000 | 134.000000 | 15.000000 | 30.000000 | 8.400000 | 7.900000 | 7.600000 | 8.200000 | 7.200000 | 5.800000 | 7.000000 | 7.600000 | 6.100000 | 5.900000 | 6.000000 | 7.200000 | 7.200000 | 6.600000 | 6.900000 | 7.700000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
328 | 18K642 | URBAN ACTION ACADEMY | 40.0 | 376.0 | 385.0 | 374.0 | 1135.0 | 0 | 0.0 | 0.0 | 0.0 | 61.705882 | 3.058824 | 20.429412 | 18.000000 | 22.588235 | 20112012.0 | 76.400000 | 305.000000 | 75.00000 | 90.000000 | 83.000000 | 57.000000 | 34.000000 | 11.100000 | 38.000000 | 12.500000 | 27.000000 | 9.000000 | 7.000000 | 2.300000 | 251.000000 | 82.300000 | 32.000000 | 10.500000 | 12.000000 | 3.900000 | 191.000000 | 62.600000 | 114.000000 | 37.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11236.00000 | 312.00000 | Traditional | Italian, Spanish | English Literature and Composition | No courses | No courses | 810.000000 | 320.000000 | 1.000000 | 1600 Rockaway Parkway\nBrooklyn, NY 11236\n(40... | 18.000000 | 46.000000 | 40.641844 | -73.898687 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 80.000000 | 43.000000 | 175.000000 | 16.000000 | 102.000000 | 8.200000 | 7.300000 | 7.100000 | 7.700000 | 6.800000 | 5.700000 | 5.900000 | 6.000000 | 6.100000 | 5.900000 | 6.600000 | 7.200000 | 7.000000 | 6.300000 | 6.500000 | 7.000000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
329 | 18K673 | EAST BROOKLYN COMMUNITY HIGH SCHOOL | 12.0 | 410.0 | 403.0 | 378.0 | 1191.0 | 0 | 0.0 | 0.0 | 0.0 | 18.800000 | 1.000000 | 18.800000 | 18.800000 | 18.800000 | 20112012.0 | 56.700000 | 203.000000 | 79.00000 | 77.000000 | 38.000000 | 9.000000 | 1.000000 | 0.500000 | 18.000000 | 8.900000 | 4.000000 | 1.000000 | 2.000000 | 1.000000 | 180.000000 | 88.700000 | 19.000000 | 9.400000 | 1.000000 | 0.500000 | 106.000000 | 52.200000 | 97.000000 | 47.800000 | 69.000000 | 5.750000 | 1.450000 | 20.000000 | 0.000000 | 0.000000 | 1.450000 | 20.000000 | 4.300000 | 80.000000 | 85.550000 | 8.700000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.641863 | -73.914726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 83.000000 | 15.000000 | 110.000000 | 15.000000 | 27.000000 | 8.900000 | 8.500000 | 8.400000 | 9.000000 | 7.400000 | 6.400000 | 8.100000 | 8.400000 | 7.800000 | 7.300000 | 7.700000 | 8.000000 | 8.000000 | 7.400000 | 8.100000 | 8.500000 | 18 | DISTRICT 18 | 89.83 | 18641 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
330 | 19K409 | EAST NEW YORK FAMILY ACADEMY | 54.0 | 416.0 | 432.0 | 394.0 | 1242.0 | 0 | 0.0 | 0.0 | 0.0 | 54.913043 | 2.782609 | 19.882609 | 18.347826 | 21.347826 | 20112012.0 | 72.200000 | 433.000000 | 119.00000 | 60.000000 | 51.000000 | 58.000000 | 2.000000 | 0.500000 | 9.000000 | 2.100000 | 6.000000 | 0.000000 | 2.000000 | 0.500000 | 291.000000 | 67.200000 | 131.000000 | 30.300000 | 6.000000 | 1.400000 | 187.000000 | 43.200000 | 246.000000 | 56.800000 | 67.428571 | 75.785714 | 44.671429 | 55.885714 | 5.128571 | 6.300000 | 39.542857 | 49.585714 | 31.142857 | 44.114286 | 17.485714 | 4.914286 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11207.00000 | 468.00000 | Traditional | French, Spanish | Comparative Government and Politics, English L... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 2057 Linden Boulevard\nBrooklyn, NY 11207\n(40... | 5.000000 | 42.000000 | 40.660637 | -73.886342 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 79.000000 | 88.000000 | 51.000000 | 330.000000 | 28.000000 | 197.000000 | 8.500000 | 7.500000 | 7.600000 | 7.800000 | 8.100000 | 7.100000 | 7.200000 | 7.800000 | 6.700000 | 6.200000 | 6.700000 | 7.500000 | 7.800000 | 6.900000 | 7.200000 | 7.700000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
331 | 19K420 | FRANKLIN K. LANE HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 10.0 | 10.0 | 0.0 | 47.875000 | 2.500000 | 18.600000 | 16.500000 | 21.062500 | 20112012.0 | 64.300000 | 112.000000 | 2.00000 | 13.000000 | 16.000000 | 81.000000 | 43.000000 | 38.400000 | 14.000000 | 12.500000 | 7.000000 | 2.000000 | 5.000000 | 4.500000 | 13.000000 | 11.600000 | 92.000000 | 82.100000 | 2.000000 | 1.800000 | 58.000000 | 51.800000 | 54.000000 | 48.200000 | 668.428571 | 34.442857 | 19.714286 | 56.557143 | 3.600000 | 10.314286 | 16.142857 | 46.242857 | 14.714286 | 43.442857 | 38.571429 | 23.757143 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.676547 | -73.882158 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 57.000000 | 16.000000 | 228.000000 | 24.000000 | 56.000000 | 7.500000 | 7.600000 | 7.600000 | 7.900000 | 6.200000 | 5.600000 | 5.900000 | 6.600000 | 6.300000 | 5.500000 | 6.400000 | 7.100000 | 6.600000 | 6.200000 | 6.600000 | 7.200000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
332 | 19K431 | THOMAS JEFFERSON YABC | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.676547 | -73.882158 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 58.000000 | 88.000000 | 14.000000 | 111.000000 | 23.000000 | 26.000000 | 8.600000 | 7.900000 | 7.500000 | 7.900000 | 9.200000 | 9.400000 | 9.500000 | 9.700000 | 8.800000 | 7.600000 | 8.600000 | 8.700000 | 8.900000 | 8.300000 | 8.500000 | 8.800000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
333 | 19K502 | FDNY HIGH SCHOOL FOR FIRE AND LIFE SAFETY | 37.0 | 341.0 | 349.0 | 333.0 | 1023.0 | 0 | 0.0 | 0.0 | 0.0 | 81.296296 | 3.222222 | 24.785185 | 20.777778 | 28.259259 | 20112012.0 | 70.900000 | 381.000000 | 134.00000 | 100.000000 | 79.000000 | 68.000000 | 19.000000 | 5.000000 | 80.000000 | 21.000000 | 52.000000 | 11.000000 | 4.000000 | 1.000000 | 281.000000 | 73.800000 | 89.000000 | 23.400000 | 6.000000 | 1.600000 | 309.000000 | 81.100000 | 72.000000 | 18.900000 | 58.666667 | 53.825000 | 24.750000 | 46.025000 | 2.300000 | 4.150000 | 22.450000 | 41.825000 | 29.075000 | 53.975000 | 24.100000 | 18.000000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11207.00000 | 296.00000 | Traditional | Spanish | English Literature and Composition | Biology, United States Government and Politics... | No courses | 800.000000 | 300.000000 | 1.000000 | 400 Pennsylvania Avenue\nBrooklyn, NY 11207\n(... | 5.000000 | 42.000000 | 40.667553 | -73.894801 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 92.000000 | 37.000000 | 270.000000 | 24.000000 | 130.000000 | 7.000000 | 7.500000 | 7.100000 | 7.400000 | 5.000000 | 5.200000 | 5.200000 | 5.600000 | 5.400000 | 5.400000 | 5.700000 | 6.800000 | 5.800000 | 6.000000 | 6.000000 | 6.600000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
334 | 19K504 | HIGH SCHOOL FOR CIVIL RIGHTS | 47.0 | 363.0 | 349.0 | 342.0 | 1054.0 | 0 | 12.0 | 18.0 | 0.0 | 69.037037 | 2.666667 | 26.018519 | 22.703704 | 29.037037 | 20112012.0 | 60.500000 | 401.000000 | 110.00000 | 102.000000 | 95.000000 | 94.000000 | 39.000000 | 9.700000 | 65.000000 | 16.200000 | 35.000000 | 14.000000 | 8.000000 | 2.000000 | 298.000000 | 74.300000 | 89.000000 | 22.200000 | 4.000000 | 1.000000 | 218.000000 | 54.400000 | 183.000000 | 45.600000 | 70.000000 | 57.325000 | 42.575000 | 74.700000 | 3.375000 | 5.875000 | 39.200000 | 68.825000 | 14.675000 | 25.300000 | 26.825000 | 12.550000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11207.00000 | 349.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 315.000000 | 1.000000 | 400 Pennsylvania Avenue\nBrooklyn, NY 11207\n(... | 5.000000 | 42.000000 | 40.667553 | -73.894801 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 69.000000 | 100.000000 | 35.000000 | 273.000000 | 24.000000 | 127.000000 | 7.700000 | 7.700000 | 7.500000 | 7.900000 | 7.900000 | 7.600000 | 7.900000 | 8.400000 | 6.400000 | 6.100000 | 6.800000 | 7.500000 | 7.300000 | 7.200000 | 7.400000 | 7.900000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
335 | 19K507 | PERFORMING ARTS AND TECHNOLOGY HIGH SCHOOL | 61.0 | 380.0 | 386.0 | 383.0 | 1149.0 | 0 | 0.0 | 0.0 | 0.0 | 83.590909 | 3.227273 | 25.813636 | 19.500000 | 29.727273 | 20112012.0 | 76.000000 | 453.000000 | 167.00000 | 147.000000 | 80.000000 | 59.000000 | 22.000000 | 4.900000 | 89.000000 | 19.600000 | 41.000000 | 26.000000 | 3.000000 | 0.700000 | 369.000000 | 81.500000 | 79.000000 | 17.400000 | 0.000000 | 0.000000 | 233.000000 | 51.400000 | 220.000000 | 48.600000 | 67.000000 | 71.775000 | 56.200000 | 77.950000 | 0.975000 | 1.300000 | 55.200000 | 76.650000 | 15.600000 | 22.050000 | 20.975000 | 6.700000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11207.00000 | 428.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, English Liter... | English Literature and Composition, United Sta... | French, Spanish | 805.000000 | 300.000000 | 3.000000 | 400 Pennsylvania Avenue\nBrooklyn, NY 11207\n(... | 5.000000 | 42.000000 | 40.667553 | -73.894801 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 100.000000 | 52.000000 | 278.000000 | 29.000000 | 202.000000 | 8.000000 | 7.900000 | 7.800000 | 8.200000 | 7.600000 | 8.300000 | 8.200000 | 8.800000 | 6.500000 | 6.000000 | 7.100000 | 7.700000 | 7.400000 | 7.400000 | 7.700000 | 8.200000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
336 | 19K510 | WORLD ACADEMY FOR TOTAL COMMUNITY HEALTH HIGH ... | 68.0 | 371.0 | 365.0 | 370.0 | 1106.0 | 0 | 22.0 | 22.0 | 0.0 | 73.413793 | 2.965517 | 24.551724 | 20.862069 | 28.172414 | 20112012.0 | 72.600000 | 380.000000 | 106.00000 | 105.000000 | 92.000000 | 77.000000 | 16.000000 | 4.200000 | 56.000000 | 14.700000 | 34.000000 | 13.000000 | 8.000000 | 2.100000 | 308.000000 | 81.100000 | 54.000000 | 14.200000 | 5.000000 | 1.300000 | 140.000000 | 36.800000 | 240.000000 | 63.200000 | 62.833333 | 55.750000 | 28.700000 | 47.400000 | 3.550000 | 5.325000 | 25.200000 | 42.050000 | 27.000000 | 52.600000 | 33.600000 | 8.750000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11207.00000 | 309.00000 | Traditional | Spanish | Biology, Psychology | No courses | No courses | 805.000000 | 220.000000 | 2.000000 | 400 Pennsylvania Avenue\nBrooklyn, NY 11207\n(... | 5.000000 | 42.000000 | 40.667553 | -73.894801 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 71.000000 | 91.000000 | 32.000000 | 265.000000 | 21.000000 | 118.000000 | 7.600000 | 7.000000 | 7.000000 | 7.300000 | 5.800000 | 5.900000 | 6.300000 | 7.400000 | 5.300000 | 5.700000 | 5.600000 | 6.900000 | 6.300000 | 6.200000 | 6.300000 | 7.200000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
337 | 19K583 | MULTICULTURAL HIGH SCHOOL | 29.0 | 279.0 | 322.0 | 286.0 | 887.0 | 0 | 44.0 | 44.0 | 39.0 | 115.166667 | 4.916667 | 23.808333 | 19.500000 | 27.666667 | 20112012.0 | 73.400000 | 406.000000 | 75.00000 | 115.000000 | 99.000000 | 117.000000 | 384.000000 | 94.600000 | 4.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | 0.200000 | 405.000000 | 99.800000 | 0.000000 | 0.000000 | 202.000000 | 49.800000 | 204.000000 | 50.200000 | 3.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 322.00000 | Traditional | Spanish | No courses | No courses | English | 815.000000 | 315.000000 | 1.000000 | 999 Jamaica Avenue\nBrooklyn, NY 11208\n(40.69... | 5.000000 | 37.000000 | 40.691144 | -73.868426 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 83.000000 | 11.000000 | 360.000000 | 20.000000 | 39.000000 | 7.900000 | 8.100000 | 7.500000 | 7.800000 | 6.100000 | 5.600000 | 5.900000 | 6.300000 | 7.100000 | 5.900000 | 7.000000 | 7.400000 | 7.000000 | 6.500000 | 6.800000 | 7.100000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
338 | 19K615 | TRANSIT TECH CAREER AND TECHNICAL EDUCATION HI... | 182.0 | 395.0 | 418.0 | 380.0 | 1193.0 | 0 | 138.0 | 164.0 | 18.0 | 142.588235 | 5.823529 | 21.305882 | 18.647059 | 23.441176 | 20112012.0 | 62.300000 | 1317.000000 | 448.00000 | 366.000000 | 241.000000 | 262.000000 | 32.000000 | 2.400000 | 187.000000 | 14.200000 | 61.000000 | 66.000000 | 58.000000 | 4.400000 | 928.000000 | 70.500000 | 306.000000 | 23.200000 | 20.000000 | 1.500000 | 1107.000000 | 84.100000 | 210.000000 | 15.900000 | 331.714286 | 67.157143 | 47.057143 | 69.914286 | 16.442857 | 24.585714 | 30.571429 | 45.314286 | 20.171429 | 30.157143 | 21.242857 | 7.342857 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 1167.00000 | CTE School | Spanish | Calculus AB, Computer Science A, English Langu... | No courses | Spanish | 830.000000 | 245.000000 | 6.000000 | 1 Wells Street\nBrooklyn, NY 11208\n(40.678230... | 5.000000 | 37.000000 | 40.678231 | -73.875973 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 51.000000 | 75.000000 | 15.000000 | 713.000000 | 66.000000 | 200.000000 | 7.400000 | 7.200000 | 7.100000 | 7.300000 | 6.200000 | 6.600000 | 6.800000 | 7.000000 | 5.300000 | 5.400000 | 5.900000 | 6.700000 | 6.300000 | 6.400000 | 6.600000 | 7.000000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
339 | 19K618 | ACADEMY OF INNOVATIVE TECHNOLOGY | 60.0 | 371.0 | 371.0 | 354.0 | 1096.0 | 0 | 0.0 | 0.0 | 0.0 | 66.117647 | 2.823529 | 23.858824 | 19.470588 | 28.235294 | 20112012.0 | 75.800000 | 404.000000 | 156.00000 | 66.000000 | 103.000000 | 79.000000 | 49.000000 | 12.100000 | 78.000000 | 19.300000 | 32.000000 | 17.000000 | 30.000000 | 7.400000 | 155.000000 | 38.400000 | 203.000000 | 50.200000 | 12.000000 | 3.000000 | 284.000000 | 70.300000 | 120.000000 | 29.700000 | 1.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 440.00000 | CTE School | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 745.000000 | 230.000000 | 1.000000 | 999 Jamaica Avenue\nBrooklyn, NY 11208\n(40.69... | 5.000000 | 37.000000 | 40.691144 | -73.868426 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 49.000000 | 83.000000 | 22.000000 | 139.000000 | 24.000000 | 61.000000 | 7.600000 | 7.900000 | 7.700000 | 8.000000 | 6.600000 | 6.000000 | 6.900000 | 7.300000 | 6.400000 | 6.200000 | 7.000000 | 7.500000 | 6.900000 | 6.700000 | 7.200000 | 7.600000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
340 | 19K639 | BROOKLYN LAB SCHOOL | 57.0 | 360.0 | 385.0 | 363.0 | 1108.0 | 0 | 0.0 | 0.0 | 0.0 | 57.500000 | 2.208333 | 25.741667 | 23.708333 | 27.458333 | 20112012.0 | 76.000000 | 397.000000 | 98.00000 | 111.000000 | 83.000000 | 105.000000 | 61.000000 | 15.400000 | 77.000000 | 19.400000 | 45.000000 | 21.000000 | 6.000000 | 1.500000 | 122.000000 | 30.700000 | 258.000000 | 65.000000 | 5.000000 | 1.300000 | 232.000000 | 58.400000 | 165.000000 | 41.600000 | 1.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 364.00000 | Traditional | Spanish | Biology, English Literature and Composition, S... | Biology, Calculus AB, English Literature and C... | French, Italian | 822.000000 | 311.000000 | 1.000000 | 999 Jamaica Avenue\nBrooklyn, NY 11208\n(40.69... | 5.000000 | 37.000000 | 40.691144 | -73.868426 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 77.000000 | 23.000000 | 210.000000 | 20.000000 | 67.000000 | 6.300000 | 7.300000 | 6.900000 | 7.000000 | 4.900000 | 4.400000 | 4.900000 | 5.500000 | 5.600000 | 5.800000 | 5.800000 | 6.500000 | 5.600000 | 5.800000 | 5.900000 | 6.300000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
341 | 19K659 | CYPRESS HILLS COLLEGIATE PREPARATORY SCHOOL | 51.0 | 376.0 | 385.0 | 368.0 | 1129.0 | 0 | 21.0 | 21.0 | 10.0 | 48.666667 | 2.041667 | 24.183333 | 22.916667 | 25.833333 | 20112012.0 | 67.100000 | 437.000000 | 139.00000 | 108.000000 | 86.000000 | 104.000000 | 71.000000 | 16.200000 | 51.000000 | 11.700000 | 24.000000 | 13.000000 | 36.000000 | 8.200000 | 74.000000 | 16.900000 | 320.000000 | 73.200000 | 6.000000 | 1.400000 | 209.000000 | 47.800000 | 228.000000 | 52.200000 | 71.000000 | 58.950000 | 37.700000 | 64.050000 | 1.900000 | 3.200000 | 35.800000 | 60.850000 | 21.200000 | 35.950000 | 30.650000 | 7.500000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 370.00000 | Traditional | American Sign Language, Spanish | English Literature and Composition, Psychology... | Calculus AB, Chemistry, English Language and C... | French, Spanish | 810.000000 | 300.000000 | 1.000000 | 999 Jamaica Avenue\nBrooklyn, NY 11208\n(40.69... | 5.000000 | 37.000000 | 40.691144 | -73.868426 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 93.000000 | 39.000000 | 293.000000 | 27.000000 | 160.000000 | 7.700000 | 7.700000 | 7.300000 | 7.700000 | 5.700000 | 5.400000 | 6.200000 | 6.900000 | 6.600000 | 6.600000 | 7.000000 | 7.400000 | 6.700000 | 6.600000 | 6.800000 | 7.300000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
342 | 19K660 | W. H. MAXWELL CAREER AND TECHNICAL EDUCATION H... | 74.0 | 370.0 | 369.0 | 363.0 | 1102.0 | 0 | 46.0 | 46.0 | 0.0 | 96.448276 | 4.241379 | 19.503448 | 15.000000 | 23.137931 | 20112012.0 | 73.300000 | 590.000000 | 130.00000 | 131.000000 | 155.000000 | 174.000000 | 31.000000 | 5.300000 | 157.000000 | 26.600000 | 30.000000 | 93.000000 | 3.000000 | 0.500000 | 424.000000 | 71.900000 | 150.000000 | 25.400000 | 4.000000 | 0.700000 | 176.000000 | 29.800000 | 414.000000 | 70.200000 | 240.714286 | 40.628571 | 12.200000 | 27.800000 | 1.385714 | 3.471429 | 10.814286 | 24.314286 | 28.485714 | 72.385714 | 31.628571 | 22.057143 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11207.00000 | 463.00000 | CTE School | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 800.000000 | 307.000000 | 3.000000 | 145 Pennsylvania Avenue\nBrooklyn, NY 11207\n(... | 5.000000 | 37.000000 | 40.674224 | -73.896454 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 56.000000 | 88.000000 | 43.000000 | 385.000000 | 42.000000 | 289.000000 | 7.100000 | 7.100000 | 7.100000 | 7.400000 | 7.000000 | 7.200000 | 7.300000 | 8.200000 | 5.800000 | 5.700000 | 6.000000 | 6.800000 | 6.600000 | 6.700000 | 6.800000 | 7.400000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
343 | 19K683 | THE SCHOOL FOR CLASSICS: AN ACADEMY OF THINKER... | 38.0 | 383.0 | 400.0 | 374.0 | 1157.0 | 0 | 0.0 | 0.0 | 0.0 | 61.818182 | 2.590909 | 23.004545 | 20.954545 | 24.909091 | 20112012.0 | 81.900000 | 311.000000 | 79.00000 | 99.000000 | 86.000000 | 47.000000 | 28.000000 | 9.000000 | 55.000000 | 17.700000 | 9.000000 | 34.000000 | 31.000000 | 10.000000 | 169.000000 | 54.300000 | 108.000000 | 34.700000 | 2.000000 | 0.600000 | 117.000000 | 37.600000 | 194.000000 | 62.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11208.00000 | 309.00000 | Traditional | Spanish | English Literature and Composition, Macroecono... | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 370 Fountain Avenue\nBrooklyn, NY 11208\n(40.6... | 5.000000 | 42.000000 | 40.670683 | -73.874217 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 98.000000 | 100.000000 | 49.000000 | 227.000000 | 17.000000 | 106.000000 | 8.300000 | 8.000000 | 7.900000 | 8.100000 | 7.300000 | 7.500000 | 8.400000 | 8.500000 | 6.700000 | 6.200000 | 6.900000 | 7.000000 | 7.400000 | 7.300000 | 7.700000 | 7.900000 | 19 | DISTRICT 19 | 87.81 | 25632 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
344 | 20K445 | NEW UTRECHT HIGH SCHOOL | 456.0 | 402.0 | 471.0 | 399.0 | 1272.0 | 0 | 174.0 | 271.0 | 95.0 | 287.595238 | 10.619048 | 21.954762 | 13.809524 | 27.880952 | 20112012.0 | 59.000000 | 3276.000000 | 1106.00000 | 889.000000 | 636.000000 | 645.000000 | 755.000000 | 23.000000 | 511.000000 | 15.600000 | 170.000000 | 182.000000 | 1176.000000 | 35.900000 | 181.000000 | 5.500000 | 916.000000 | 28.000000 | 1000.000000 | 30.500000 | 1943.000000 | 59.300000 | 1333.000000 | 40.700000 | 674.428571 | 59.171429 | 46.985714 | 79.071429 | 18.857143 | 31.600000 | 28.142857 | 47.457143 | 12.200000 | 20.928571 | 25.942857 | 12.657143 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11214.00000 | 3362.00000 | Traditional | Chinese (Cantonese), Chinese (Mandarin), Itali... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 800.000000 | 300.000000 | 8.000000 | 1601 80 Street\nBrooklyn, NY 11214\n(40.613424... | 11.000000 | 43.000000 | 40.613424 | -74.003654 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 1.0 | 14.000000 | 69.000000 | 17.000000 | 419.000000 | 122.000000 | 477.000000 | 7.800000 | 6.900000 | 6.900000 | 7.200000 | 7.800000 | 7.400000 | 8.000000 | 8.200000 | 7.000000 | 6.300000 | 7.100000 | 7.500000 | 7.600000 | 6.900000 | 7.400000 | 7.700000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
345 | 20K485 | HIGH SCHOOL OF TELECOMMUNICATION ARTS AND TECH... | 238.0 | 425.0 | 474.0 | 424.0 | 1323.0 | 0 | 251.0 | 413.0 | 123.0 | 193.916667 | 6.583333 | 27.975000 | 22.083333 | 31.027778 | 20112012.0 | 67.300000 | 1280.000000 | 414.00000 | 412.000000 | 229.000000 | 225.000000 | 63.000000 | 4.900000 | 248.000000 | 19.400000 | 110.000000 | 46.000000 | 246.000000 | 19.200000 | 121.000000 | 9.500000 | 692.000000 | 54.100000 | 215.000000 | 16.800000 | 685.000000 | 53.500000 | 595.000000 | 46.500000 | 284.142857 | 73.000000 | 65.314286 | 89.100000 | 40.442857 | 54.700000 | 24.871429 | 34.400000 | 7.685714 | 10.900000 | 15.828571 | 8.628571 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11220.00000 | 1313.00000 | Traditional | Spanish | Biology, Calculus AB, Chemistry, English Langu... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 350 67 Street\nBrooklyn, NY 11220\n(40.6372457... | 10.000000 | 43.000000 | 40.637246 | -74.023816 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 64.000000 | 17.000000 | 1001.000000 | 49.000000 | 215.000000 | 8.200000 | 7.500000 | 7.500000 | 7.800000 | 8.200000 | 8.100000 | 7.500000 | 8.600000 | 7.000000 | 6.300000 | 6.800000 | 7.600000 | 7.800000 | 7.300000 | 7.300000 | 8.000000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
346 | 20K490 | FORT HAMILTON HIGH SCHOOL | 694.0 | 417.0 | 478.0 | 411.0 | 1306.0 | 0 | 357.0 | 576.0 | 331.0 | 358.891304 | 13.239130 | 24.582609 | 18.652174 | 27.500000 | 20112012.0 | 45.900000 | 4275.000000 | 1243.00000 | 1462.000000 | 849.000000 | 721.000000 | 908.000000 | 21.200000 | 547.000000 | 12.800000 | 175.000000 | 270.000000 | 1297.000000 | 30.300000 | 214.000000 | 5.000000 | 1292.000000 | 30.200000 | 1464.000000 | 34.200000 | 2282.000000 | 53.400000 | 1993.000000 | 46.600000 | 1069.714286 | 58.885714 | 46.985714 | 79.300000 | 17.900000 | 30.428571 | 29.085714 | 48.871429 | 11.885714 | 20.700000 | 21.871429 | 17.785714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11209.00000 | 4317.00000 | Traditional | Arabic, Chinese, Classical Greek, French, Ital... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 900.000000 | 345.000000 | 5.000000 | 8301 Shore Road\nBrooklyn, NY 11209\n(40.62791... | 10.000000 | 43.000000 | 40.627913 | -74.039952 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 62.000000 | 75.000000 | 24.000000 | 2589.000000 | 163.000000 | 898.000000 | 7.600000 | 6.700000 | 7.000000 | 7.200000 | 7.700000 | 7.300000 | 7.600000 | 8.100000 | 7.100000 | 6.300000 | 7.000000 | 7.600000 | 7.500000 | 6.800000 | 7.200000 | 7.600000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
347 | 20K505 | FRANKLIN DELANO ROOSEVELT HIGH SCHOOL | 385.0 | 383.0 | 486.0 | 375.0 | 1244.0 | 0 | 228.0 | 340.0 | 186.0 | 333.485714 | 11.885714 | 26.188571 | 21.514286 | 28.628571 | 20112012.0 | 74.300000 | 3108.000000 | 819.00000 | 1063.000000 | 596.000000 | 630.000000 | 1223.000000 | 39.400000 | 336.000000 | 10.800000 | 73.000000 | 186.000000 | 1373.000000 | 44.200000 | 292.000000 | 9.400000 | 848.000000 | 27.300000 | 578.000000 | 18.600000 | 1816.000000 | 58.400000 | 1292.000000 | 41.600000 | 821.571429 | 47.257143 | 37.114286 | 78.771429 | 17.414286 | 37.642857 | 19.728571 | 41.128571 | 10.171429 | 21.328571 | 26.342857 | 24.900000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11204.00000 | 3130.00000 | Traditional | Chinese, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 930.000000 | 415.000000 | 4.000000 | 5800 20 Avenue\nBrooklyn, NY 11204\n(40.620263... | 12.000000 | 44.000000 | 40.620263 | -73.982011 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 81.000000 | 91.000000 | 47.000000 | 2545.000000 | 177.000000 | 1368.000000 | 7.700000 | 7.000000 | 7.100000 | 7.300000 | 7.600000 | 8.000000 | 7.800000 | 8.200000 | 6.800000 | 5.600000 | 6.500000 | 7.100000 | 7.300000 | 6.900000 | 7.100000 | 7.500000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
348 | 20K609 | THE URBAN ASSEMBLY SCHOOL FOR CRIMINAL JUSTICE | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 22.285714 | 1.714286 | 12.828571 | 11.571429 | 14.428571 | 20112012.0 | 82.700000 | 374.000000 | 89.00000 | 75.000000 | 155.308756 | 147.334928 | 58.000000 | 15.500000 | 64.000000 | 17.100000 | 46.000000 | 6.000000 | 131.000000 | 35.000000 | 126.000000 | 33.700000 | 82.000000 | 21.900000 | 34.000000 | 9.100000 | 0.000000 | 0.000000 | 374.000000 | 100.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11204.00000 | 485.00000 | All-Girls School | Spanish | Calculus AB, Chemistry, English Literature and... | No courses | No courses | 845.000000 | 345.000000 | 1.000000 | 4200 16 Avenue\nBrooklyn, NY 11204\n(40.634908... | 12.000000 | 44.000000 | 40.634908 | -73.981519 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 92.000000 | 20.000000 | 247.000000 | 24.000000 | 54.000000 | 8.300000 | 7.800000 | 7.700000 | 7.800000 | 7.800000 | 7.500000 | 8.100000 | 8.300000 | 7.700000 | 7.200000 | 7.800000 | 8.400000 | 7.900000 | 7.500000 | 7.900000 | 8.200000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
349 | 20K658 | FRANKLIN DELANO ROOSEVELT YABC | 18.0 | 338.0 | 477.0 | 316.0 | 1131.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.626751 | -74.006191 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 100.000000 | 5.000000 | 222.000000 | 45.000000 | 11.000000 | 8.200000 | 7.300000 | 7.300000 | 8.400000 | 7.800000 | 7.100000 | 7.900000 | 7.800000 | 7.600000 | 6.500000 | 7.400000 | 7.700000 | 7.800000 | 6.900000 | 7.600000 | 7.900000 | 20 | DISTRICT 20 | 92.77 | 44214 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
350 | 21K337 | INTERNATIONAL HIGH SCHOOL AT LAFAYETTE | 54.0 | 326.0 | 386.0 | 314.0 | 1026.0 | 0 | 0.0 | 0.0 | 0.0 | 88.666667 | 5.666667 | 17.206667 | 15.933333 | 18.866667 | 20112012.0 | 73.800000 | 343.000000 | 83.00000 | 103.000000 | 79.000000 | 78.000000 | 306.000000 | 89.200000 | 1.000000 | 0.300000 | 0.000000 | 1.000000 | 144.000000 | 42.000000 | 48.000000 | 14.000000 | 72.000000 | 21.000000 | 78.000000 | 22.700000 | 202.000000 | 58.900000 | 141.000000 | 41.100000 | 66.333333 | 62.566667 | 23.800000 | 36.500000 | 0.000000 | 0.000000 | 23.800000 | 36.500000 | 38.800000 | 63.500000 | 29.100000 | 8.366667 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11214.00000 | 345.00000 | International School | Chinese Native Language Arts, French, Spanish ... | No courses | No courses | No courses | 915.000000 | 400.000000 | 1.000000 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.000000 | 47.000000 | 40.593594 | -73.984729 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 94.000000 | 96.000000 | 46.000000 | 306.000000 | 22.000000 | 137.000000 | 8.300000 | 7.800000 | 7.400000 | 7.600000 | 7.500000 | 5.800000 | 6.600000 | 6.800000 | 7.600000 | 7.000000 | 7.100000 | 7.800000 | 7.800000 | 6.800000 | 7.000000 | 7.400000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
351 | 21K344 | RACHEL CARSON HIGH SCHOOL FOR COASTAL STUDIES | 54.0 | 402.0 | 427.0 | 408.0 | 1237.0 | 0 | 34.0 | 64.0 | 0.0 | 99.409091 | 3.636364 | 27.222727 | 22.363636 | 30.818182 | 20112012.0 | 70.400000 | 481.000000 | 147.00000 | 128.000000 | 124.000000 | 82.000000 | 53.000000 | 11.000000 | 77.000000 | 16.000000 | 44.000000 | 4.000000 | 59.000000 | 12.300000 | 116.000000 | 24.100000 | 124.000000 | 25.800000 | 181.000000 | 37.600000 | 258.000000 | 53.600000 | 223.000000 | 46.400000 | 64.800000 | 66.366667 | 63.400000 | 95.366667 | 12.633333 | 18.800000 | 50.733333 | 76.566667 | 3.000000 | 4.633333 | 26.100000 | 6.533333 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11224.00000 | 517.00000 | Traditional | French, Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 315.000000 | 1.000000 | 521 West Avenue\nBrooklyn, NY 11224\n(40.58211... | 13.000000 | 47.000000 | 40.582116 | -73.972894 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 90.000000 | 84.000000 | 57.000000 | 403.000000 | 27.000000 | 247.000000 | 7.700000 | 7.500000 | 7.300000 | 7.700000 | 6.500000 | 5.300000 | 6.100000 | 6.800000 | 6.300000 | 6.100000 | 6.100000 | 7.100000 | 6.900000 | 6.300000 | 6.500000 | 7.200000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
352 | 21K348 | HIGH SCHOOL OF SPORTS MANAGEMENT | 39.0 | 388.0 | 398.0 | 378.0 | 1164.0 | 0 | 10.0 | 10.0 | 0.0 | 59.642857 | 2.321429 | 26.096429 | 24.500000 | 27.750000 | 20112012.0 | 69.200000 | 370.000000 | 129.00000 | 86.000000 | 91.000000 | 64.000000 | 9.000000 | 2.400000 | 54.000000 | 14.600000 | 35.000000 | 11.000000 | 10.000000 | 2.700000 | 253.000000 | 68.400000 | 85.000000 | 23.000000 | 22.000000 | 5.900000 | 329.000000 | 88.900000 | 41.000000 | 11.100000 | 49.000000 | 78.466667 | 66.700000 | 85.033333 | 20.000000 | 25.500000 | 46.700000 | 59.500000 | 11.766667 | 14.966667 | 12.833333 | 6.133333 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11214.00000 | 323.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 745.000000 | 345.000000 | 1.000000 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.000000 | 47.000000 | 40.593594 | -73.984729 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 100.000000 | 28.000000 | 238.000000 | 26.000000 | 89.000000 | 7.800000 | 7.300000 | 7.300000 | 7.700000 | 7.300000 | 7.200000 | 7.300000 | 7.900000 | 6.000000 | 6.400000 | 6.900000 | 7.600000 | 7.000000 | 7.000000 | 7.200000 | 7.800000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
353 | 21K410 | ABRAHAM LINCOLN HIGH SCHOOL | 475.0 | 396.0 | 437.0 | 393.0 | 1226.0 | 0 | 133.0 | 193.0 | 18.0 | 260.175000 | 9.700000 | 23.735000 | 17.200000 | 27.700000 | 20112012.0 | 53.300000 | 2595.000000 | 788.00000 | 784.000000 | 486.000000 | 537.000000 | 434.000000 | 16.700000 | 299.000000 | 11.500000 | 98.000000 | 126.000000 | 500.000000 | 19.300000 | 911.000000 | 35.100000 | 522.000000 | 20.100000 | 652.000000 | 25.100000 | 1463.000000 | 56.400000 | 1132.000000 | 43.600000 | 602.285714 | 53.428571 | 41.071429 | 76.814286 | 10.685714 | 20.028571 | 30.371429 | 56.800000 | 12.400000 | 23.185714 | 25.828571 | 17.685714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11235.00000 | 2313.00000 | Traditional | Spanish, Spanish Native Language Arts | Calculus AB, English Language and Composition,... | No courses | No courses | 728.000000 | 310.000000 | 6.000000 | 2800 Ocean Parkway\nBrooklyn, NY 11235\n(40.58... | 13.000000 | 47.000000 | 40.582308 | -73.967466 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 76.000000 | 92.000000 | 15.000000 | 1861.000000 | 135.000000 | 339.000000 | 7.400000 | 6.600000 | 6.700000 | 6.900000 | 7.100000 | 6.200000 | 6.700000 | 7.200000 | 6.000000 | 5.800000 | 6.200000 | 7.000000 | 6.800000 | 6.200000 | 6.500000 | 7.000000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
354 | 21K412/21K411 | ABRAHAM LINCOLN YABC/LEARNING TO WORK GED AT A... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.593596 | -73.978465 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
355 | 21K468 | KINGSBOROUGH EARLY COLLEGE SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 58.400000 | 2.400000 | 25.520000 | 24.000000 | 27.200000 | 20112012.0 | 70.000000 | 472.000000 | 87.00000 | 80.000000 | 70.000000 | 147.334928 | 13.000000 | 2.800000 | 74.000000 | 15.700000 | 49.000000 | 0.000000 | 34.000000 | 7.200000 | 118.000000 | 25.000000 | 107.000000 | 22.700000 | 211.000000 | 44.700000 | 273.000000 | 57.800000 | 199.000000 | 42.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11214.00000 | 551.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 220.000000 | 1.000000 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.000000 | 47.000000 | 40.593594 | -73.984729 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 97.000000 | 100.000000 | 72.000000 | 383.000000 | 26.000000 | 263.000000 | 7.900000 | 7.500000 | 7.300000 | 7.800000 | 7.400000 | 8.000000 | 8.400000 | 8.500000 | 6.400000 | 6.300000 | 6.500000 | 7.200000 | 7.200000 | 7.300000 | 7.400000 | 7.900000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
356 | 21K525 | EDWARD R. MURROW HIGH SCHOOL | 727.0 | 468.0 | 496.0 | 467.0 | 1431.0 | 0 | 397.0 | 577.0 | 307.0 | 393.200000 | 13.422222 | 25.466667 | 18.644444 | 29.355556 | 20112012.0 | 28.500000 | 4022.000000 | 1216.00000 | 1275.000000 | 740.000000 | 791.000000 | 365.000000 | 9.100000 | 568.000000 | 14.100000 | 195.000000 | 249.000000 | 1089.000000 | 27.100000 | 970.000000 | 24.100000 | 707.000000 | 17.600000 | 1237.000000 | 30.800000 | 1707.000000 | 42.400000 | 2315.000000 | 57.600000 | 904.285714 | 71.057143 | 66.014286 | 92.857143 | 33.900000 | 47.814286 | 32.085714 | 45.071429 | 5.100000 | 7.200000 | 18.571429 | 8.657143 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11230.00000 | 4021.00000 | Traditional | Chinese, French, Italian, Russian, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 805.000000 | 245.000000 | 7.000000 | 1600 Avenue\nL Brooklyn, NY 11230\n(40.6205043... | 14.000000 | 44.000000 | 40.620504 | -73.959234 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 89.000000 | 93.000000 | 34.000000 | 3436.000000 | 192.000000 | 1290.000000 | 8.100000 | 7.400000 | 7.600000 | 7.600000 | 7.500000 | 7.300000 | 7.700000 | 8.000000 | 7.000000 | 6.000000 | 6.800000 | 7.300000 | 7.500000 | 6.900000 | 7.400000 | 7.600000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
357 | 21K540 | JOHN DEWEY HIGH SCHOOL | 448.0 | 404.0 | 468.0 | 390.0 | 1262.0 | 0 | 232.0 | 370.0 | 154.0 | 259.904762 | 9.428571 | 23.602381 | 17.238095 | 28.357143 | 20112012.0 | 58.700000 | 2168.000000 | 486.00000 | 770.000000 | 459.000000 | 453.000000 | 425.000000 | 19.600000 | 189.000000 | 8.700000 | 61.000000 | 83.000000 | 848.000000 | 39.100000 | 663.000000 | 30.600000 | 414.000000 | 19.100000 | 235.000000 | 10.800000 | 1116.000000 | 51.500000 | 1052.000000 | 48.500000 | 673.000000 | 55.671429 | 47.014286 | 84.585714 | 18.514286 | 33.771429 | 28.485714 | 50.800000 | 8.671429 | 15.457143 | 27.328571 | 13.500000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11223.00000 | 1937.00000 | Traditional | Chinese, French, Italian, Russian, Spanish | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 813.000000 | 305.000000 | 8.000000 | 50 Avenue\nX Brooklyn, NY 11223\n(40.589238098... | 13.000000 | 47.000000 | 40.589238 | -73.981747 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 75.000000 | 94.000000 | 35.000000 | 1879.000000 | 128.000000 | 828.000000 | 7.000000 | 6.700000 | 6.700000 | 7.000000 | 6.400000 | 5.400000 | 6.500000 | 6.700000 | 6.400000 | 5.600000 | 6.500000 | 7.000000 | 6.600000 | 5.900000 | 6.600000 | 6.900000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
358 | 21K559 | LIFE ACADEMY HIGH SCHOOL FOR FILM AND MUSIC | 40.0 | 384.0 | 375.0 | 365.0 | 1124.0 | 0 | 0.0 | 0.0 | 0.0 | 47.000000 | 2.041667 | 23.408333 | 22.541667 | 24.250000 | 20112012.0 | 72.000000 | 251.000000 | 81.00000 | 84.000000 | 35.000000 | 51.000000 | 12.000000 | 4.800000 | 51.000000 | 20.300000 | 40.000000 | 6.000000 | 12.000000 | 4.800000 | 112.000000 | 44.600000 | 75.000000 | 29.900000 | 51.000000 | 20.300000 | 128.000000 | 51.000000 | 123.000000 | 49.000000 | 1.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11214.00000 | 260.00000 | Traditional | Spanish | No courses | Biology, English Literature and Composition, E... | No courses | 815.000000 | 300.000000 | 1.000000 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.000000 | 47.000000 | 40.593594 | -73.984729 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 47.000000 | 76.000000 | 20.000000 | 98.000000 | 13.000000 | 40.000000 | 8.100000 | 7.300000 | 7.400000 | 7.400000 | 6.000000 | 4.300000 | 5.400000 | 6.800000 | 6.200000 | 6.400000 | 6.400000 | 7.000000 | 6.800000 | 6.000000 | 6.400000 | 7.100000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
359 | 21K572 | EXPEDITIONARY LEARNING SCHOOL FOR COMMUNITY LE... | 40.0 | 353.0 | 370.0 | 356.0 | 1079.0 | 0 | 0.0 | 0.0 | 0.0 | 38.653846 | 1.961538 | 22.030769 | 20.076923 | 23.423077 | 20112012.0 | 64.400000 | 226.000000 | 64.00000 | 79.000000 | 47.000000 | 36.000000 | 49.000000 | 21.700000 | 37.000000 | 16.400000 | 30.000000 | 3.000000 | 44.000000 | 19.500000 | 44.000000 | 19.500000 | 93.000000 | 41.200000 | 44.000000 | 19.500000 | 116.000000 | 51.300000 | 110.000000 | 48.700000 | 2.250000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11214.00000 | 276.00000 | Traditional | Spanish | Art History, Biology, Calculus AB, Physics B | No courses | No courses | 825.000000 | 315.000000 | 1.000000 | 2630 Benson Avenue\nBrooklyn, NY 11214\n(40.59... | 13.000000 | 47.000000 | 40.593594 | -73.984729 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 72.000000 | 24.000000 | 135.000000 | 13.000000 | 45.000000 | 8.500000 | 8.100000 | 7.700000 | 8.200000 | 7.400000 | 7.200000 | 7.400000 | 8.400000 | 6.400000 | 5.900000 | 6.100000 | 6.800000 | 7.400000 | 7.100000 | 7.100000 | 7.800000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
360 | 21K620 | WILLIAM E. GRADY CAREER AND TECHNICAL EDUCATIO... | 95.0 | 394.0 | 414.0 | 376.0 | 1184.0 | 0 | 0.0 | 0.0 | 0.0 | 130.150000 | 5.400000 | 22.215000 | 18.675000 | 25.325000 | 20112012.0 | 74.300000 | 956.000000 | 284.00000 | 277.000000 | 186.000000 | 209.000000 | 30.000000 | 3.100000 | 217.000000 | 22.700000 | 64.000000 | 100.000000 | 31.000000 | 3.200000 | 716.000000 | 74.900000 | 134.000000 | 14.000000 | 66.000000 | 6.900000 | 746.000000 | 78.000000 | 210.000000 | 22.000000 | 284.000000 | 43.428571 | 29.614286 | 67.585714 | 3.171429 | 7.514286 | 26.428571 | 60.085714 | 13.871429 | 32.542857 | 33.657143 | 19.471429 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11235.00000 | 636.00000 | CTE School | Spanish | Biology, English Language and Composition, Eng... | No courses | No courses | 800.000000 | 330.000000 | 6.000000 | 25 Brighton 4Th Road\nBrooklyn, NY 11235\n(40.... | 13.000000 | 48.000000 | 40.582548 | -73.963716 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 65.000000 | 100.000000 | 18.000000 | 700.000000 | 84.000000 | 186.000000 | 7.100000 | 7.200000 | 7.100000 | 7.200000 | 8.300000 | 8.300000 | 8.400000 | 8.800000 | 5.500000 | 5.500000 | 6.200000 | 6.900000 | 7.000000 | 7.000000 | 7.200000 | 7.600000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
361 | 21K690 | BROOKLYN STUDIO SECONDARY SCHOOL | 119.0 | 429.0 | 449.0 | 435.0 | 1313.0 | 0 | 39.0 | 43.0 | 13.0 | 96.885714 | 3.457143 | 27.820000 | 23.228571 | 31.514286 | 20112012.0 | 49.900000 | 876.000000 | 197.00000 | 184.000000 | 140.000000 | 118.000000 | 74.000000 | 8.400000 | 164.000000 | 18.700000 | 117.000000 | 3.000000 | 112.000000 | 12.800000 | 63.000000 | 7.200000 | 202.000000 | 23.100000 | 495.000000 | 56.500000 | 439.000000 | 50.100000 | 437.000000 | 49.900000 | 138.000000 | 62.257143 | 49.900000 | 80.057143 | 16.985714 | 27.371429 | 32.928571 | 52.685714 | 12.342857 | 19.942857 | 18.971429 | 14.842857 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11214.00000 | 902.00000 | Traditional | Italian, Spanish | English Literature and Composition, United Sta... | No courses | No courses | 800.000000 | 230.000000 | 3.000000 | 8310 21St Avenue\nBrooklyn, NY 11214\n(40.6048... | 11.000000 | 47.000000 | 40.604877 | -73.994417 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 94.000000 | 74.000000 | 31.000000 | 797.000000 | 43.000000 | 234.000000 | 8.100000 | 7.300000 | 7.400000 | 7.700000 | 6.400000 | 5.400000 | 6.100000 | 6.300000 | 6.500000 | 5.900000 | 6.700000 | 7.100000 | 7.000000 | 6.200000 | 6.700000 | 7.000000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
362 | 21K728 | LIBERATION DIPLOMA PLUS | 10.0 | 411.0 | 369.0 | 373.0 | 1153.0 | 0 | 0.0 | 0.0 | 0.0 | 39.428571 | 2.428571 | 15.400000 | 13.714286 | 17.000000 | 20112012.0 | 82.300000 | 191.000000 | 27.00000 | 101.000000 | 21.000000 | 42.000000 | 3.000000 | 1.600000 | 12.000000 | 6.300000 | 0.000000 | 1.000000 | 5.000000 | 2.600000 | 84.000000 | 44.000000 | 72.000000 | 37.700000 | 29.000000 | 15.200000 | 80.000000 | 41.900000 | 111.000000 | 58.100000 | 45.833333 | 24.400000 | 10.850000 | 45.300000 | 0.000000 | 0.000000 | 10.850000 | 45.300000 | 13.550000 | 54.700000 | 67.175000 | 7.200000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.593596 | -73.978465 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 91.000000 | 41.000000 | 121.000000 | 10.000000 | 66.000000 | 9.000000 | 8.500000 | 8.400000 | 8.900000 | 7.100000 | 5.700000 | 6.700000 | 7.500000 | 7.700000 | 6.300000 | 7.300000 | 7.800000 | 8.000000 | 6.800000 | 7.500000 | 8.000000 | 21 | DISTRICT 21 | 90.50 | 34342 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
363 | 22K405 | MIDWOOD HIGH SCHOOL | 824.0 | 478.0 | 519.0 | 476.0 | 1473.0 | 0 | 745.0 | 1223.0 | 758.0 | 415.933333 | 13.311111 | 26.246667 | 21.333333 | 27.955556 | 20112012.0 | 41.200000 | 3842.000000 | 930.00000 | 1097.000000 | 914.000000 | 901.000000 | 141.000000 | 3.700000 | 198.000000 | 5.200000 | 79.000000 | 68.000000 | 1216.000000 | 31.700000 | 1352.000000 | 35.200000 | 449.000000 | 11.700000 | 813.000000 | 21.200000 | 1739.000000 | 45.300000 | 2103.000000 | 54.700000 | 862.285714 | 82.771429 | 75.900000 | 91.642857 | 51.500000 | 62.171429 | 24.400000 | 29.457143 | 6.871429 | 8.357143 | 13.342857 | 3.257143 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11210.00000 | 3877.00000 | Traditional | French, Latin, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 845.000000 | 330.000000 | 4.000000 | 2839 Bedford Avenue\nBrooklyn, NY 11210\n(40.6... | 14.000000 | 45.000000 | 40.633335 | -73.952916 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 85.000000 | 95.000000 | 75.000000 | 3330.000000 | 178.000000 | 2804.000000 | 7.400000 | 6.500000 | 6.900000 | 7.200000 | 7.400000 | 7.100000 | 7.300000 | 7.800000 | 6.500000 | 5.400000 | 6.200000 | 7.100000 | 7.100000 | 6.300000 | 6.800000 | 7.400000 | 22 | DISTRICT 22 | 92.57 | 36352 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
364 | 22K425 | JAMES MADISON HIGH SCHOOL | 518.0 | 436.0 | 475.0 | 439.0 | 1350.0 | 0 | 323.0 | 463.0 | 188.0 | 399.972222 | 13.194444 | 26.275000 | 19.638889 | 28.944444 | 20112012.0 | 58.300000 | 3076.000000 | 851.00000 | 975.000000 | 608.000000 | 642.000000 | 406.000000 | 13.200000 | 381.000000 | 12.400000 | 180.000000 | 118.000000 | 640.000000 | 20.800000 | 550.000000 | 17.900000 | 447.000000 | 14.500000 | 1428.000000 | 46.400000 | 1674.000000 | 54.400000 | 1402.000000 | 45.600000 | 1016.857143 | 65.557143 | 56.542857 | 86.228571 | 24.800000 | 37.985714 | 31.728571 | 48.257143 | 9.042857 | 13.800000 | 18.042857 | 15.414286 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11229.00000 | 3055.00000 | Traditional | Chinese, French, Italian, Russian, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 810.000000 | 248.000000 | 3.000000 | 3787 Bedford Avenue\nBrooklyn, NY 11229\n(40.6... | 15.000000 | 48.000000 | 40.609758 | -73.948452 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | 86.000000 | 65.000000 | 34.000000 | 2681.000000 | 106.000000 | 998.000000 | 8.000000 | 7.500000 | 7.700000 | 7.900000 | 8.200000 | 7.800000 | 8.000000 | 8.400000 | 6.500000 | 6.000000 | 6.700000 | 7.300000 | 7.600000 | 7.100000 | 7.500000 | 7.900000 | 22 | DISTRICT 22 | 92.57 | 36352 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
365 | 22K495 | SHEEPSHEAD BAY HIGH SCHOOL | 236.0 | 383.0 | 392.0 | 370.0 | 1145.0 | 0 | 37.0 | 59.0 | 27.0 | 189.659091 | 7.568182 | 22.179545 | 17.159091 | 25.704545 | 20112012.0 | 53.100000 | 1928.000000 | 575.00000 | 554.000000 | 346.000000 | 453.000000 | 419.000000 | 21.700000 | 252.000000 | 13.100000 | 87.000000 | 122.000000 | 231.000000 | 12.000000 | 1192.000000 | 61.800000 | 305.000000 | 15.800000 | 195.000000 | 10.100000 | 1025.000000 | 53.200000 | 903.000000 | 46.800000 | 676.285714 | 52.285714 | 30.685714 | 58.171429 | 7.857143 | 15.200000 | 22.814286 | 42.971429 | 21.642857 | 41.828571 | 26.785714 | 17.742857 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.618285 | -73.952288 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 71.000000 | 11.000000 | 1759.000000 | 97.000000 | 204.000000 | 7.400000 | 6.900000 | 7.100000 | 7.200000 | 6.600000 | 6.400000 | 7.000000 | 7.200000 | 5.700000 | 5.500000 | 6.400000 | 6.900000 | 6.600000 | 6.300000 | 6.800000 | 7.100000 | 22 | DISTRICT 22 | 92.57 | 36352 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
366 | 22K535 | LEON M. GOLDSTEIN HIGH SCHOOL FOR THE SCIENCES | 259.0 | 524.0 | 561.0 | 542.0 | 1627.0 | 0 | 367.0 | 575.0 | 382.0 | 178.296296 | 5.629630 | 31.218519 | 28.074074 | 32.629630 | 20112012.0 | 29.000000 | 1022.000000 | 254.00000 | 247.000000 | 257.000000 | 264.000000 | 5.000000 | 0.500000 | 75.000000 | 7.300000 | 37.000000 | 0.000000 | 138.000000 | 13.500000 | 96.000000 | 9.400000 | 110.000000 | 10.800000 | 670.000000 | 65.600000 | 421.000000 | 41.200000 | 601.000000 | 58.800000 | 220.571429 | 85.342857 | 71.000000 | 81.842857 | 35.485714 | 38.728571 | 35.514286 | 43.100000 | 14.385714 | 18.157143 | 10.371429 | 3.885714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11235.00000 | 1046.00000 | Traditional | Italian, Spanish | Biology, Calculus AB, Calculus BC, English Lit... | No courses | No courses | 815.000000 | 230.000000 | 1.000000 | 1830 Shore Boulevard\nBrooklyn, NY 11235\n(40.... | 15.000000 | 48.000000 | 40.580847 | -73.936089 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 90.000000 | 30.000000 | 933.000000 | 44.000000 | 295.000000 | 8.800000 | 7.200000 | 7.600000 | 7.600000 | 8.100000 | 6.400000 | 6.700000 | 7.800000 | 7.600000 | 6.300000 | 7.100000 | 7.600000 | 8.200000 | 6.600000 | 7.100000 | 7.700000 | 22 | DISTRICT 22 | 92.57 | 36352 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
367 | 22K555 | BROOKLYN COLLEGE ACADEMY | 131.0 | 456.0 | 456.0 | 440.0 | 1352.0 | 0 | 0.0 | 0.0 | 0.0 | 132.294118 | 5.000000 | 26.270588 | 18.411765 | 32.176471 | 20112012.0 | 48.400000 | 630.000000 | 161.00000 | 148.000000 | 140.000000 | 121.000000 | 1.000000 | 0.200000 | 11.000000 | 1.700000 | 0.000000 | 0.000000 | 37.000000 | 5.900000 | 491.000000 | 77.900000 | 78.000000 | 12.400000 | 17.000000 | 2.700000 | 229.000000 | 36.300000 | 401.000000 | 63.700000 | 124.000000 | 91.257143 | 76.857143 | 83.842857 | 19.214286 | 21.114286 | 57.628571 | 62.742857 | 14.528571 | 16.300000 | 7.171429 | 1.014286 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11218.00000 | 618.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 350 Coney Island Avenue\nBrooklyn, NY 11218\n(... | 7.000000 | 39.000000 | 40.649201 | -73.971695 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 98.000000 | 100.000000 | 56.000000 | 605.000000 | 30.000000 | 328.000000 | 9.000000 | 8.100000 | 7.900000 | 8.400000 | 9.000000 | 8.300000 | 8.400000 | 8.800000 | 7.500000 | 6.500000 | 7.100000 | 8.000000 | 8.500000 | 7.600000 | 7.800000 | 8.400000 | 22 | DISTRICT 22 | 92.57 | 36352 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
368 | 23K493 | BROOKLYN COLLEGIATE: A COLLEGE BOARD SCHOOL | 60.0 | 389.0 | 409.0 | 387.0 | 1185.0 | 0 | 15.0 | 16.0 | 0.0 | 71.521739 | 3.304348 | 18.939130 | 14.826087 | 22.434783 | 20112012.0 | 74.500000 | 580.000000 | 148.00000 | 85.000000 | 70.000000 | 71.000000 | 9.000000 | 1.600000 | 70.000000 | 12.100000 | 8.000000 | 27.000000 | 11.000000 | 1.900000 | 511.000000 | 88.100000 | 48.000000 | 8.300000 | 3.000000 | 0.500000 | 294.000000 | 50.700000 | 286.000000 | 49.300000 | 45.000000 | 69.025000 | 40.725000 | 59.675000 | 3.700000 | 5.375000 | 37.025000 | 54.300000 | 28.300000 | 40.325000 | 23.950000 | 4.325000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11233.00000 | 387.00000 | Traditional | French, Spanish | Biology, English Literature and Composition, S... | No courses | No courses | 830.000000 | 245.000000 | 1.000000 | 2021 Bergen Street\nBrooklyn, NY 11233\n(40.67... | 16.000000 | 41.000000 | 40.674137 | -73.913494 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 81.000000 | 57.000000 | 12.000000 | 469.000000 | 21.000000 | 63.000000 | 7.700000 | 7.400000 | 7.600000 | 7.300000 | 7.400000 | 7.000000 | 7.400000 | 7.700000 | 6.100000 | 5.800000 | 6.600000 | 7.400000 | 7.100000 | 6.700000 | 7.200000 | 7.500000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
369 | 23K514 | FREDERICK DOUGLASS ACADEMY VII HIGH SCHOOL | 55.0 | 361.0 | 371.0 | 359.0 | 1091.0 | 0 | 39.0 | 40.0 | 0.0 | 69.823529 | 3.029412 | 21.776471 | 19.705882 | 23.529412 | 20112012.0 | 66.900000 | 365.000000 | 127.00000 | 118.000000 | 52.000000 | 68.000000 | 5.000000 | 1.400000 | 74.000000 | 20.300000 | 31.000000 | 21.000000 | 3.000000 | 0.800000 | 323.000000 | 88.500000 | 38.000000 | 10.400000 | 0.000000 | 0.000000 | 177.000000 | 48.500000 | 188.000000 | 51.500000 | 62.833333 | 72.050000 | 49.875000 | 69.325000 | 10.900000 | 15.125000 | 38.950000 | 54.175000 | 22.175000 | 30.675000 | 22.325000 | 4.300000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11212.00000 | 328.00000 | Traditional | Spanish | Art History, English Literature and Compositio... | No courses | No courses | 907.000000 | 327.000000 | 1.000000 | 226 Bristol Street\nBrooklyn, NY 11212\n(40.66... | 16.000000 | 41.000000 | 40.665811 | -73.911700 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 97.000000 | 65.000000 | 300.000000 | 29.000000 | 234.000000 | 7.900000 | 7.600000 | 7.500000 | 7.800000 | 6.900000 | 6.500000 | 6.500000 | 7.200000 | 6.200000 | 6.100000 | 6.700000 | 7.500000 | 7.000000 | 6.800000 | 6.900000 | 7.500000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
370 | 23K643 | BROOKLYN DEMOCRACY ACADEMY | 11.0 | 349.0 | 338.0 | 331.0 | 1018.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 62.300000 | 205.000000 | 47.00000 | 39.000000 | 56.000000 | 63.000000 | 5.000000 | 2.400000 | 33.000000 | 16.100000 | 23.000000 | 4.000000 | 3.000000 | 1.500000 | 176.000000 | 85.900000 | 24.000000 | 11.700000 | 1.000000 | 0.500000 | 98.000000 | 47.800000 | 107.000000 | 52.200000 | 83.333333 | 20.700000 | 10.066667 | 62.533333 | 0.000000 | 0.000000 | 10.066667 | 62.533333 | 10.633333 | 37.466667 | 68.000000 | 9.900000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.668586 | -73.912298 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 64.000000 | 81.000000 | 17.000000 | 116.000000 | 13.000000 | 31.000000 | 9.100000 | 8.500000 | 8.200000 | 9.000000 | 7.600000 | 7.700000 | 8.400000 | 8.700000 | 7.900000 | 6.900000 | 7.700000 | 8.300000 | 8.200000 | 7.700000 | 8.100000 | 8.700000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
371 | 23K646 | ASPIRATIONS DIPLOMA PLUS HIGH SCHOOL | 7.0 | 311.0 | 371.0 | 311.0 | 993.0 | 0 | 0.0 | 0.0 | 0.0 | 54.181818 | 2.727273 | 19.418182 | 17.090909 | 21.545455 | 20112012.0 | 72.500000 | 275.000000 | 53.00000 | 94.000000 | 33.000000 | 95.000000 | 6.000000 | 2.200000 | 20.000000 | 7.300000 | 13.000000 | 1.000000 | 4.000000 | 1.500000 | 214.000000 | 77.800000 | 55.000000 | 20.000000 | 1.000000 | 0.400000 | 127.000000 | 46.200000 | 148.000000 | 53.800000 | 95.666667 | 11.033333 | 5.266667 | 51.433333 | 0.000000 | 0.000000 | 5.266667 | 51.433333 | 5.766667 | 48.633333 | 64.766667 | 21.900000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.668586 | -73.912298 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 52.000000 | 79.000000 | 23.000000 | 108.000000 | 15.000000 | 48.000000 | 8.700000 | 7.700000 | 7.800000 | 8.400000 | 6.000000 | 4.700000 | 6.300000 | 6.800000 | 7.300000 | 6.400000 | 7.200000 | 7.700000 | 7.300000 | 6.300000 | 7.100000 | 7.600000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
372 | 23K647 | METROPOLITAN DIPLOMA PLUS HIGH SCHOOL | 17.0 | 350.0 | 346.0 | 332.0 | 1028.0 | 0 | 0.0 | 0.0 | 0.0 | 50.250000 | 2.125000 | 22.443750 | 21.062500 | 23.562500 | 20112012.0 | 72.100000 | 181.000000 | 32.00000 | 65.000000 | 37.000000 | 47.000000 | 2.000000 | 1.100000 | 16.000000 | 8.800000 | 12.000000 | 1.000000 | 0.000000 | 0.000000 | 156.000000 | 86.200000 | 25.000000 | 13.800000 | 0.000000 | 0.000000 | 88.000000 | 48.600000 | 93.000000 | 51.400000 | 83.000000 | 19.800000 | 10.566667 | 59.100000 | 0.000000 | 0.000000 | 10.566667 | 59.100000 | 9.166667 | 40.900000 | 63.966667 | 12.200000 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.668586 | -73.912298 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 50.000000 | 31.000000 | 151.000000 | 8.000000 | 60.000000 | 8.600000 | 8.300000 | 8.000000 | 8.600000 | 6.300000 | 5.400000 | 6.800000 | 7.500000 | 7.400000 | 7.000000 | 7.500000 | 8.100000 | 7.500000 | 6.900000 | 7.400000 | 8.000000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
373 | 23K697 | TEACHERS PREPARATORY HIGH SCHOOL | 69.0 | 392.0 | 416.0 | 388.0 | 1196.0 | 0 | 33.0 | 37.0 | 0.0 | 149.375000 | 5.937500 | 25.106250 | 18.125000 | 30.812500 | 20112012.0 | 69.800000 | 566.000000 | 138.00000 | 118.000000 | 87.000000 | 79.000000 | 10.000000 | 1.800000 | 62.000000 | 11.000000 | 3.000000 | 35.000000 | 4.000000 | 0.700000 | 480.000000 | 84.800000 | 74.000000 | 13.100000 | 7.000000 | 1.200000 | 193.000000 | 34.100000 | 373.000000 | 65.900000 | 93.500000 | 74.966667 | 56.066667 | 74.733333 | 14.450000 | 19.300000 | 41.650000 | 55.400000 | 18.900000 | 25.266667 | 15.500000 | 5.016667 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11212.00000 | 458.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 820.000000 | 240.000000 | 2.000000 | 226 Bristol Street\nBrooklyn, NY 11212\n(40.66... | 16.000000 | 41.000000 | 40.665811 | -73.911700 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 67.000000 | 45.000000 | 492.000000 | 26.000000 | 228.000000 | 8.100000 | 7.600000 | 7.600000 | 8.000000 | 6.800000 | 5.800000 | 6.100000 | 7.200000 | 6.400000 | 6.300000 | 7.000000 | 7.800000 | 7.100000 | 6.600000 | 6.900000 | 7.700000 | 23 | DISTRICT 23 | 86.98 | 11833 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
374 | 24Q264 | ACADEMY OF FINANCE AND ENTERPRISE | 89.0 | 405.0 | 454.0 | 421.0 | 1280.0 | 0 | 95.0 | 137.0 | 40.0 | 89.666667 | 3.566667 | 26.750000 | 22.666667 | 31.133333 | 20112012.0 | 62.800000 | 420.000000 | 112.00000 | 112.000000 | 106.000000 | 90.000000 | 33.000000 | 7.900000 | 41.000000 | 9.800000 | 28.000000 | 2.000000 | 75.000000 | 17.900000 | 41.000000 | 9.800000 | 237.000000 | 56.400000 | 64.000000 | 15.200000 | 207.000000 | 49.300000 | 213.000000 | 50.700000 | 66.750000 | 88.966667 | 86.300000 | 96.966667 | 44.033333 | 49.400000 | 42.266667 | 47.633333 | 2.666667 | 3.033333 | 8.033333 | 2.266667 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 467.00000 | Traditional | Spanish | Calculus AB, Chemistry, English Language and C... | No courses | No courses | 815.000000 | 315.000000 | 1.000000 | 30 20 Thomson Avenue\nLong Island City, NY 111... | 2.000000 | 26.000000 | 40.745094 | -73.936814 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 96.000000 | 81.000000 | 400.000000 | 24.000000 | 332.000000 | 8.900000 | 7.900000 | 7.800000 | 8.200000 | 7.100000 | 5.900000 | 6.100000 | 7.200000 | 7.300000 | 6.500000 | 6.900000 | 7.900000 | 7.800000 | 6.800000 | 6.900000 | 7.800000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
375 | 24Q267 | HIGH SCHOOL OF APPLIED COMMUNICATION | 39.0 | 406.0 | 413.0 | 400.0 | 1219.0 | 0 | 46.0 | 48.0 | 0.0 | 55.043478 | 2.478261 | 23.708696 | 20.130435 | 27.478261 | 20112012.0 | 66.900000 | 388.000000 | 129.00000 | 108.000000 | 79.000000 | 72.000000 | 40.000000 | 10.300000 | 63.000000 | 16.200000 | 30.000000 | 2.000000 | 54.000000 | 13.900000 | 50.000000 | 12.900000 | 222.000000 | 57.200000 | 62.000000 | 16.000000 | 170.000000 | 43.800000 | 218.000000 | 56.200000 | 79.000000 | 79.766667 | 61.400000 | 76.833333 | 14.933333 | 18.700000 | 46.500000 | 58.100000 | 18.366667 | 23.166667 | 17.366667 | 2.600000 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 421.00000 | Traditional | Spanish | Biology, English Literature and Composition, E... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 30 20 Thomson Avenue\nLong Island City, NY 111... | 2.000000 | 26.000000 | 40.745094 | -73.936814 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 100.000000 | 32.000000 | 330.000000 | 25.000000 | 109.000000 | 8.500000 | 7.900000 | 7.800000 | 7.900000 | 8.600000 | 7.900000 | 8.500000 | 8.900000 | 6.800000 | 6.200000 | 6.500000 | 7.300000 | 8.000000 | 7.400000 | 7.600000 | 8.000000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
376 | 24Q293 | CIVIC LEADERSHIP ACADEMY | 69.0 | 404.0 | 429.0 | 407.0 | 1240.0 | 0 | 0.0 | 0.0 | 0.0 | 86.608696 | 3.565217 | 25.373913 | 22.043478 | 28.782609 | 20112012.0 | 71.000000 | 449.000000 | 150.00000 | 107.000000 | 102.000000 | 90.000000 | 41.000000 | 9.100000 | 83.000000 | 18.500000 | 43.000000 | 4.000000 | 35.000000 | 7.800000 | 41.000000 | 9.100000 | 356.000000 | 79.300000 | 15.000000 | 3.300000 | 200.000000 | 44.500000 | 249.000000 | 55.500000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Elmhurst | 11373.00000 | 453.00000 | Traditional | Spanish | English Literature and Composition, United Sta... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 45 10 94Th Street\nElmhurst, NY 11373\n(40.743... | 4.000000 | 25.000000 | 40.743303 | -73.870575 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 96.000000 | 50.000000 | 295.000000 | 24.000000 | 158.000000 | 8.700000 | 8.100000 | 8.000000 | 8.200000 | 7.000000 | 5.500000 | 5.800000 | 7.100000 | 7.300000 | 6.700000 | 7.400000 | 7.800000 | 7.700000 | 6.800000 | 7.100000 | 7.700000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
377 | 24Q296 | PAN AMERICAN INTERNATIONAL HIGH SCHOOL | 55.0 | 317.0 | 323.0 | 311.0 | 951.0 | 0 | 0.0 | 0.0 | 0.0 | 116.066667 | 6.933333 | 19.726667 | 16.266667 | 23.933333 | 20112012.0 | 78.300000 | 366.000000 | 94.00000 | 84.000000 | 83.000000 | 105.000000 | 334.000000 | 91.300000 | 3.000000 | 0.800000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 366.000000 | 100.000000 | 0.000000 | 0.000000 | 175.000000 | 47.800000 | 191.000000 | 52.200000 | 1.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Elmhurst | 11373.00000 | 367.00000 | International School | Spanish Native Language Arts | No courses | No courses | No courses | 830.000000 | 315.000000 | 1.000000 | 45 10 94Th Street\nElmhurst, NY 11373\n(40.743... | 4.000000 | 25.000000 | 40.743303 | -73.870575 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 100.000000 | 42.000000 | 294.000000 | 23.000000 | 131.000000 | 8.800000 | 8.700000 | 8.200000 | 8.400000 | 6.400000 | 6.100000 | 6.900000 | 6.800000 | 7.300000 | 6.100000 | 7.000000 | 7.600000 | 7.500000 | 7.000000 | 7.400000 | 7.600000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
378 | 24Q299 | BARD HIGH SCHOOL EARLY COLLEGE II | 155.0 | 545.0 | 568.0 | 550.0 | 1663.0 | 0 | 0.0 | 0.0 | 0.0 | 176.571429 | 8.571429 | 20.471429 | 16.071429 | 24.000000 | 20112012.0 | 39.200000 | 631.000000 | 177.00000 | 137.000000 | 138.000000 | 179.000000 | 2.000000 | 0.300000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 202.000000 | 32.000000 | 102.000000 | 16.200000 | 134.000000 | 21.200000 | 191.000000 | 30.300000 | 248.000000 | 39.300000 | 383.000000 | 60.700000 | 34.333333 | 96.000000 | 96.000000 | 100.000000 | 0.000000 | 0.000000 | 96.000000 | 100.000000 | 0.000000 | 0.000000 | 2.000000 | 0.000000 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 600.00000 | Traditional | Arabic, Chinese (Mandarin), Latin, Spanish | No courses | No courses | No courses | 900.000000 | 320.000000 | 1.000000 | 30 20 Thomson Avenue\nLong Island City, NY 111... | 2.000000 | 26.000000 | 40.745094 | -73.936814 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 88.000000 | 71.000000 | 42.000000 | 460.000000 | 25.000000 | 214.000000 | 8.900000 | 8.000000 | 7.900000 | 8.500000 | 8.600000 | 6.200000 | 7.300000 | 8.200000 | 7.900000 | 6.800000 | 7.400000 | 8.400000 | 8.500000 | 7.000000 | 7.500000 | 8.400000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
379 | 24Q455 | NEWTOWN HIGH SCHOOL | 320.0 | 383.0 | 440.0 | 380.0 | 1203.0 | 0 | 174.0 | 200.0 | 117.0 | 251.230769 | 9.307692 | 23.335897 | 19.179487 | 26.333333 | 20112012.0 | 56.200000 | 2572.000000 | 616.00000 | 729.000000 | 564.000000 | 663.000000 | 771.000000 | 30.000000 | 265.000000 | 10.300000 | 69.000000 | 112.000000 | 632.000000 | 24.600000 | 240.000000 | 9.300000 | 1552.000000 | 60.300000 | 137.000000 | 5.300000 | 1479.000000 | 57.500000 | 1093.000000 | 42.500000 | 887.857143 | 47.785714 | 30.157143 | 63.185714 | 11.800000 | 24.842857 | 18.357143 | 38.314286 | 17.642857 | 36.842857 | 30.685714 | 18.771429 | Queens | 9.000000 | 12.0 | Elmhurst | 11373.00000 | 2074.00000 | Traditional | Chinese, Chinese Native Language Arts, French,... | Biology, Calculus AB, Calculus BC, Chinese Lan... | No courses | No courses | 800.000000 | 330.000000 | 4.000000 | 48 01 90 Street\nElmhurst, NY 11373\n(40.74120... | 4.000000 | 25.000000 | 40.741205 | -73.874730 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 74.000000 | 70.000000 | 24.000000 | 2076.000000 | 107.000000 | 630.000000 | 7.400000 | 7.100000 | 7.100000 | 7.200000 | 7.200000 | 7.000000 | 7.300000 | 7.800000 | 6.400000 | 5.900000 | 6.400000 | 7.100000 | 7.000000 | 6.600000 | 6.900000 | 7.400000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
380 | 24Q457 | YOUNG ADULT BOROUGH CENTER AT ARTS AND BUSINES... | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.740621 | -73.911518 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 44.000000 | 83.000000 | 16.000000 | 86.000000 | 30.000000 | 31.000000 | 8.900000 | 7.900000 | 7.800000 | 8.400000 | 8.600000 | 7.900000 | 8.200000 | 8.200000 | 8.000000 | 6.500000 | 7.600000 | 7.900000 | 8.500000 | 7.400000 | 7.900000 | 8.200000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
381 | 24Q485 | GROVER CLEVELAND HIGH SCHOOL | 241.0 | 395.0 | 420.0 | 396.0 | 1211.0 | 0 | 200.0 | 274.0 | 112.0 | 296.028571 | 11.942857 | 22.957143 | 18.400000 | 27.057143 | 20112012.0 | 41.400000 | 2069.000000 | 478.00000 | 591.000000 | 514.000000 | 486.000000 | 446.000000 | 21.600000 | 263.000000 | 12.700000 | 40.000000 | 122.000000 | 189.000000 | 9.100000 | 91.000000 | 4.400000 | 1313.000000 | 63.500000 | 469.000000 | 22.700000 | 1138.000000 | 55.000000 | 931.000000 | 45.000000 | 702.142857 | 52.742857 | 30.671429 | 57.985714 | 11.114286 | 21.285714 | 19.571429 | 36.700000 | 22.071429 | 42.014286 | 23.342857 | 20.442857 | Queens | 9.000000 | 12.0 | Ridgewood | 11385.00000 | 1869.00000 | Traditional | Italian, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 830.000000 | 315.000000 | 6.000000 | 21 27 Himrod Street\nRidgewood, NY 11385\n(40.... | 5.000000 | 30.000000 | 40.711222 | -73.908652 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 56.000000 | 76.000000 | 15.000000 | 1260.000000 | 106.000000 | 302.000000 | 7.600000 | 7.400000 | 7.200000 | 7.500000 | 7.900000 | 7.800000 | 8.000000 | 8.400000 | 6.400000 | 5.700000 | 6.500000 | 7.200000 | 7.300000 | 6.900000 | 7.200000 | 7.700000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
382 | 24Q520 | MIDDLE COLLEGE HIGH SCHOOL AT LAGUARDIA COMMUN... | 58.0 | 399.0 | 393.0 | 385.0 | 1177.0 | 0 | 0.0 | 0.0 | 0.0 | 53.952381 | 2.761905 | 19.628571 | 17.857143 | 21.238095 | 20112012.0 | 58.900000 | 497.000000 | 124.00000 | 121.000000 | 89.000000 | 163.000000 | 1.000000 | 0.200000 | 65.000000 | 13.100000 | 39.000000 | 0.000000 | 39.000000 | 7.800000 | 47.000000 | 9.500000 | 355.000000 | 71.400000 | 56.000000 | 11.300000 | 263.000000 | 52.900000 | 234.000000 | 47.100000 | 94.714286 | 56.842857 | 42.942857 | 69.471429 | 0.000000 | 0.000000 | 42.942857 | 69.471429 | 13.885714 | 30.528571 | 32.885714 | 8.971429 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 495.00000 | Consortium School | American Sign Language | No courses | No courses | No courses | 800.000000 | 155.000000 | 1.000000 | 45 35 Van Dam Street\nLong Island City, NY 111... | 2.000000 | 26.000000 | 40.744150 | -73.933627 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 70.000000 | 73.000000 | 37.000000 | 321.000000 | 22.000000 | 168.000000 | 8.400000 | 7.400000 | 7.300000 | 7.500000 | 7.200000 | 5.200000 | 5.900000 | 6.200000 | 7.300000 | 6.100000 | 6.800000 | 7.400000 | 7.600000 | 6.200000 | 6.600000 | 7.100000 | 24 | DISTRICT 24 | 92.21 | 52936 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
383 | 24Q530 | INTERNATIONAL HIGH SCHOOL AT LAGUARDIA COMMUNI... | 69.0 | 326.0 | 409.0 | 329.0 | 1064.0 | 0 | 0.0 | 0.0 | 0.0 | 109.384615 | 6.846154 | 17.007692 | 14.307692 | 20.461538 | 20112012.0 | 75.700000 | 493.000000 | 115.00000 | 114.000000 | 125.000000 | 139.000000 | 377.000000 | 76.500000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 212.000000 | 43.000000 | 10.000000 | 2.000000 | 217.000000 | 44.000000 | 51.000000 | 10.300000 | 227.000000 | 46.000000 | 266.000000 | 54.000000 | 103.571429 | 57.414286 | 42.385714 | 69.457143 | 0.000000 | 0.000000 | 42.385714 | 69.457143 | 15.014286 | 30.542857 | 36.014286 | 6.471429 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 503.00000 | Consortium, International School | American Sign Language, Arabic, Bengali, Chine... | Biology, Calculus AB, Chemistry, Chinese Langu... | No courses | No courses | 800.000000 | 330.000000 | 1.000000 | 45 35 Van Dam Street\nLong Island City, NY 111... | 2.000000 | 26.000000 | 40.744150 | -73.933627 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 84.000000 | 87.000000 | 48.000000 | 381.000000 | 26.000000 | 201.000000 | 8.900000 | 8.000000 | 7.900000 | 8.400000 | 8.800000 | 6.400000 | 7.800000 | 8.500000 | 8.000000 | 6.900000 | 7.300000 | 7.800000 | 8.600000 | 7.100000 | 7.700000 | 8.200000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
384 | 24Q550 | HIGH SCHOOL FOR ARTS AND BUSINESS | 138.0 | 391.0 | 403.0 | 380.0 | 1174.0 | 0 | 198.0 | 320.0 | 73.0 | 141.851852 | 5.037037 | 28.374074 | 22.777778 | 31.703704 | 20112012.0 | 69.600000 | 828.000000 | 329.00000 | 235.000000 | 132.000000 | 132.000000 | 110.000000 | 13.300000 | 101.000000 | 12.200000 | 56.000000 | 7.000000 | 75.000000 | 9.100000 | 69.000000 | 8.300000 | 656.000000 | 79.200000 | 25.000000 | 3.000000 | 357.000000 | 43.100000 | 471.000000 | 56.900000 | 174.285714 | 60.471429 | 53.728571 | 88.800000 | 9.885714 | 16.057143 | 43.828571 | 72.742857 | 6.742857 | 11.200000 | 28.028571 | 10.042857 | Queens | 9.000000 | 12.0 | Corona | 11368.00000 | 887.00000 | Traditional | French, Italian, Spanish | Art History, English Language and Composition,... | No courses | Chinese, German, Latin | 845.000000 | 400.000000 | 1.000000 | 105 25 Horace Harding Expy N\nCorona, NY 11368... | 4.000000 | 21.000000 | 40.737418 | -73.853306 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 84.000000 | 98.000000 | 30.000000 | 632.000000 | 47.000000 | 218.000000 | 8.500000 | 8.000000 | 7.700000 | 7.900000 | 7.400000 | 6.700000 | 7.300000 | 7.800000 | 7.000000 | 5.500000 | 6.800000 | 7.400000 | 7.600000 | 6.800000 | 7.300000 | 7.700000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
385 | 24Q560 | ROBERT F. WAGNER, JR. SECONDARY SCHOOL FOR ART... | 80.0 | 443.0 | 447.0 | 440.0 | 1330.0 | 0 | 0.0 | 0.0 | 0.0 | 66.281250 | 2.437500 | 27.687500 | 26.343750 | 29.093750 | 20112012.0 | 60.500000 | 601.000000 | 146.00000 | 119.000000 | 109.000000 | 117.000000 | 23.000000 | 3.800000 | 74.000000 | 12.300000 | 46.000000 | 2.000000 | 125.000000 | 20.800000 | 37.000000 | 6.200000 | 375.000000 | 62.400000 | 63.000000 | 10.500000 | 280.000000 | 46.600000 | 321.000000 | 53.400000 | 88.000000 | 63.914286 | 38.785714 | 60.485714 | 2.614286 | 4.071429 | 36.157143 | 56.385714 | 25.142857 | 39.514286 | 25.142857 | 8.600000 | Queens | 7.000000 | 12.0 | Long Island City | 11101.00000 | 631.00000 | Traditional | Spanish | Biology, English Literature and Composition | No courses | No courses | 800.000000 | 300.000000 | 2.000000 | 47 07 30 Place\nLong Island City, NY 11101\n(4... | 2.000000 | 26.000000 | 40.742264 | -73.936876 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 50.000000 | 25.000000 | 478.000000 | 17.000000 | 130.000000 | 8.800000 | 7.300000 | 7.400000 | 7.600000 | 6.400000 | 4.500000 | 5.800000 | 5.900000 | 7.200000 | 6.200000 | 6.500000 | 7.100000 | 7.500000 | 6.000000 | 6.600000 | 6.900000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
386 | 24Q600 | QUEENS VOCATIONAL AND TECHNICAL HIGH SCHOOL | 155.0 | 417.0 | 447.0 | 406.0 | 1270.0 | 0 | 27.0 | 27.0 | 20.0 | 154.585366 | 5.731707 | 24.592683 | 19.707317 | 28.000000 | 20112012.0 | 71.900000 | 1368.000000 | 402.00000 | 398.000000 | 374.000000 | 194.000000 | 88.000000 | 6.400000 | 187.000000 | 13.700000 | 70.000000 | 62.000000 | 140.000000 | 10.200000 | 94.000000 | 6.900000 | 1015.000000 | 74.200000 | 119.000000 | 8.700000 | 825.000000 | 60.300000 | 543.000000 | 39.700000 | 265.714286 | 58.128571 | 40.600000 | 68.857143 | 11.557143 | 21.585714 | 29.042857 | 47.257143 | 17.585714 | 31.242857 | 24.942857 | 14.671429 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 1514.00000 | CTE School | Spanish, Spanish Native Language Arts | European History, Human Geography, Physics B, ... | No courses | No courses | 800.000000 | 430.000000 | 7.000000 | 37 02 47 Avenue\nLong Island City, NY 11101\n(... | 2.000000 | 26.000000 | 40.742189 | -73.928243 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 78.000000 | 18.000000 | 1092.000000 | 69.000000 | 226.000000 | 8.200000 | 7.000000 | 7.000000 | 7.300000 | 8.600000 | 8.100000 | 9.000000 | 8.900000 | 6.600000 | 5.800000 | 6.300000 | 7.200000 | 7.800000 | 6.900000 | 7.400000 | 7.800000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
387 | 24Q610 | AVIATION CAREER & TECHNICAL EDUCATION HIGH SCHOOL | 396.0 | 445.0 | 496.0 | 423.0 | 1364.0 | 0 | 130.0 | 140.0 | 61.0 | 235.485714 | 8.514286 | 22.354286 | 17.600000 | 25.085714 | 20112012.0 | 61.200000 | 2201.000000 | 585.00000 | 534.000000 | 526.000000 | 556.000000 | 71.000000 | 3.200000 | 117.000000 | 5.300000 | 27.000000 | 49.000000 | 597.000000 | 27.100000 | 150.000000 | 6.800000 | 1218.000000 | 55.300000 | 223.000000 | 10.100000 | 1877.000000 | 85.300000 | 324.000000 | 14.700000 | 365.000000 | 70.614286 | 59.757143 | 84.128571 | 31.300000 | 43.185714 | 28.457143 | 40.942857 | 10.857143 | 15.871429 | 24.628571 | 2.471429 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 2231.00000 | CTE School | Spanish | Calculus AB, Chemistry, English Language and C... | No courses | Spanish | 800.000000 | 430.000000 | 2.000000 | 45 30 36 Street\nLong Island City, NY 11101\n(... | 2.000000 | 26.000000 | 40.743594 | -73.929078 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 93.000000 | 87.000000 | 20.000000 | 1932.000000 | 106.000000 | 401.000000 | 8.400000 | 7.100000 | 7.100000 | 7.700000 | 8.500000 | 8.100000 | 8.300000 | 8.700000 | 6.900000 | 5.800000 | 6.400000 | 7.300000 | 7.900000 | 7.000000 | 7.300000 | 7.900000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
388 | 24Q744 | VOYAGES PREPARATORY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 59.100000 | 248.000000 | 204.00000 | 189.191537 | 155.308756 | 44.000000 | 9.000000 | 3.600000 | 15.000000 | 6.000000 | 11.000000 | 0.000000 | 20.000000 | 8.100000 | 57.000000 | 23.000000 | 153.000000 | 61.700000 | 17.000000 | 6.900000 | 125.000000 | 50.400000 | 123.000000 | 49.600000 | 80.333333 | 9.633333 | 5.666667 | 60.400000 | 0.000000 | 0.000000 | 5.666667 | 60.400000 | 4.000000 | 39.600000 | 75.633333 | 11.633333 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.740621 | -73.911518 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 100.000000 | 92.000000 | 208.000000 | 14.000000 | 216.000000 | 9.300000 | 8.400000 | 8.200000 | 8.900000 | 7.300000 | 7.000000 | 7.800000 | 8.400000 | 9.300000 | 9.300000 | 9.000000 | 9.200000 | 8.600000 | 8.200000 | 8.300000 | 8.800000 | 24 | DISTRICT 24 | 92.21 | 52936 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
389 | 25Q252 | QUEENS SCHOOL OF INQUIRY, THE | 58.0 | 455.0 | 498.0 | 443.0 | 1396.0 | 0 | 0.0 | 0.0 | 0.0 | 80.823529 | 3.294118 | 25.223529 | 22.117647 | 28.588235 | 20112012.0 | 41.300000 | 587.000000 | 87.00000 | 81.000000 | 87.000000 | 54.000000 | 16.000000 | 2.700000 | 69.000000 | 11.800000 | 32.000000 | 0.000000 | 236.000000 | 40.200000 | 100.000000 | 17.000000 | 142.000000 | 24.200000 | 106.000000 | 18.100000 | 274.000000 | 46.700000 | 313.000000 | 53.300000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Fresh Meadows | 11366.00000 | 590.00000 | Traditional | Spanish | Biology, Chemistry, Psychology | No courses | No courses | 838.000000 | 257.000000 | 1.000000 | 158 40 76 Road Fresh Meadows\nNY 11366\n(40.72... | 8.000000 | 24.000000 | 40.724523 | -73.809428 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 100.000000 | 100.000000 | 56.000000 | 491.000000 | 33.000000 | 246.000000 | 8.400000 | 7.700000 | 7.500000 | 8.000000 | 7.600000 | 8.300000 | 8.500000 | 9.100000 | 7.000000 | 6.400000 | 7.000000 | 7.700000 | 7.700000 | 7.500000 | 7.700000 | 8.300000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
390 | 25Q263 | FLUSHING INTERNATIONAL HIGH SCHOOL | 45.0 | 314.0 | 417.0 | 318.0 | 1049.0 | 0 | 0.0 | 0.0 | 0.0 | 130.538462 | 7.692308 | 19.192308 | 14.846154 | 27.076923 | 20112012.0 | 84.100000 | 422.000000 | 100.00000 | 116.000000 | 110.000000 | 96.000000 | 374.000000 | 88.600000 | 3.000000 | 0.700000 | 2.000000 | 0.000000 | 272.000000 | 64.500000 | 5.000000 | 1.200000 | 138.000000 | 32.700000 | 7.000000 | 1.700000 | 242.000000 | 57.300000 | 180.000000 | 42.700000 | 89.750000 | 60.825000 | 39.975000 | 65.925000 | 0.000000 | 0.000000 | 39.975000 | 65.925000 | 20.850000 | 34.075000 | 30.475000 | 8.725000 | Queens | 9.000000 | 12.0 | Flushing | 11355.00000 | 412.00000 | International School | No Language Classes | No courses | No courses | No courses | 840.000000 | 330.000000 | 1.000000 | 144 80 Barclay Avenue\nFlushing, NY 11355\n(40... | 7.000000 | 20.000000 | 40.760414 | -73.818376 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 89.000000 | 100.000000 | 69.000000 | 352.000000 | 28.000000 | 255.000000 | 8.000000 | 7.400000 | 7.200000 | 7.600000 | 8.300000 | 7.500000 | 8.300000 | 8.900000 | 7.400000 | 7.000000 | 7.200000 | 7.500000 | 7.900000 | 7.300000 | 7.600000 | 8.000000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
391 | 25Q281 | EASTsWEST SCHOOL OF INTERNATIONAL STUDIES | 59.0 | 416.0 | 463.0 | 392.0 | 1271.0 | 0 | 0.0 | 0.0 | 0.0 | 84.300000 | 2.950000 | 29.575000 | 26.950000 | 32.400000 | 20112012.0 | 53.300000 | 616.000000 | 103.00000 | 96.000000 | 93.000000 | 69.000000 | 84.000000 | 13.600000 | 58.000000 | 9.400000 | 35.000000 | 1.000000 | 386.000000 | 62.700000 | 91.000000 | 14.800000 | 110.000000 | 17.900000 | 21.000000 | 3.400000 | 333.000000 | 54.100000 | 283.000000 | 45.900000 | 50.666667 | 85.300000 | 77.300000 | 90.600000 | 26.700000 | 31.300000 | 50.700000 | 59.400000 | 8.000000 | 9.400000 | 13.300000 | 0.000000 | Queens | 6.000000 | 12.0 | Flushing | 11355.00000 | 643.00000 | Traditional | Chinese (Mandarin), Japanese, Korean | Calculus AB, Computer Science A, English Langu... | No courses | No courses | 750.000000 | 300.000000 | 1.000000 | 46 21 Colden Street\nFlushing, NY 11355\n(40.7... | 7.000000 | 20.000000 | 40.749303 | -73.821808 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 95.000000 | 50.000000 | 45.000000 | 547.000000 | 18.000000 | 240.000000 | 8.400000 | 7.300000 | 7.400000 | 7.500000 | 6.600000 | 3.800000 | 4.400000 | 5.100000 | 6.700000 | 5.800000 | 6.400000 | 7.000000 | 7.200000 | 5.600000 | 6.000000 | 6.500000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
392 | 25Q285 | WORLD JOURNALISM PREPARATORY: A COLLEGE BOARD ... | 63.0 | 471.0 | 489.0 | 481.0 | 1441.0 | 0 | 65.0 | 87.0 | 18.0 | 55.233333 | 2.200000 | 25.580000 | 23.300000 | 27.800000 | 20112012.0 | 33.500000 | 595.000000 | 97.00000 | 93.000000 | 83.000000 | 69.000000 | 5.000000 | 0.800000 | 106.000000 | 17.800000 | 55.000000 | 0.000000 | 115.000000 | 19.300000 | 50.000000 | 8.400000 | 121.000000 | 20.300000 | 307.000000 | 51.600000 | 251.000000 | 42.200000 | 344.000000 | 57.800000 | 56.000000 | 87.800000 | 80.500000 | 91.700000 | 3.700000 | 4.150000 | 76.800000 | 87.500000 | 7.300000 | 8.300000 | 11.000000 | 1.200000 | Queens | 6.000000 | 12.0 | Flushing | 11358.00000 | 609.00000 | Traditional | Latin, Spanish | Chemistry, English Language and Composition, E... | No courses | Latin, Spanish | 800.000000 | 300.000000 | 2.000000 | 34 65 192 Street\nFlushing, NY 11358\n(40.7651... | 11.000000 | 19.000000 | 40.765123 | -73.790060 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 58.000000 | 22.000000 | 481.000000 | 23.000000 | 111.000000 | 8.600000 | 8.000000 | 7.500000 | 7.800000 | 8.600000 | 8.600000 | 8.800000 | 8.900000 | 6.900000 | 6.400000 | 6.300000 | 7.500000 | 8.000000 | 7.700000 | 7.500000 | 8.100000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
393 | 25Q425 | JOHN BOWNE HIGH SCHOOL | 558.0 | 397.0 | 451.0 | 395.0 | 1243.0 | 0 | 176.0 | 229.0 | 116.0 | 359.186047 | 12.883721 | 24.823256 | 19.162791 | 27.465116 | 20112012.0 | 68.200000 | 3660.000000 | 1204.00000 | 923.000000 | 841.000000 | 692.000000 | 903.000000 | 24.700000 | 360.000000 | 9.800000 | 81.000000 | 162.000000 | 1257.000000 | 34.300000 | 702.000000 | 19.200000 | 1488.000000 | 40.700000 | 192.000000 | 5.200000 | 1801.000000 | 49.200000 | 1859.000000 | 50.800000 | 764.571429 | 52.457143 | 35.600000 | 67.371429 | 9.271429 | 17.614286 | 26.357143 | 49.771429 | 16.842857 | 32.628571 | 23.900000 | 19.900000 | Queens | 9.000000 | 12.0 | Flushing | 11367.00000 | 3722.00000 | Traditional | Chinese, French, Italian, Latin, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 908.000000 | 347.000000 | 4.000000 | 63 25 Main Street\nFlushing, NY 11367\n(40.738... | 8.000000 | 24.000000 | 40.738697 | -73.824795 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 80.000000 | 84.000000 | 24.000000 | 2653.000000 | 152.000000 | 750.000000 | 8.200000 | 7.800000 | 7.800000 | 8.000000 | 6.300000 | 6.000000 | 6.200000 | 6.600000 | 6.800000 | 5.800000 | 6.500000 | 7.100000 | 7.100000 | 6.500000 | 6.800000 | 7.300000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
394 | 25Q460 | FLUSHING HIGH SCHOOL | 347.0 | 393.0 | 441.0 | 382.0 | 1216.0 | 0 | 324.0 | 424.0 | 136.0 | 356.309524 | 12.523810 | 25.438095 | 19.214286 | 28.761905 | 20112012.0 | 67.600000 | 3113.000000 | 1204.00000 | 809.000000 | 627.000000 | 473.000000 | 624.000000 | 20.000000 | 363.000000 | 11.700000 | 116.000000 | 137.000000 | 618.000000 | 19.900000 | 825.000000 | 26.500000 | 1551.000000 | 49.800000 | 101.000000 | 3.200000 | 1737.000000 | 55.800000 | 1376.000000 | 44.200000 | 590.857143 | 50.114286 | 39.442857 | 78.228571 | 9.114286 | 18.557143 | 30.300000 | 59.657143 | 10.685714 | 21.771429 | 23.728571 | 22.985714 | Queens | 9.000000 | 12.0 | Flushing | 11354.00000 | 2499.00000 | Traditional | Chinese, French, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 851.000000 | 337.000000 | 4.000000 | 35 01 Union Street\nFlushing, NY 11354\n(40.76... | 7.000000 | 20.000000 | 40.765243 | -73.827855 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 72.000000 | 59.000000 | 30.000000 | 2103.000000 | 103.000000 | 822.000000 | 6.800000 | 6.800000 | 6.800000 | 7.100000 | 6.700000 | 6.700000 | 7.100000 | 7.400000 | 5.600000 | 5.400000 | 6.100000 | 6.800000 | 6.400000 | 6.300000 | 6.700000 | 7.100000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
395 | 25Q467 | FLUSHING YABC | 9.0 | 378.0 | 373.0 | 344.0 | 1095.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.745414 | -73.815558 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 85.000000 | 6.000000 | 216.000000 | 33.000000 | 13.000000 | 8.500000 | 7.700000 | 7.400000 | 7.600000 | 8.000000 | 8.300000 | 8.600000 | 8.400000 | 8.600000 | 7.500000 | 8.500000 | 8.600000 | 8.300000 | 7.900000 | 8.300000 | 8.300000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
396 | 25Q525 | TOWNSEND HARRIS HIGH SCHOOL | 278.0 | 621.0 | 651.0 | 638.0 | 1910.0 | 0 | 613.0 | 796.0 | 625.0 | 330.500000 | 10.937500 | 29.362500 | 22.750000 | 33.125000 | 20112012.0 | 29.200000 | 1140.000000 | 315.00000 | 286.000000 | 270.000000 | 269.000000 | 0.000000 | 0.000000 | 2.000000 | 0.200000 | 1.000000 | 0.000000 | 633.000000 | 55.500000 | 67.000000 | 5.900000 | 147.000000 | 12.900000 | 280.000000 | 24.600000 | 330.000000 | 28.900000 | 810.000000 | 71.100000 | 269.285714 | 99.628571 | 99.628571 | 100.000000 | 98.485714 | 98.857143 | 1.142857 | 1.142857 | 0.000000 | 0.000000 | 0.371429 | 0.000000 | Queens | 9.000000 | 12.0 | Flushing | 11367.00000 | 1151.00000 | Traditional | Classical Greek, French, Hebrew, Japanese, Lat... | Calculus AB, Calculus BC, English Literature a... | No courses | No courses | 820.000000 | 300.000000 | 1.000000 | 149 11 Melbourne Avenue\nFlushing, NY 11367\n(... | 8.000000 | 24.000000 | 40.734408 | -73.821417 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 98.000000 | 84.000000 | 44.000000 | 1070.000000 | 48.000000 | 472.000000 | 8.900000 | 7.900000 | 7.900000 | 8.200000 | 7.800000 | 6.200000 | 6.400000 | 7.600000 | 7.800000 | 6.000000 | 7.100000 | 8.100000 | 8.200000 | 6.700000 | 7.200000 | 8.000000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
397 | 25Q540 | QUEENS ACADEMY HIGH SCHOOL | 17.0 | 398.0 | 382.0 | 388.0 | 1168.0 | 0 | 0.0 | 0.0 | 0.0 | 193.400000 | 8.600000 | 24.210000 | 16.300000 | 31.100000 | 20112012.0 | 63.700000 | 404.000000 | 199.09611 | 120.000000 | 118.000000 | 166.000000 | 26.000000 | 6.400000 | 36.000000 | 8.900000 | 6.000000 | 2.000000 | 64.000000 | 15.800000 | 171.000000 | 42.300000 | 145.000000 | 35.900000 | 22.000000 | 5.400000 | 240.000000 | 59.400000 | 164.000000 | 40.600000 | 147.000000 | 18.800000 | 10.028571 | 40.957143 | 0.657143 | 2.385714 | 9.371429 | 38.571429 | 8.785714 | 59.042857 | 66.942857 | 13.685714 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.745414 | -73.815558 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 72.000000 | 89.000000 | 23.000000 | 222.000000 | 25.000000 | 72.000000 | 8.300000 | 7.700000 | 7.300000 | 7.800000 | 6.900000 | 6.400000 | 6.600000 | 7.200000 | 6.900000 | 5.800000 | 6.500000 | 7.200000 | 7.400000 | 6.600000 | 6.800000 | 7.400000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
398 | 25Q670 | ROBERT F. KENNEDY COMMUNITY HIGH SCHOOL | 99.0 | 431.0 | 458.0 | 441.0 | 1330.0 | 0 | 77.0 | 112.0 | 43.0 | 113.481481 | 3.814815 | 30.496296 | 26.259259 | 33.185185 | 20112012.0 | 46.400000 | 721.000000 | 242.00000 | 176.000000 | 163.000000 | 140.000000 | 54.000000 | 7.500000 | 133.000000 | 18.400000 | 55.000000 | 7.000000 | 205.000000 | 28.400000 | 83.000000 | 11.500000 | 255.000000 | 35.400000 | 177.000000 | 24.500000 | 388.000000 | 53.800000 | 333.000000 | 46.200000 | 125.285714 | 68.514286 | 59.200000 | 86.628571 | 12.957143 | 19.214286 | 46.257143 | 67.428571 | 9.300000 | 13.371429 | 21.614286 | 7.628571 | Queens | 9.000000 | 12.0 | Fresh Meadows | 11366.00000 | 685.00000 | Traditional | Chinese, Spanish | Biology, Calculus AB, Calculus BC, English Lit... | No courses | Chinese | 800.000000 | 230.000000 | 1.000000 | 75 40 Parsons Boulevard Fresh Meadows\nNY 1136... | 8.000000 | 24.000000 | 40.725603 | -73.810721 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 75.000000 | 93.000000 | 11.000000 | 529.000000 | 43.000000 | 71.000000 | 8.100000 | 7.400000 | 7.200000 | 7.300000 | 8.000000 | 7.500000 | 7.900000 | 8.100000 | 7.100000 | 6.400000 | 7.100000 | 7.500000 | 7.700000 | 7.100000 | 7.400000 | 7.600000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
399 | 25Q792 | NORTH QUEENS COMMUNITY HIGH SCHOOL | 7.0 | 379.0 | 421.0 | 377.0 | 1177.0 | 0 | 0.0 | 0.0 | 0.0 | 50.437500 | 2.625000 | 19.868750 | 15.875000 | 23.750000 | 20112012.0 | 54.100000 | 198.000000 | 77.00000 | 77.000000 | 31.000000 | 13.000000 | 3.000000 | 1.500000 | 23.000000 | 11.600000 | 2.000000 | 1.000000 | 20.000000 | 10.100000 | 84.000000 | 42.400000 | 66.000000 | 33.300000 | 28.000000 | 14.100000 | 90.000000 | 45.500000 | 108.000000 | 54.500000 | 52.666667 | 15.050000 | 8.650000 | 57.025000 | 0.000000 | 0.000000 | 8.650000 | 57.025000 | 6.350000 | 42.975000 | 72.500000 | 9.200000 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.745414 | -73.815558 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 82.000000 | 100.000000 | 79.000000 | 143.000000 | 15.000000 | 143.000000 | 9.200000 | 8.800000 | 8.500000 | 8.900000 | 7.300000 | 7.100000 | 7.500000 | 8.200000 | 7.500000 | 7.100000 | 7.600000 | 8.400000 | 8.000000 | 7.700000 | 7.900000 | 8.500000 | 25 | DISTRICT 25 | 91.90 | 34371 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
400 | 26Q415 | BENJAMIN N. CARDOZO HIGH SCHOOL | 888.0 | 480.0 | 545.0 | 489.0 | 1514.0 | 0 | 676.0 | 1145.0 | 796.0 | 428.476190 | 14.119048 | 24.816667 | 17.000000 | 28.714286 | 20112012.0 | 37.300000 | 3912.000000 | 958.00000 | 1008.000000 | 1047.000000 | 899.000000 | 240.000000 | 6.100000 | 448.000000 | 11.500000 | 107.000000 | 173.000000 | 1788.000000 | 45.700000 | 718.000000 | 18.400000 | 727.000000 | 18.600000 | 657.000000 | 16.800000 | 1853.000000 | 47.400000 | 2059.000000 | 52.600000 | 1015.571429 | 79.928571 | 71.085714 | 88.942857 | 37.828571 | 47.357143 | 33.228571 | 41.585714 | 8.871429 | 11.085714 | 12.714286 | 5.400000 | Queens | 9.000000 | 12.0 | Oakland Gardens | 11364.00000 | 3628.00000 | Traditional | Chinese (Mandarin), French, German, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 900.000000 | 400.000000 | 5.000000 | 57 00 223Rd Street Oakland Gardens\nNY 11364\n... | 11.000000 | 23.000000 | 40.752392 | -73.756083 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 86.000000 | 93.000000 | 33.000000 | 3393.000000 | 182.000000 | 1212.000000 | 7.400000 | 6.300000 | 6.800000 | 6.900000 | 7.200000 | 7.200000 | 7.500000 | 7.900000 | 6.500000 | 5.500000 | 6.300000 | 7.000000 | 7.000000 | 6.300000 | 6.900000 | 7.300000 | 26 | DISTRICT 26 | 93.34 | 31988 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
401 | 26Q430 | FRANCIS LEWIS HIGH SCHOOL | 934.0 | 468.0 | 539.0 | 467.0 | 1474.0 | 0 | 697.0 | 1033.0 | 583.0 | 378.208333 | 13.437500 | 22.762500 | 15.062500 | 27.104167 | 20112012.0 | 51.600000 | 4152.000000 | 983.00000 | 998.000000 | 1100.000000 | 1071.000000 | 546.000000 | 13.200000 | 511.000000 | 12.300000 | 168.000000 | 214.000000 | 2153.000000 | 51.900000 | 343.000000 | 8.300000 | 999.000000 | 24.100000 | 642.000000 | 15.500000 | 2043.000000 | 49.200000 | 2109.000000 | 50.800000 | 1115.285714 | 76.642857 | 65.628571 | 85.685714 | 40.985714 | 53.557143 | 24.642857 | 32.128571 | 11.014286 | 14.314286 | 14.942857 | 6.128571 | Queens | 9.000000 | 12.0 | Fresh Meadows | 11365.00000 | 4058.00000 | Traditional | American Sign Language, Arabic, Chinese, Frenc... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 830.000000 | 315.000000 | 5.000000 | 58 20 Utopia Parkway Fresh Meadows\nNY 11365\n... | 11.000000 | 20.000000 | 40.740556 | -73.792848 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 27.000000 | 71.000000 | 20.000000 | 1103.000000 | 160.000000 | 779.000000 | 8.800000 | 8.100000 | 8.200000 | 8.400000 | 8.300000 | 7.900000 | 8.300000 | 8.500000 | 8.800000 | 7.800000 | 8.500000 | 9.000000 | 8.600000 | 8.000000 | 8.300000 | 8.600000 | 26 | DISTRICT 26 | 93.34 | 31988 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
402 | 26Q435 | MARTIN VAN BUREN HIGH SCHOOL | 334.0 | 391.0 | 397.0 | 384.0 | 1172.0 | 0 | 71.0 | 101.0 | 15.0 | 249.552632 | 9.210526 | 23.539474 | 17.605263 | 27.131579 | 20112012.0 | 38.200000 | 2390.000000 | 722.00000 | 641.000000 | 547.000000 | 480.000000 | 237.000000 | 9.900000 | 274.000000 | 11.500000 | 34.000000 | 138.000000 | 576.000000 | 24.100000 | 1348.000000 | 56.400000 | 360.000000 | 15.100000 | 69.000000 | 2.900000 | 1298.000000 | 54.300000 | 1092.000000 | 45.700000 | 724.142857 | 66.700000 | 50.842857 | 76.100000 | 9.571429 | 14.371429 | 41.300000 | 61.714286 | 15.871429 | 23.928571 | 20.300000 | 9.742857 | Queens | 9.000000 | 12.0 | Queens Village | 11427.00000 | 2096.00000 | Traditional | Spanish | Art History, Biology, Calculus AB, English Lit... | No courses | No courses | 745.000000 | 314.000000 | 5.000000 | 230 17 Hillside Avenue Queens Village\nNY 1142... | 13.000000 | 23.000000 | 40.732817 | -73.739650 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 69.000000 | 63.000000 | 18.000000 | 1663.000000 | 79.000000 | 413.000000 | 6.300000 | 6.400000 | 6.500000 | 6.700000 | 5.500000 | 5.200000 | 4.900000 | 5.500000 | 5.000000 | 5.100000 | 5.400000 | 6.300000 | 5.600000 | 5.600000 | 5.600000 | 6.200000 | 26 | DISTRICT 26 | 93.34 | 31988 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
403 | 26Q495 | BAYSIDE HIGH SCHOOL | 708.0 | 462.0 | 523.0 | 464.0 | 1449.0 | 0 | 480.0 | 686.0 | 413.0 | 356.297297 | 11.108108 | 30.037838 | 25.000000 | 31.378378 | 20112012.0 | 52.400000 | 3308.000000 | 746.00000 | 921.000000 | 786.000000 | 855.000000 | 190.000000 | 5.700000 | 351.000000 | 10.600000 | 176.000000 | 119.000000 | 1494.000000 | 45.200000 | 419.000000 | 12.700000 | 737.000000 | 22.300000 | 647.000000 | 19.600000 | 1633.000000 | 49.400000 | 1675.000000 | 50.600000 | 902.714286 | 74.571429 | 70.842857 | 94.942857 | 46.371429 | 62.128571 | 24.485714 | 32.842857 | 3.800000 | 5.185714 | 16.100000 | 7.614286 | Queens | 9.000000 | 12.0 | Bayside | 11361.00000 | 3241.00000 | Traditional | Chinese (Mandarin), Chinese Native Language Ar... | Art History, Biology, Calculus AB, Calculus BC... | Comparative Government and Politics, Human Geo... | Chinese, French, Japanese, Spanish | 800.000000 | 330.000000 | 7.000000 | 32 24 Corporal Kennedy Street\nBayside, NY 113... | 11.000000 | 19.000000 | 40.771867 | -73.780387 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 72.000000 | 94.000000 | 21.000000 | 2527.000000 | 163.000000 | 713.000000 | 7.900000 | 6.800000 | 7.100000 | 7.000000 | 7.900000 | 6.600000 | 7.200000 | 7.600000 | 7.100000 | 5.900000 | 6.900000 | 7.600000 | 7.600000 | 6.400000 | 7.000000 | 7.400000 | 26 | DISTRICT 26 | 93.34 | 31988 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
404 | 26Q566 | QUEENS HIGH SCHOOL OF TEACHING, LIBERAL ARTS A... | 175.0 | 425.0 | 434.0 | 420.0 | 1279.0 | 0 | 0.0 | 0.0 | 0.0 | 171.181818 | 5.484848 | 30.612121 | 26.848485 | 33.151515 | 20112012.0 | 39.500000 | 1196.000000 | 344.00000 | 322.000000 | 279.000000 | 251.000000 | 30.000000 | 2.500000 | 166.000000 | 13.900000 | 77.000000 | 18.000000 | 285.000000 | 23.800000 | 554.000000 | 46.300000 | 201.000000 | 16.800000 | 147.000000 | 12.300000 | 548.000000 | 45.800000 | 648.000000 | 54.200000 | 239.666667 | 83.783333 | 62.533333 | 74.633333 | 9.666667 | 11.450000 | 52.900000 | 63.183333 | 21.216667 | 25.366667 | 12.166667 | 2.500000 | Queens | 9.000000 | 12.0 | Bellerose | 11426.00000 | 1164.00000 | Traditional | Spanish | English Language and Composition, Statistics, ... | No courses | No courses | 830.000000 | 330.000000 | 1.000000 | 74 20 Commonwealth Blvd\nBellerose, NY 11426\n... | 13.000000 | 23.000000 | 40.744904 | -73.726910 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 81.000000 | 96.000000 | 27.000000 | 968.000000 | 65.000000 | 304.000000 | 8.200000 | 7.300000 | 7.500000 | 7.300000 | 6.100000 | 6.000000 | 6.300000 | 6.800000 | 6.400000 | 6.000000 | 6.200000 | 7.000000 | 6.900000 | 6.400000 | 6.700000 | 7.000000 | 26 | DISTRICT 26 | 93.34 | 31988 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
405 | 27Q260 | FREDERICK DOUGLASS ACADEMY VI HIGH SCHOOL | 87.0 | 387.0 | 385.0 | 373.0 | 1145.0 | 0 | 0.0 | 0.0 | 0.0 | 83.681818 | 3.500000 | 24.177273 | 19.954545 | 27.136364 | 20112012.0 | 57.100000 | 445.000000 | 136.00000 | 119.000000 | 115.000000 | 75.000000 | 18.000000 | 4.000000 | 62.000000 | 13.900000 | 22.000000 | 23.000000 | 17.000000 | 3.800000 | 298.000000 | 67.000000 | 120.000000 | 27.000000 | 6.000000 | 1.300000 | 234.000000 | 52.600000 | 211.000000 | 47.400000 | 70.200000 | 71.275000 | 52.575000 | 73.650000 | 4.200000 | 5.775000 | 48.375000 | 67.925000 | 18.700000 | 26.350000 | 24.850000 | 3.050000 | Queens | 9.000000 | 12.0 | Far Rockaway | 11691.00000 | 412.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | Biology, Physics B | French, Spanish | 745.000000 | 205.000000 | 1.000000 | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.000000 | 31.000000 | 40.601989 | -73.762834 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 84.000000 | 90.000000 | 53.000000 | 329.000000 | 27.000000 | 201.000000 | 7.300000 | 6.900000 | 7.000000 | 7.300000 | 5.500000 | 5.200000 | 5.500000 | 6.300000 | 6.000000 | 5.600000 | 6.200000 | 7.300000 | 6.300000 | 5.900000 | 6.200000 | 6.900000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
406 | 27Q262 | CHANNEL VIEW SCHOOL FOR RESEARCH | 74.0 | 432.0 | 419.0 | 401.0 | 1252.0 | 0 | 43.0 | 69.0 | 18.0 | 74.423077 | 2.884615 | 26.107692 | 22.730769 | 28.653846 | 20112012.0 | 58.000000 | 636.000000 | 121.00000 | 107.000000 | 94.000000 | 87.000000 | 8.000000 | 1.300000 | 67.000000 | 10.500000 | 33.000000 | 12.000000 | 36.000000 | 5.700000 | 351.000000 | 55.200000 | 175.000000 | 27.500000 | 71.000000 | 11.200000 | 325.000000 | 51.100000 | 311.000000 | 48.900000 | 71.500000 | 92.425000 | 80.250000 | 86.775000 | 18.250000 | 19.725000 | 62.000000 | 67.075000 | 12.225000 | 13.225000 | 5.125000 | 2.075000 | Queens | 6.000000 | 12.0 | Rockaway Park | 11694.00000 | 642.00000 | Traditional | Spanish | Biology, English Language and Composition, Env... | Art History, Calculus BC, English Language and... | No courses | 815.000000 | 304.000000 | 1.000000 | 100 00 Beach Channel Drive Rockaway Park\nNY 1... | 14.000000 | 32.000000 | 40.586007 | -73.823089 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 100.000000 | 48.000000 | 580.000000 | 41.000000 | 268.000000 | 8.400000 | 7.900000 | 7.900000 | 8.200000 | 7.600000 | 8.200000 | 8.300000 | 8.700000 | 7.100000 | 6.600000 | 7.300000 | 8.100000 | 7.700000 | 7.600000 | 7.800000 | 8.300000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
407 | 27Q302 | QUEENS HIGH SCHOOL FOR INFORMATION, RESEARCH, ... | 44.0 | 391.0 | 401.0 | 364.0 | 1156.0 | 0 | 0.0 | 0.0 | 0.0 | 64.142857 | 2.809524 | 23.433333 | 19.857143 | 26.666667 | 20112012.0 | 75.700000 | 310.000000 | 88.00000 | 79.000000 | 75.000000 | 68.000000 | 33.000000 | 10.600000 | 50.000000 | 16.100000 | 23.000000 | 14.000000 | 13.000000 | 4.200000 | 187.000000 | 60.300000 | 93.000000 | 30.000000 | 14.000000 | 4.500000 | 169.000000 | 54.500000 | 141.000000 | 45.500000 | 2.000000 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Far Rockaway | 11691.00000 | 322.00000 | Traditional | Spanish | Biology, English Literature and Composition, W... | No courses | No courses | 745.000000 | 410.000000 | 2.000000 | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.000000 | 31.000000 | 40.601989 | -73.762834 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 47.000000 | 71.000000 | 27.000000 | 113.000000 | 15.000000 | 61.000000 | 7.900000 | 7.100000 | 7.200000 | 7.400000 | 6.500000 | 6.200000 | 6.800000 | 7.300000 | 6.300000 | 6.100000 | 6.500000 | 7.100000 | 6.900000 | 6.500000 | 6.800000 | 7.300000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
408 | 27Q308 | ROBERT H. GODDARD HIGH SCHOOL OF COMMUNICATION... | 93.0 | 423.0 | 426.0 | 416.0 | 1265.0 | 0 | 0.0 | 0.0 | 0.0 | 91.576923 | 3.269231 | 25.073077 | 23.692308 | 26.692308 | 20112012.0 | 66.400000 | 578.000000 | 170.00000 | 156.000000 | 138.000000 | 114.000000 | 21.000000 | 3.600000 | 92.000000 | 15.900000 | 4.000000 | 45.000000 | 155.000000 | 26.800000 | 44.000000 | 7.600000 | 246.000000 | 42.600000 | 126.000000 | 21.800000 | 278.000000 | 48.100000 | 300.000000 | 51.900000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Ozone Park | 11417.00000 | 598.00000 | Traditional | Spanish | Chemistry, English Literature and Composition,... | English Literature and Composition, Environmen... | Spanish | 725.000000 | 215.000000 | 1.000000 | 138 30 Lafayette Street Ozone Park\nNY 11417\n... | 10.000000 | 32.000000 | 40.671769 | -73.844978 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 97.000000 | 100.000000 | 64.000000 | 417.000000 | 26.000000 | 263.000000 | 7.900000 | 7.400000 | 7.400000 | 7.800000 | 7.200000 | 7.300000 | 7.500000 | 8.000000 | 6.600000 | 6.000000 | 6.500000 | 7.300000 | 7.200000 | 6.900000 | 7.100000 | 7.700000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
409 | 27Q309 | ACADEMY OF MEDICAL TECHNOLOGY: A COLLEGE BOARD... | 36.0 | 367.0 | 379.0 | 348.0 | 1094.0 | 0 | 0.0 | 0.0 | 0.0 | 55.636364 | 2.227273 | 23.995455 | 21.272727 | 26.545455 | 20112012.0 | 64.200000 | 527.000000 | 139.00000 | 104.000000 | 54.000000 | 38.000000 | 56.000000 | 10.600000 | 74.000000 | 14.000000 | 46.000000 | 20.000000 | 48.000000 | 9.100000 | 277.000000 | 52.600000 | 180.000000 | 34.200000 | 17.000000 | 3.200000 | 231.000000 | 43.800000 | 296.000000 | 56.200000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Far Rockaway | 11691.00000 | 631.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 315.000000 | 1.000000 | 8 21 Bay 25 Street\nFar Rockaway, NY 11691\n(4... | 14.000000 | 31.000000 | 40.601989 | -73.762834 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 100.000000 | 71.000000 | 335.000000 | 30.000000 | 254.000000 | 7.700000 | 7.400000 | 7.400000 | 7.700000 | 7.900000 | 7.900000 | 8.200000 | 8.500000 | 6.200000 | 5.900000 | 6.400000 | 7.200000 | 7.300000 | 7.100000 | 7.300000 | 7.800000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
410 | 27Q323 | SCHOLARS' ACADEMY | 89.0 | 499.0 | 537.0 | 496.0 | 1532.0 | 0 | 55.0 | 121.0 | 57.0 | 150.846154 | 5.923077 | 25.938462 | 19.692308 | 30.461538 | 20112012.0 | 35.900000 | 1062.000000 | 122.00000 | 110.000000 | 100.000000 | 88.000000 | 0.000000 | 0.000000 | 11.000000 | 1.000000 | 2.000000 | 0.000000 | 234.000000 | 22.000000 | 204.000000 | 19.200000 | 169.000000 | 15.900000 | 442.000000 | 41.600000 | 466.000000 | 43.900000 | 596.000000 | 56.100000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Rockaway Park | 11694.00000 | 1253.00000 | Traditional | Spanish | Art History, Biology, Calculus AB, Chemistry, ... | Spanish Language and Culture, Statistics | Spanish | 845.000000 | 300.000000 | 1.000000 | 320 Beach 104Th Street Rockaway Park\nNY 11694... | 14.000000 | 32.000000 | 40.584131 | -73.825681 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 94.000000 | 77.000000 | 929.000000 | 44.000000 | 697.000000 | 8.900000 | 8.200000 | 8.100000 | 8.500000 | 8.200000 | 7.800000 | 7.500000 | 8.600000 | 7.900000 | 7.300000 | 7.800000 | 8.300000 | 8.300000 | 7.700000 | 7.800000 | 8.500000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
411 | 27Q400 | AUGUST MARTIN HIGH SCHOOL | 101.0 | 377.0 | 371.0 | 360.0 | 1108.0 | 0 | 19.0 | 28.0 | 0.0 | 116.627907 | 4.162791 | 25.611628 | 22.348837 | 28.255814 | 20112012.0 | 65.100000 | 1029.000000 | 315.00000 | 334.000000 | 223.000000 | 157.000000 | 44.000000 | 4.300000 | 170.000000 | 16.500000 | 36.000000 | 85.000000 | 64.000000 | 6.200000 | 822.000000 | 79.900000 | 118.000000 | 11.500000 | 17.000000 | 1.700000 | 568.000000 | 55.200000 | 461.000000 | 44.800000 | 332.857143 | 49.514286 | 18.371429 | 35.871429 | 2.171429 | 4.228571 | 16.200000 | 31.642857 | 31.157143 | 64.128571 | 28.742857 | 18.114286 | Queens | 9.000000 | 12.0 | Jamaica | 11434.00000 | 853.00000 | Traditional | French, Spanish | English Literature and Composition, Environmen... | English Language and Composition | No courses | 800.000000 | 330.000000 | 4.000000 | 156 10 Baisley Boulevard\nJamaica, NY 11434\n(... | 12.000000 | 28.000000 | 40.675527 | -73.783433 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 49.000000 | 29.000000 | 7.000000 | 513.000000 | 20.000000 | 67.000000 | 7.400000 | 7.000000 | 6.900000 | 7.200000 | 5.400000 | 6.000000 | 6.100000 | 6.200000 | 5.000000 | 5.000000 | 5.400000 | 6.400000 | 5.600000 | 5.800000 | 6.000000 | 6.500000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
412 | 27Q410 | BEACH CHANNEL HIGH SCHOOL | 78.0 | 384.0 | 396.0 | 354.0 | 1134.0 | 0 | 0.0 | 0.0 | 0.0 | 93.325581 | 3.441860 | 24.295349 | 21.325581 | 26.139535 | 20112012.0 | 65.500000 | 684.000000 | 101.00000 | 182.000000 | 167.000000 | 234.000000 | 77.000000 | 11.300000 | 149.000000 | 21.800000 | 43.000000 | 63.000000 | 14.000000 | 2.000000 | 320.000000 | 46.800000 | 303.000000 | 44.300000 | 43.000000 | 6.300000 | 393.000000 | 57.500000 | 291.000000 | 42.500000 | 462.571429 | 48.685714 | 25.200000 | 52.300000 | 2.942857 | 6.071429 | 22.285714 | 46.214286 | 23.500000 | 47.700000 | 29.471429 | 16.857143 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.638828 | -73.807823 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 46.000000 | 33.000000 | 3.000000 | 414.000000 | 18.000000 | 21.000000 | 5.800000 | 6.700000 | 6.900000 | 7.100000 | 5.800000 | 6.500000 | 7.100000 | 7.700000 | 5.200000 | 5.000000 | 5.800000 | 6.300000 | 5.600000 | 5.900000 | 6.500000 | 7.000000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
413 | 27Q475 | RICHMOND HILL HIGH SCHOOL | 404.0 | 382.0 | 404.0 | 368.0 | 1154.0 | 0 | 142.0 | 170.0 | 55.0 | 322.581395 | 11.372093 | 24.432558 | 20.372093 | 26.395349 | 20112012.0 | 61.800000 | 2585.000000 | 767.00000 | 758.000000 | 645.000000 | 415.000000 | 451.000000 | 17.400000 | 355.000000 | 13.700000 | 87.000000 | 135.000000 | 850.000000 | 32.900000 | 433.000000 | 16.800000 | 1200.000000 | 46.400000 | 82.000000 | 3.200000 | 1369.000000 | 53.000000 | 1216.000000 | 47.000000 | 803.571429 | 47.028571 | 28.700000 | 59.942857 | 5.000000 | 10.657143 | 23.657143 | 49.285714 | 18.357143 | 40.114286 | 29.700000 | 19.242857 | Queens | 9.000000 | 12.0 | Richmond Hill | 11418.00000 | 2225.00000 | Traditional | Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 800.000000 | 300.000000 | 3.000000 | 89 30 114 Street Richmond Hill\nNY 11418\n(40.... | 9.000000 | 28.000000 | 40.695649 | -73.833585 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 49.000000 | 84.000000 | 10.000000 | 1376.000000 | 139.000000 | 251.000000 | 7.100000 | 7.100000 | 6.900000 | 7.100000 | 6.600000 | 6.200000 | 6.300000 | 7.100000 | 6.000000 | 5.900000 | 6.300000 | 7.000000 | 6.600000 | 6.400000 | 6.500000 | 7.100000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
414 | 27Q480 | JOHN ADAMS HIGH SCHOOL | 403.0 | 391.0 | 409.0 | 392.0 | 1192.0 | 0 | 140.0 | 168.0 | 33.0 | 392.575000 | 14.975000 | 23.730000 | 17.600000 | 28.600000 | 20112012.0 | 75.500000 | 3386.000000 | 1017.00000 | 854.000000 | 890.000000 | 625.000000 | 543.000000 | 16.000000 | 411.000000 | 12.100000 | 136.000000 | 147.000000 | 930.000000 | 27.500000 | 937.000000 | 27.700000 | 1256.000000 | 37.100000 | 122.000000 | 3.600000 | 1845.000000 | 54.500000 | 1541.000000 | 45.500000 | 790.428571 | 48.271429 | 31.300000 | 63.828571 | 4.657143 | 9.800000 | 26.642857 | 54.028571 | 16.985714 | 36.171429 | 31.542857 | 17.157143 | Queens | 9.000000 | 12.0 | Ozone Park | 11417.00000 | 2838.00000 | Traditional | Bengali, Spanish, Spanish Native Language Arts | Biology, Calculus AB, Calculus BC, Chemistry, ... | Biology, Calculus AB, Calculus BC, Chemistry, ... | French, Spanish | 800.000000 | 330.000000 | 8.000000 | 101 01 Rockaway Boulevard Ozone Park\nNY 11417... | 10.000000 | 32.000000 | 40.679831 | -73.838323 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 97.000000 | 13.000000 | 2422.000000 | 194.000000 | 368.000000 | 7.300000 | 7.300000 | 7.100000 | 7.200000 | 7.300000 | 6.800000 | 7.400000 | 7.700000 | 6.200000 | 5.600000 | 6.300000 | 7.100000 | 6.900000 | 6.600000 | 7.000000 | 7.300000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
415 | 27Q650 | HIGH SCHOOL FOR CONSTRUCTION TRADES, ENGINEERI... | 194.0 | 429.0 | 491.0 | 425.0 | 1345.0 | 0 | 91.0 | 109.0 | 21.0 | 228.588235 | 8.705882 | 26.847059 | 20.411765 | 31.235294 | 20112012.0 | 53.700000 | 924.000000 | 226.00000 | 241.000000 | 233.000000 | 224.000000 | 4.000000 | 0.400000 | 54.000000 | 5.800000 | 19.000000 | 0.000000 | 284.000000 | 30.700000 | 104.000000 | 11.300000 | 384.000000 | 41.600000 | 142.000000 | 15.400000 | 622.000000 | 67.300000 | 302.000000 | 32.700000 | 177.000000 | 89.800000 | 83.350000 | 92.800000 | 15.300000 | 17.000000 | 68.050000 | 75.800000 | 6.450000 | 7.200000 | 8.500000 | 1.100000 | Queens | 9.000000 | 12.0 | Ozone Park | 11416.00000 | 946.00000 | CTE School | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 810.000000 | 234.000000 | 3.000000 | 94 06 104Th Street Ozone Park\nNY 11416\n(40.6... | 9.000000 | 28.000000 | 40.689397 | -73.840641 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 100.000000 | 39.000000 | 737.000000 | 56.000000 | 338.000000 | 8.400000 | 7.700000 | 7.800000 | 8.000000 | 7.100000 | 6.200000 | 7.000000 | 7.900000 | 6.600000 | 6.000000 | 6.300000 | 7.300000 | 7.300000 | 6.600000 | 7.000000 | 7.700000 | 27 | DISTRICT 27 | 89.88 | 46007 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
416 | 28Q284 | YORK EARLY COLLEGE ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 56.923077 | 2.307692 | 24.015385 | 21.153846 | 26.923077 | 20112012.0 | 60.200000 | 489.000000 | 81.00000 | 78.000000 | 76.000000 | 147.334928 | 0.000000 | 0.000000 | 47.000000 | 9.600000 | 31.000000 | 0.000000 | 115.000000 | 23.500000 | 314.000000 | 64.200000 | 50.000000 | 10.200000 | 3.000000 | 0.600000 | 250.000000 | 51.100000 | 239.000000 | 48.900000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Jamaica | 11433.00000 | 592.00000 | Traditional | Spanish | No courses | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 108 35 167 Street\nJamaica, NY 11433\n(40.6969... | 12.000000 | 27.000000 | 40.696937 | -73.786982 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 88.000000 | 39.000000 | 394.000000 | 23.000000 | 144.000000 | 8.300000 | 8.000000 | 7.500000 | 8.200000 | 7.300000 | 7.200000 | 7.200000 | 8.100000 | 6.600000 | 6.200000 | 6.800000 | 7.800000 | 7.400000 | 7.200000 | 7.200000 | 8.000000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
417 | 28Q310 | QUEENS COLLEGIATE: A COLLEGE BOARD SCHOOL | 68.0 | 420.0 | 445.0 | 400.0 | 1265.0 | 0 | 0.0 | 0.0 | 0.0 | 46.909091 | 1.954545 | 24.859091 | 22.545455 | 27.181818 | 20112012.0 | 61.500000 | 529.000000 | 119.00000 | 107.000000 | 91.000000 | 64.000000 | 43.000000 | 8.100000 | 65.000000 | 12.300000 | 38.000000 | 1.000000 | 143.000000 | 27.000000 | 259.000000 | 49.000000 | 98.000000 | 18.500000 | 16.000000 | 3.000000 | 264.000000 | 49.900000 | 265.000000 | 50.100000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Jamaica | 11432.00000 | 647.00000 | Traditional | Spanish | Biology, Calculus AB, Comparative Government a... | Art History, Biology, Calculus BC, Chemistry, ... | Chinese, French, German, Spanish | 815.000000 | 300.000000 | 1.000000 | 167 01 Gothic Drive\nJamaica, NY 11432\n(40.71... | 8.000000 | 24.000000 | 40.713577 | -73.796518 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 78.000000 | 37.000000 | 229.000000 | 18.000000 | 110.000000 | 8.200000 | 8.100000 | 7.700000 | 8.100000 | 7.500000 | 8.100000 | 8.100000 | 8.500000 | 6.900000 | 6.400000 | 7.200000 | 7.600000 | 7.500000 | 7.500000 | 7.700000 | 8.100000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
418 | 28Q325 | HILLSIDE ARTS & LETTERS ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 48.000000 | 2.000000 | 24.000000 | 22.000000 | 26.000000 | 20112012.0 | 65.600000 | 200.000000 | 109.00000 | 91.000000 | 155.308756 | 147.334928 | 25.000000 | 12.500000 | 22.000000 | 11.000000 | 16.000000 | 4.000000 | 56.000000 | 28.000000 | 78.000000 | 39.000000 | 42.000000 | 21.000000 | 13.000000 | 6.500000 | 94.000000 | 47.000000 | 106.000000 | 53.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Jamaica | 11432.00000 | 420.00000 | Traditional | Spanish | Art History, Biology, English Literature and C... | No courses | No courses | 815.000000 | 300.000000 | 1.000000 | 167 01 Gothic Drive\nJamaica, NY 11432\n(40.71... | 8.000000 | 24.000000 | 40.713577 | -73.796518 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 97.000000 | 100.000000 | 33.000000 | 87.000000 | 9.000000 | 29.000000 | 8.200000 | 7.900000 | 7.500000 | 8.200000 | 8.000000 | 8.200000 | 8.100000 | 8.900000 | 6.400000 | 6.200000 | 6.500000 | 7.400000 | 7.600000 | 7.400000 | 7.400000 | 8.200000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
419 | 28Q338 | QUEENS SATELLITE HIGH SCHOOL FOR OPPORTUNITY | 6.0 | 403.0 | 408.0 | 367.0 | 1178.0 | 0 | 0.0 | 0.0 | 0.0 | 108.692308 | 3.923077 | 27.553846 | 22.615385 | 31.076923 | 20112012.0 | 74.500000 | 251.000000 | 86.00000 | 73.000000 | 58.000000 | 34.000000 | 5.000000 | 2.000000 | 15.000000 | 6.000000 | 0.000000 | 1.000000 | 6.000000 | 2.400000 | 154.000000 | 61.400000 | 44.000000 | 17.500000 | 25.000000 | 10.000000 | 114.000000 | 45.400000 | 137.000000 | 54.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.709697 | -73.805547 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 58.000000 | 80.000000 | 12.000000 | 113.000000 | 8.000000 | 23.000000 | 8.400000 | 7.500000 | 7.200000 | 8.000000 | 7.400000 | 5.800000 | 5.500000 | 6.300000 | 6.900000 | 5.900000 | 6.600000 | 7.300000 | 7.600000 | 6.400000 | 6.400000 | 7.200000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
420 | 28Q350 | JAMAICA GATEWAY TO THE SCIENCES | 25.0 | 430.0 | 452.0 | 425.0 | 1307.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 60.000000 | 224.000000 | 126.00000 | 19.000000 | 39.000000 | 40.000000 | 10.000000 | 4.500000 | 16.000000 | 7.100000 | 6.000000 | 3.000000 | 101.000000 | 45.100000 | 82.000000 | 36.600000 | 34.000000 | 15.200000 | 6.000000 | 2.700000 | 104.000000 | 46.400000 | 120.000000 | 53.600000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Jamaica | 11432.00000 | 396.00000 | Traditional | Spanish | Environmental Science, Psychology | No courses | No courses | 815.000000 | 300.000000 | 1.000000 | 167 01 Gothic Drive\nJamaica, NY 11432\n(40.71... | 8.000000 | 24.000000 | 40.713577 | -73.796518 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
421 | 28Q440 | FOREST HILLS HIGH SCHOOL | 762.0 | 456.0 | 497.0 | 454.0 | 1407.0 | 0 | 733.0 | 1116.0 | 526.0 | 428.738095 | 14.452381 | 25.297619 | 18.261905 | 28.833333 | 20112012.0 | 41.200000 | 3834.000000 | 916.00000 | 930.000000 | 1030.000000 | 958.000000 | 343.000000 | 8.900000 | 433.000000 | 11.300000 | 151.000000 | 147.000000 | 1017.000000 | 26.500000 | 346.000000 | 9.000000 | 1157.000000 | 30.200000 | 1292.000000 | 33.700000 | 1845.000000 | 48.100000 | 1989.000000 | 51.900000 | 964.714286 | 77.614286 | 59.285714 | 76.414286 | 24.514286 | 31.800000 | 34.785714 | 44.585714 | 18.314286 | 23.600000 | 14.214286 | 6.685714 | Queens | 9.000000 | 12.0 | Forest Hills | 11375.00000 | 3800.00000 | Traditional | American Sign Language, Chinese, French, Hebre... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 818.000000 | 318.000000 | 5.000000 | 67 01 110 Street Forest Hills\nNY 11375\n(40.7... | 6.000000 | 29.000000 | 40.729432 | -73.845629 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 78.000000 | 85.000000 | 13.000000 | 2967.000000 | 166.000000 | 477.000000 | 7.700000 | 6.900000 | 7.200000 | 7.400000 | 8.100000 | 8.100000 | 8.400000 | 8.500000 | 6.700000 | 5.800000 | 6.600000 | 7.400000 | 7.500000 | 6.900000 | 7.400000 | 7.800000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
422 | 28Q470 | JAMAICA HIGH SCHOOL | 90.0 | 342.0 | 368.0 | 353.0 | 1063.0 | 0 | 64.0 | 76.0 | 8.0 | 150.416667 | 5.944444 | 22.300000 | 16.638889 | 26.777778 | 20112012.0 | 55.800000 | 564.000000 | 75.00000 | 162.000000 | 161.000000 | 166.000000 | 166.000000 | 29.400000 | 79.000000 | 14.000000 | 24.000000 | 34.000000 | 175.000000 | 31.000000 | 235.000000 | 41.700000 | 146.000000 | 25.900000 | 6.000000 | 1.100000 | 332.000000 | 58.900000 | 232.000000 | 41.100000 | 494.857143 | 44.885714 | 33.557143 | 74.471429 | 7.085714 | 15.957143 | 26.471429 | 58.542857 | 11.314286 | 25.528571 | 30.657143 | 21.200000 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.709697 | -73.805547 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 42.000000 | 22.000000 | 771.000000 | 27.000000 | 209.000000 | 7.400000 | 6.700000 | 6.800000 | 7.100000 | 7.300000 | 5.300000 | 5.500000 | 6.500000 | 6.200000 | 5.400000 | 5.900000 | 6.700000 | 7.000000 | 5.800000 | 6.100000 | 6.800000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
423 | 28Q505 | HILLCREST HIGH SCHOOL | 462.0 | 395.0 | 413.0 | 386.0 | 1194.0 | 0 | 241.0 | 362.0 | 50.0 | 310.739130 | 10.869565 | 26.721739 | 20.956522 | 29.521739 | 20112012.0 | 65.000000 | 3103.000000 | 910.00000 | 846.000000 | 641.000000 | 706.000000 | 467.000000 | 15.000000 | 279.000000 | 9.000000 | 138.000000 | 40.000000 | 1134.000000 | 36.500000 | 1136.000000 | 36.600000 | 708.000000 | 22.800000 | 91.000000 | 2.900000 | 1429.000000 | 46.100000 | 1674.000000 | 53.900000 | 783.000000 | 60.214286 | 34.771429 | 57.528571 | 6.214286 | 10.242857 | 28.528571 | 47.300000 | 25.457143 | 42.471429 | 23.371429 | 14.600000 | Queens | 9.000000 | 12.0 | Jamaica | 11432.00000 | 3231.00000 | Traditional | American Sign Language, Arabic, Bengali, Frenc... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 800.000000 | 330.000000 | 8.000000 | 160 05 Highland Avenue\nJamaica, NY 11432\n(40... | 8.000000 | 24.000000 | 40.708758 | -73.802127 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 54.000000 | 83.000000 | 37.000000 | 1668.000000 | 143.000000 | 1077.000000 | 8.400000 | 8.200000 | 8.200000 | 8.600000 | 8.400000 | 8.500000 | 8.600000 | 8.800000 | 7.000000 | 7.000000 | 7.400000 | 8.000000 | 7.900000 | 7.900000 | 8.100000 | 8.500000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
424 | 28Q620 | THOMAS A. EDISON CAREER AND TECHNICAL EDUCATIO... | 422.0 | 452.0 | 478.0 | 442.0 | 1372.0 | 0 | 183.0 | 244.0 | 100.0 | 251.128205 | 8.743590 | 25.105128 | 20.358974 | 27.051282 | 20112012.0 | 54.300000 | 2252.000000 | 540.00000 | 572.000000 | 580.000000 | 560.000000 | 32.000000 | 1.400000 | 257.000000 | 11.400000 | 43.000000 | 111.000000 | 1147.000000 | 50.900000 | 534.000000 | 23.700000 | 476.000000 | 21.100000 | 71.000000 | 3.200000 | 1465.000000 | 65.100000 | 787.000000 | 34.900000 | 617.857143 | 84.814286 | 76.685714 | 90.328571 | 29.557143 | 35.085714 | 47.142857 | 55.271429 | 8.100000 | 9.671429 | 8.528571 | 4.871429 | Queens | 9.000000 | 12.0 | Jamaica | 11432.00000 | 2168.00000 | CTE School | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 330.000000 | 7.000000 | 165 65 84 Avenue\nJamaica, NY 11432\n(40.71587... | 8.000000 | 24.000000 | 40.715876 | -73.798822 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 98.000000 | 49.000000 | 2119.000000 | 127.000000 | 1078.000000 | 7.800000 | 7.600000 | 7.700000 | 7.700000 | 7.700000 | 7.800000 | 7.800000 | 8.400000 | 6.700000 | 5.700000 | 6.500000 | 7.300000 | 7.400000 | 7.000000 | 7.300000 | 7.800000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
425 | 28Q680 | QUEENS GATEWAY TO HEALTH SCIENCES SECONDARY SC... | 99.0 | 513.0 | 523.0 | 502.0 | 1538.0 | 0 | 89.0 | 136.0 | 57.0 | 112.444444 | 4.055556 | 27.611111 | 21.611111 | 31.444444 | 20112012.0 | 55.800000 | 783.000000 | 131.00000 | 127.000000 | 127.000000 | 101.000000 | 1.000000 | 0.100000 | 13.000000 | 1.700000 | 0.000000 | 12.000000 | 286.000000 | 36.500000 | 351.000000 | 44.800000 | 123.000000 | 15.700000 | 21.000000 | 2.700000 | 298.000000 | 38.100000 | 485.000000 | 61.900000 | 99.857143 | 91.900000 | 86.657143 | 94.142857 | 65.714286 | 71.514286 | 20.957143 | 22.642857 | 5.242857 | 5.857143 | 6.728571 | 1.028571 | Queens | 6.000000 | 12.0 | Jamaica | 11432.00000 | 811.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 800.000000 | 230.000000 | 1.000000 | 160 20 Goethals Avenue\nJamaica, NY 11432\n(40... | 8.000000 | 24.000000 | 40.718810 | -73.806500 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 53.000000 | 34.000000 | 598.000000 | 17.000000 | 201.000000 | 8.700000 | 7.700000 | 7.500000 | 7.900000 | 8.000000 | 5.600000 | 5.200000 | 7.000000 | 6.900000 | 5.700000 | 6.200000 | 7.600000 | 7.900000 | 6.300000 | 6.300000 | 7.500000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
426 | 28Q686 | QUEENS METROPOLITAN HIGH SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 217.545455 | 6.818182 | 30.118182 | 28.181818 | 31.181818 | 20112012.0 | 47.300000 | 663.000000 | 294.00000 | 369.000000 | 155.308756 | 147.334928 | 24.000000 | 3.600000 | 106.000000 | 16.000000 | 41.000000 | 20.000000 | 80.000000 | 12.100000 | 32.000000 | 4.800000 | 256.000000 | 38.600000 | 268.000000 | 40.400000 | 329.000000 | 49.600000 | 334.000000 | 50.400000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Forest Hills | 11375.00000 | 1139.00000 | Traditional | French, Italian, Spanish | Biology, Calculus AB, Calculus BC, English Lan... | No courses | No courses | 800.000000 | 250.000000 | 1.000000 | 91 30 Metropolitan Avenue Forest Hills\nNY 113... | 6.000000 | 29.000000 | 40.710436 | -73.850630 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 81.000000 | 81.000000 | 33.000000 | 328.000000 | 22.000000 | 131.000000 | 8.200000 | 7.300000 | 7.400000 | 7.100000 | 6.400000 | 6.000000 | 6.700000 | 6.900000 | 6.200000 | 6.100000 | 6.400000 | 6.900000 | 6.900000 | 6.500000 | 6.800000 | 7.000000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
427 | 28Q687 | QUEENS HIGH SCHOOL FOR THE SCIENCES AT YORK CO... | 121.0 | 612.0 | 660.0 | 596.0 | 1868.0 | 0 | 215.0 | 338.0 | 275.0 | 143.133333 | 5.600000 | 26.006667 | 20.400000 | 31.266667 | 20112012.0 | 25.600000 | 418.000000 | 102.00000 | 102.000000 | 99.000000 | 115.000000 | 1.000000 | 0.200000 | 1.000000 | 0.200000 | 0.000000 | 0.000000 | 311.000000 | 74.400000 | 44.000000 | 10.500000 | 33.000000 | 7.900000 | 28.000000 | 6.700000 | 236.000000 | 56.500000 | 182.000000 | 43.500000 | 97.000000 | 93.616667 | 93.250000 | 99.616667 | 86.533333 | 92.200000 | 6.700000 | 7.433333 | 0.350000 | 0.400000 | 6.200000 | 0.183333 | Queens | 9.000000 | 12.0 | Jamaica | 11433.00000 | 419.00000 | Specialized School | Chinese, Spanish | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 800.000000 | 318.000000 | 1.000000 | 94 50 159 Street\nJamaica, NY 11433\n(40.70099... | 12.000000 | 27.000000 | 40.700999 | -73.798154 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 99.000000 | 96.000000 | 62.000000 | 399.000000 | 26.000000 | 247.000000 | 8.600000 | 7.700000 | 7.500000 | 7.900000 | 7.400000 | 6.700000 | 7.100000 | 7.900000 | 7.200000 | 6.500000 | 6.800000 | 7.900000 | 7.700000 | 6.900000 | 7.100000 | 7.900000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
428 | 28Q690 | HIGH SCHOOL FOR LAW ENFORCEMENT AND PUBLIC SAFETY | 74.0 | 406.0 | 406.0 | 384.0 | 1196.0 | 0 | 19.0 | 19.0 | 0.0 | 90.444444 | 3.185185 | 26.759259 | 24.296296 | 28.888889 | 20112012.0 | 58.300000 | 536.000000 | 197.00000 | 110.000000 | 128.000000 | 101.000000 | 11.000000 | 2.100000 | 89.000000 | 16.600000 | 21.000000 | 42.000000 | 45.000000 | 8.400000 | 395.000000 | 73.700000 | 81.000000 | 15.100000 | 7.000000 | 1.300000 | 284.000000 | 53.000000 | 252.000000 | 47.000000 | 110.833333 | 71.660000 | 49.900000 | 69.180000 | 4.120000 | 5.860000 | 45.800000 | 63.280000 | 21.780000 | 30.820000 | 21.520000 | 6.280000 | Queens | 9.000000 | 12.0 | Jamaica | 11434.00000 | 565.00000 | Traditional | Spanish | United States History | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 116 25 Guy R Brewer Boulevard\nJamaica, NY 114... | 12.000000 | 28.000000 | 40.686178 | -73.784083 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 68.000000 | 93.000000 | 30.000000 | 345.000000 | 27.000000 | 144.000000 | 7.600000 | 7.000000 | 7.000000 | 7.200000 | 7.600000 | 7.300000 | 8.100000 | 8.200000 | 6.100000 | 5.600000 | 6.100000 | 6.800000 | 7.100000 | 6.700000 | 7.000000 | 7.400000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
429 | 28Q896 | YOUNG WOMEN'S LEADERSHIP SCHOOL, QUEENS | 68.0 | 439.0 | 445.0 | 432.0 | 1316.0 | 0 | 6.0 | 6.0 | 0.0 | 68.500000 | 3.214286 | 21.871429 | 16.428571 | 26.928571 | 20112012.0 | 56.900000 | 510.000000 | 118.00000 | 58.000000 | 49.000000 | 52.000000 | 14.000000 | 2.700000 | 46.000000 | 9.000000 | 6.000000 | 1.000000 | 107.000000 | 21.000000 | 292.000000 | 57.300000 | 94.000000 | 18.400000 | 12.000000 | 2.400000 | 0.000000 | 0.000000 | 510.000000 | 100.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Jamaica | 11432.00000 | 555.00000 | All-Girls School | French, Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 800.000000 | 257.000000 | 1.000000 | 150 91 87 Road\nJamaica, NY 11432\n(40.7082078... | 8.000000 | 24.000000 | 40.708208 | -73.804078 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 99.000000 | 86.000000 | 79.000000 | 464.000000 | 24.000000 | 351.000000 | 8.200000 | 7.100000 | 7.000000 | 7.300000 | 7.200000 | 5.100000 | 5.700000 | 6.500000 | 6.200000 | 5.700000 | 6.300000 | 7.300000 | 7.200000 | 6.000000 | 6.300000 | 7.000000 | 28 | DISTRICT 28 | 91.70 | 37009 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
430 | 29Q248 | QUEENS PREPARATORY ACADEMY | 52.0 | 360.0 | 380.0 | 359.0 | 1099.0 | 0 | 15.0 | 15.0 | 0.0 | 59.607143 | 2.392857 | 25.475000 | 22.928571 | 27.714286 | 20112012.0 | 52.600000 | 441.000000 | 133.00000 | 109.000000 | 94.000000 | 105.000000 | 20.000000 | 4.500000 | 50.000000 | 11.300000 | 31.000000 | 6.000000 | 23.000000 | 5.200000 | 372.000000 | 84.400000 | 36.000000 | 8.200000 | 4.000000 | 0.900000 | 247.000000 | 56.000000 | 194.000000 | 44.000000 | 58.200000 | 75.933333 | 61.833333 | 81.100000 | 7.466667 | 9.833333 | 54.400000 | 71.300000 | 14.066667 | 18.900000 | 14.566667 | 8.100000 | Queens | 9.000000 | 12.0 | Springfield Gardens | 11413.00000 | 465.00000 | Traditional | Spanish | Biology, Calculus AB, Calculus BC, English Lan... | No courses | No courses | 810.000000 | 257.000000 | 1.000000 | 143 10 Springfield Boulevard Springfield Garde... | 12.000000 | 31.000000 | 40.668232 | -73.756840 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 42.000000 | 78.000000 | 13.000000 | 162.000000 | 18.000000 | 49.000000 | 7.700000 | 7.700000 | 7.700000 | 8.000000 | 5.700000 | 6.200000 | 6.700000 | 6.800000 | 6.100000 | 6.100000 | 6.700000 | 7.400000 | 6.500000 | 6.700000 | 7.000000 | 7.400000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
431 | 29Q259 | PATHWAYS COLLEGE PREPARATORY SCHOOL: A COLLEGE... | 46.0 | 401.0 | 397.0 | 375.0 | 1173.0 | 0 | 29.0 | 71.0 | 0.0 | 66.555556 | 2.777778 | 23.211111 | 20.111111 | 26.166667 | 20112012.0 | 48.800000 | 555.000000 | 106.00000 | 66.000000 | 72.000000 | 66.000000 | 13.000000 | 2.300000 | 89.000000 | 16.000000 | 39.000000 | 18.000000 | 12.000000 | 2.200000 | 523.000000 | 94.200000 | 16.000000 | 2.900000 | 4.000000 | 0.700000 | 296.000000 | 53.300000 | 259.000000 | 46.700000 | 46.750000 | 79.266667 | 67.566667 | 85.400000 | 0.000000 | 0.000000 | 67.566667 | 85.400000 | 11.733333 | 14.600000 | 11.566667 | 9.200000 | Queens | 6.000000 | 12.0 | Saint Albans | 11412.00000 | 563.00000 | Traditional | Spanish | English Literature and Composition, Environmen... | No courses | No courses | 800.000000 | 307.000000 | 1.000000 | 109 89 204 Street\nSaint Albans, NY 11412\n(40... | 12.000000 | 27.000000 | 40.706388 | -73.753530 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 76.000000 | 42.000000 | 387.000000 | 25.000000 | 200.000000 | 7.900000 | 7.300000 | 7.300000 | 7.500000 | 6.000000 | 4.100000 | 4.600000 | 5.700000 | 5.300000 | 5.700000 | 6.300000 | 7.100000 | 6.400000 | 5.700000 | 6.100000 | 6.800000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
432 | 29Q265 | EXCELSIOR PREPARATORY HIGH SCHOOL | 49.0 | 402.0 | 398.0 | 402.0 | 1202.0 | 0 | 0.0 | 0.0 | 0.0 | 78.178571 | 2.928571 | 27.007143 | 24.392857 | 29.642857 | 20112012.0 | 50.800000 | 443.000000 | 143.00000 | 129.000000 | 88.000000 | 83.000000 | 10.000000 | 2.300000 | 65.000000 | 14.700000 | 43.000000 | 9.000000 | 19.000000 | 4.300000 | 367.000000 | 82.800000 | 43.000000 | 9.700000 | 2.000000 | 0.500000 | 252.000000 | 56.900000 | 191.000000 | 43.100000 | 75.600000 | 69.275000 | 51.975000 | 75.250000 | 7.875000 | 11.650000 | 44.125000 | 63.600000 | 17.350000 | 24.750000 | 27.750000 | 2.150000 | Queens | 9.000000 | 12.0 | Springfield Gardens | 11413.00000 | 480.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | Arabic, Chinese (Mandarin), French, German, Ko... | 810.000000 | 307.000000 | 1.000000 | 143 10 Springfield Boulevard Springfield Garde... | 12.000000 | 31.000000 | 40.668232 | -73.756840 | 1.0 | 1.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 92.000000 | 26.000000 | 354.000000 | 24.000000 | 112.000000 | 7.500000 | 6.900000 | 6.800000 | 7.300000 | 7.400000 | 7.700000 | 7.900000 | 8.400000 | 5.700000 | 5.700000 | 6.200000 | 7.100000 | 6.900000 | 6.700000 | 7.000000 | 7.600000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
433 | 29Q272 | GEORGE WASHINGTON CARVER HIGH SCHOOL FOR THE S... | 59.0 | 436.0 | 427.0 | 424.0 | 1287.0 | 0 | 14.0 | 21.0 | 0.0 | 94.840000 | 3.360000 | 28.120000 | 23.600000 | 31.040000 | 20112012.0 | 45.000000 | 474.000000 | 163.00000 | 119.000000 | 98.000000 | 94.000000 | 8.000000 | 1.700000 | 43.000000 | 9.100000 | 26.000000 | 4.000000 | 44.000000 | 9.300000 | 350.000000 | 73.800000 | 67.000000 | 14.100000 | 6.000000 | 1.300000 | 224.000000 | 47.300000 | 250.000000 | 52.700000 | 72.428571 | 74.928571 | 65.742857 | 86.242857 | 15.857143 | 21.214286 | 49.885714 | 65.042857 | 9.200000 | 13.757143 | 20.200000 | 4.214286 | Queens | 9.000000 | 12.0 | Springfield Gardens | 11413.00000 | 498.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 315.000000 | 2.000000 | 143 10 Springfield Boulevard Springfield Garde... | 12.000000 | 31.000000 | 40.668232 | -73.756840 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 86.000000 | 100.000000 | 32.000000 | 374.000000 | 26.000000 | 138.000000 | 7.800000 | 7.300000 | 7.300000 | 7.700000 | 7.200000 | 7.700000 | 7.800000 | 7.900000 | 5.900000 | 5.500000 | 6.200000 | 7.100000 | 7.000000 | 6.800000 | 7.100000 | 7.600000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
434 | 29Q283 | PREPARATORY ACADEMY FOR WRITERS: A COLLEGE BOA... | 43.0 | 370.0 | 367.0 | 363.0 | 1100.0 | 0 | 40.0 | 43.0 | 0.0 | 55.500000 | 2.150000 | 26.070000 | 23.750000 | 28.250000 | 20112012.0 | 51.200000 | 473.000000 | 94.00000 | 79.000000 | 49.000000 | 49.000000 | 9.000000 | 1.900000 | 68.000000 | 14.400000 | 20.000000 | 25.000000 | 16.000000 | 3.400000 | 398.000000 | 84.100000 | 49.000000 | 10.400000 | 4.000000 | 0.800000 | 204.000000 | 43.100000 | 269.000000 | 56.900000 | 19.250000 | 79.200000 | 33.300000 | 42.150000 | 0.000000 | 0.000000 | 33.300000 | 42.150000 | 45.800000 | 57.850000 | 6.950000 | 13.900000 | Queens | 6.000000 | 12.0 | Springfield Gardens | 11413.00000 | 522.00000 | Traditional | Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 305.000000 | 1.000000 | 143 10 Springfield Boulevard Springfield Garde... | 12.000000 | 31.000000 | 40.668232 | -73.756840 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 83.000000 | 100.000000 | 18.000000 | 335.000000 | 27.000000 | 66.000000 | 8.100000 | 7.600000 | 7.500000 | 7.700000 | 7.900000 | 8.500000 | 7.900000 | 8.400000 | 7.000000 | 7.200000 | 7.200000 | 7.900000 | 7.600000 | 7.800000 | 7.500000 | 8.000000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
435 | 29Q326 | CAMBRIA HEIGHTS ACADEMY | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 43.666667 | 1.888889 | 23.055556 | 22.555556 | 23.555556 | 20112012.0 | 71.100000 | 147.000000 | 87.00000 | 60.000000 | 155.308756 | 147.334928 | 3.000000 | 2.000000 | 20.000000 | 13.600000 | 10.000000 | 5.000000 | 5.000000 | 3.400000 | 128.000000 | 87.100000 | 11.000000 | 7.500000 | 3.000000 | 2.000000 | 81.000000 | 55.100000 | 66.000000 | 44.900000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Hollis | 11423.00000 | 336.00000 | Traditional | Spanish | English Literature and Composition, Environmen... | Calculus AB | English, French, Spanish | 900.000000 | 400.000000 | 1.000000 | 188 04 91St Avenue\nHollis, NY 11423\n(40.7118... | 12.000000 | 23.000000 | 40.711818 | -73.771192 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 100.000000 | 93.000000 | 70.000000 | 7.000000 | 67.000000 | 8.700000 | 8.100000 | 7.700000 | 7.900000 | 8.600000 | 8.500000 | 9.100000 | 9.300000 | 7.100000 | 6.800000 | 7.300000 | 7.800000 | 8.100000 | 7.800000 | 8.100000 | 8.300000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
436 | 29Q492 | MATHEMATICS, SCIENCE RESEARCH AND TECHNOLOGY M... | 78.0 | 400.0 | 426.0 | 394.0 | 1220.0 | 0 | 22.0 | 31.0 | 8.0 | 89.882353 | 3.764706 | 23.847059 | 18.058824 | 28.411765 | 20112012.0 | 47.900000 | 412.000000 | 101.00000 | 96.000000 | 107.000000 | 108.000000 | 21.000000 | 5.100000 | 43.000000 | 10.400000 | 0.000000 | 22.000000 | 28.000000 | 6.800000 | 328.000000 | 79.600000 | 49.000000 | 11.900000 | 3.000000 | 0.700000 | 249.000000 | 60.400000 | 163.000000 | 39.600000 | 109.714286 | 68.457143 | 50.914286 | 74.228571 | 10.128571 | 14.828571 | 40.771429 | 59.400000 | 17.528571 | 25.771429 | 22.285714 | 7.428571 | Queens | 9.000000 | 12.0 | Cambria Heights | 11411.00000 | 416.00000 | Traditional | Spanish | Biology | Biology, United States History, World History | No courses | 800.000000 | 225.000000 | 1.000000 | 207 01 116Th Avenue Cambria Heights\nNY 11411\... | 13.000000 | 27.000000 | 40.695536 | -73.734918 | 1.0 | 1.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 87.000000 | 74.000000 | 354.000000 | 20.000000 | 291.000000 | 7.600000 | 7.200000 | 7.300000 | 7.300000 | 6.200000 | 5.000000 | 5.200000 | 5.700000 | 6.000000 | 5.500000 | 6.100000 | 6.900000 | 6.600000 | 5.900000 | 6.200000 | 6.700000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
437 | 29Q494 | LAW, GOVERNMENT AND COMMUNITY SERVICE HIGH SCHOOL | 52.0 | 385.0 | 377.0 | 377.0 | 1139.0 | 0 | 0.0 | 0.0 | 0.0 | 82.818182 | 2.954545 | 28.450000 | 24.909091 | 31.409091 | 20112012.0 | 45.100000 | 454.000000 | 196.00000 | 119.000000 | 75.000000 | 64.000000 | 13.000000 | 2.900000 | 63.000000 | 13.900000 | 3.000000 | 36.000000 | 20.000000 | 4.400000 | 378.000000 | 83.300000 | 48.000000 | 10.600000 | 4.000000 | 0.900000 | 221.000000 | 48.700000 | 233.000000 | 51.300000 | 101.571429 | 63.100000 | 50.814286 | 80.414286 | 7.142857 | 10.942857 | 43.671429 | 69.500000 | 12.271429 | 19.585714 | 19.300000 | 13.357143 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.685276 | -73.752740 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.000000 | 100.000000 | 24.000000 | 304.000000 | 22.000000 | 95.000000 | 7.000000 | 6.800000 | 6.700000 | 7.200000 | 7.700000 | 8.200000 | 8.300000 | 8.600000 | 5.300000 | 5.200000 | 5.400000 | 6.400000 | 6.700000 | 6.700000 | 6.800000 | 7.400000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
438 | 29Q496 | BUSINESS, COMPUTER APPLICATIONS & ENTREPRENEUR... | 49.0 | 379.0 | 414.0 | 359.0 | 1152.0 | 0 | 0.0 | 0.0 | 0.0 | 82.117647 | 2.588235 | 32.205882 | 28.647059 | 35.294118 | 20112012.0 | 43.500000 | 353.000000 | 134.00000 | 74.000000 | 72.000000 | 73.000000 | 23.000000 | 6.500000 | 67.000000 | 19.000000 | 6.000000 | 30.000000 | 22.000000 | 6.200000 | 301.000000 | 85.300000 | 19.000000 | 5.400000 | 3.000000 | 0.800000 | 237.000000 | 67.100000 | 116.000000 | 32.900000 | 105.000000 | 47.900000 | 32.057143 | 68.371429 | 2.642857 | 5.585714 | 29.385714 | 62.771429 | 15.885714 | 31.628571 | 34.800000 | 13.871429 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.685276 | -73.752740 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 100.000000 | 48.000000 | 296.000000 | 19.000000 | 161.000000 | 7.500000 | 7.400000 | 7.300000 | 7.500000 | 8.700000 | 8.700000 | 8.900000 | 9.100000 | 5.700000 | 5.700000 | 6.100000 | 6.900000 | 7.300000 | 7.300000 | 7.400000 | 7.800000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
439 | 29Q498 | HUMANITIES & ARTS MAGNET HIGH SCHOOL | 62.0 | 393.0 | 381.0 | 377.0 | 1151.0 | 0 | 0.0 | 0.0 | 0.0 | 86.818182 | 3.090909 | 29.009091 | 26.272727 | 31.136364 | 20112012.0 | 51.500000 | 481.000000 | 191.00000 | 128.000000 | 86.000000 | 76.000000 | 17.000000 | 3.500000 | 71.000000 | 14.800000 | 34.000000 | 9.000000 | 19.000000 | 4.000000 | 413.000000 | 85.900000 | 41.000000 | 8.500000 | 7.000000 | 1.500000 | 206.000000 | 42.800000 | 275.000000 | 57.200000 | 91.714286 | 66.814286 | 52.500000 | 76.542857 | 4.500000 | 6.500000 | 48.000000 | 70.057143 | 14.314286 | 23.457143 | 21.071429 | 8.957143 | Queens | 9.000000 | 12.0 | Cambria Heights | 11411.00000 | 513.00000 | Traditional | French, Spanish | Art History, English Language and Composition,... | No courses | No courses | 800.000000 | 245.000000 | 2.000000 | 207 01 116Th Avenue Cambria Heights\nNY 11411\... | 13.000000 | 27.000000 | 40.695536 | -73.734918 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 75.000000 | 92.000000 | 60.000000 | 320.000000 | 24.000000 | 249.000000 | 6.800000 | 6.800000 | 7.000000 | 7.100000 | 7.400000 | 7.600000 | 8.100000 | 8.400000 | 5.500000 | 5.200000 | 5.900000 | 6.700000 | 6.600000 | 6.500000 | 7.000000 | 7.400000 | 29 | DISTRICT 29 | 92.14 | 27232 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
440 | 30Q286 | YOUNG WOMEN'S LEADERSHIP SCHOOL, ASTORIA | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 76.888889 | 3.555556 | 21.444444 | 20.444444 | 22.555556 | 20112012.0 | 68.100000 | 495.000000 | 78.00000 | 79.000000 | 80.000000 | 147.334928 | 27.000000 | 5.500000 | 26.000000 | 5.300000 | 10.000000 | 1.000000 | 194.000000 | 39.200000 | 21.000000 | 4.200000 | 200.000000 | 40.400000 | 80.000000 | 16.200000 | 0.000000 | 0.000000 | 495.000000 | 100.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 6.000000 | 12.0 | Astoria | 11102.00000 | 576.00000 | All-Girls School | Spanish | No courses | No courses | No courses | 800.000000 | 320.000000 | 1.000000 | 23 15 Newtown Avenue\nAstoria, NY 11102\n(40.7... | 1.000000 | 22.000000 | 40.771251 | -73.924602 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 99.000000 | 100.000000 | 85.000000 | 422.000000 | 28.000000 | 331.000000 | 8.900000 | 8.000000 | 8.100000 | 8.200000 | 7.500000 | 6.600000 | 7.100000 | 7.600000 | 8.100000 | 7.100000 | 7.700000 | 8.300000 | 8.100000 | 7.200000 | 7.700000 | 8.000000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
441 | 30Q301 | ACADEMY FOR CAREERS IN TELEVISION AND FILM | 98.0 | 410.0 | 440.0 | 405.0 | 1255.0 | 0 | 0.0 | 0.0 | 0.0 | 72.285714 | 3.214286 | 21.857143 | 17.857143 | 24.285714 | 20112012.0 | 54.100000 | 419.000000 | 123.00000 | 106.000000 | 90.000000 | 100.000000 | 12.000000 | 2.900000 | 61.000000 | 14.600000 | 35.000000 | 4.000000 | 25.000000 | 6.000000 | 86.000000 | 20.500000 | 224.000000 | 53.500000 | 79.000000 | 18.900000 | 223.000000 | 53.200000 | 196.000000 | 46.800000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 470.00000 | CTE School | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 900.000000 | 330.000000 | 1.000000 | 1 50 51St Avenue\nLong Island City, NY 11101\n... | 2.000000 | 26.000000 | 40.741137 | -73.949689 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 100.000000 | 64.000000 | 296.000000 | 25.000000 | 195.000000 | 9.000000 | 8.800000 | 8.200000 | 8.800000 | 8.100000 | 8.600000 | 8.500000 | 8.900000 | 7.300000 | 6.800000 | 7.700000 | 8.100000 | 8.200000 | 8.100000 | 8.100000 | 8.600000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
442 | 30Q445 | WILLIAM CULLEN BRYANT HIGH SCHOOL | 395.0 | 414.0 | 449.0 | 412.0 | 1275.0 | 0 | 243.0 | 330.0 | 97.0 | 311.608696 | 11.152174 | 24.619565 | 18.804348 | 28.130435 | 20112012.0 | 33.700000 | 2945.000000 | 907.00000 | 861.000000 | 570.000000 | 607.000000 | 527.000000 | 17.900000 | 355.000000 | 12.100000 | 72.000000 | 176.000000 | 852.000000 | 28.900000 | 216.000000 | 7.300000 | 1438.000000 | 48.800000 | 427.000000 | 14.500000 | 1581.000000 | 53.700000 | 1364.000000 | 46.300000 | 833.428571 | 51.957143 | 40.614286 | 77.857143 | 14.700000 | 28.242857 | 25.914286 | 49.600000 | 11.371429 | 22.214286 | 27.842857 | 17.342857 | Queens | 9.000000 | 12.0 | Astoria | 11103.00000 | 2627.00000 | Traditional | French, Italian, Modern Greek, Spanish, Spanis... | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | No courses | 845.000000 | 330.000000 | 3.000000 | 48 10 31 Avenue\nAstoria, NY 11103\n(40.758124... | 1.000000 | 26.000000 | 40.758125 | -73.910333 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 79.000000 | 82.000000 | 23.000000 | 2256.000000 | 138.000000 | 610.000000 | 7.500000 | 7.000000 | 7.100000 | 7.300000 | 7.500000 | 6.600000 | 7.400000 | 7.700000 | 6.600000 | 5.600000 | 6.500000 | 7.200000 | 7.200000 | 6.400000 | 7.000000 | 7.400000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
443 | 30Q450 | LONG ISLAND CITY HIGH SCHOOL | 392.0 | 403.0 | 420.0 | 395.0 | 1218.0 | 0 | 406.0 | 805.0 | 169.0 | 285.363636 | 11.681818 | 21.636364 | 14.431818 | 26.500000 | 20112012.0 | 62.800000 | 3386.000000 | 949.00000 | 1043.000000 | 797.000000 | 597.000000 | 448.000000 | 13.200000 | 466.000000 | 13.800000 | 169.000000 | 186.000000 | 448.000000 | 13.200000 | 387.000000 | 11.400000 | 2122.000000 | 62.700000 | 423.000000 | 12.500000 | 1738.000000 | 51.300000 | 1648.000000 | 48.700000 | 823.428571 | 52.628571 | 46.514286 | 88.314286 | 12.600000 | 23.728571 | 33.914286 | 64.585714 | 6.142857 | 11.685714 | 29.285714 | 14.871429 | Queens | 9.000000 | 12.0 | Astoria | 11106.00000 | 2522.00000 | Traditional | Chinese, French, Italian, Modern Greek, Spanis... | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 829.000000 | 350.000000 | 7.000000 | 14 30\nBroadway Astoria, NY 11106\n(40.7657639... | 1.000000 | 22.000000 | 40.765764 | -73.932726 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 70.000000 | 81.000000 | 9.000000 | 2329.000000 | 165.000000 | 295.000000 | 6.900000 | 6.400000 | 6.700000 | 6.700000 | 6.600000 | 6.700000 | 7.300000 | 7.400000 | 5.600000 | 5.400000 | 6.000000 | 6.700000 | 6.300000 | 6.100000 | 6.700000 | 7.000000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
444 | 30Q501 | FRANK SINATRA SCHOOL OF THE ARTS HIGH SCHOOL | 174.0 | 504.0 | 496.0 | 494.0 | 1494.0 | 0 | 108.0 | 136.0 | 38.0 | 179.800000 | 6.333333 | 27.880000 | 20.533333 | 33.533333 | 20112012.0 | 29.700000 | 756.000000 | 177.00000 | 178.000000 | 226.000000 | 175.000000 | 1.000000 | 0.100000 | 14.000000 | 1.900000 | 0.000000 | 0.000000 | 66.000000 | 8.700000 | 128.000000 | 16.900000 | 206.000000 | 27.200000 | 350.000000 | 46.300000 | 227.000000 | 30.000000 | 529.000000 | 70.000000 | 146.571429 | 93.128571 | 85.471429 | 91.600000 | 33.628571 | 35.528571 | 51.842857 | 56.071429 | 7.671429 | 8.400000 | 5.528571 | 0.928571 | Queens | 9.000000 | 12.0 | Astoria | 11106.00000 | 756.00000 | Traditional | Spanish | Calculus AB, Calculus BC, English Language and... | No courses | No courses | 745.000000 | 315.000000 | 6.000000 | 35 12 35Th Avenue\nAstoria, NY 11106\n(40.7565... | 1.000000 | 26.000000 | 40.756528 | -73.925141 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 76.000000 | 50.000000 | 637.000000 | 35.000000 | 354.000000 | 8.400000 | 7.300000 | 7.500000 | 7.500000 | 7.300000 | 5.600000 | 5.800000 | 6.600000 | 7.000000 | 5.800000 | 6.300000 | 7.100000 | 7.600000 | 6.200000 | 6.500000 | 7.100000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
445 | 30Q502 | INFORMATION TECHNOLOGY HIGH SCHOOL | 148.0 | 407.0 | 434.0 | 398.0 | 1239.0 | 0 | 51.0 | 74.0 | 13.0 | 119.600000 | 4.457143 | 24.334286 | 19.657143 | 27.542857 | 20112012.0 | 73.700000 | 917.000000 | 273.00000 | 239.000000 | 200.000000 | 205.000000 | 88.000000 | 9.600000 | 147.000000 | 16.000000 | 57.000000 | 44.000000 | 143.000000 | 15.600000 | 166.000000 | 18.100000 | 519.000000 | 56.600000 | 86.000000 | 9.400000 | 658.000000 | 71.800000 | 259.000000 | 28.200000 | 179.428571 | 66.060000 | 55.900000 | 84.640000 | 13.840000 | 20.780000 | 42.040000 | 63.860000 | 10.200000 | 15.360000 | 18.600000 | 13.420000 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 920.00000 | Traditional | Spanish | Calculus AB, English Language and Composition | No courses | No courses | 715.000000 | 205.000000 | 1.000000 | 21 16 44Th Road\nLong Island City, NY 11101\n(... | 2.000000 | 26.000000 | 40.747924 | -73.946566 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 91.000000 | 95.000000 | 49.000000 | 832.000000 | 58.000000 | 438.000000 | 8.000000 | 7.300000 | 7.200000 | 7.400000 | 7.000000 | 6.500000 | 6.200000 | 7.000000 | 6.500000 | 6.100000 | 6.600000 | 7.100000 | 7.100000 | 6.600000 | 6.700000 | 7.200000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
446 | 30Q555 | NEWCOMERS HIGH SCHOOL | 143.0 | 323.0 | 475.0 | 329.0 | 1127.0 | 0 | 119.0 | 163.0 | 140.0 | 249.294118 | 8.941176 | 26.976471 | 20.000000 | 30.823529 | 20112012.0 | 81.200000 | 932.000000 | 147.00000 | 376.000000 | 217.000000 | 192.000000 | 842.000000 | 90.300000 | 0.000000 | 0.000000 | 34.384091 | 29.997727 | 450.000000 | 48.300000 | 52.000000 | 5.600000 | 405.000000 | 43.500000 | 24.000000 | 2.600000 | 496.000000 | 53.200000 | 436.000000 | 46.800000 | 227.142857 | 56.457143 | 49.142857 | 87.214286 | 16.185714 | 28.928571 | 32.971429 | 58.314286 | 7.357143 | 12.900000 | 27.028571 | 14.042857 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 929.00000 | International School | Chinese (Mandarin), Spanish Native Language Arts | Calculus AB, Calculus BC, Chemistry, Chinese L... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 28 01 41 Avenue\nLong Island City, NY 11101\n(... | 1.000000 | 26.000000 | 40.751381 | -73.937450 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 85.000000 | 92.000000 | 35.000000 | 864.000000 | 66.000000 | 319.000000 | 8.400000 | 7.600000 | 7.300000 | 7.700000 | 8.100000 | 6.600000 | 7.000000 | 8.000000 | 7.400000 | 5.600000 | 6.600000 | 7.000000 | 8.000000 | 6.600000 | 7.000000 | 7.500000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
447 | 30Q575 | ACADEMY OF AMERICAN STUDIES | 135.0 | 487.0 | 492.0 | 491.0 | 1470.0 | 0 | 101.0 | 170.0 | 119.0 | 129.500000 | 4.266667 | 30.620000 | 27.200000 | 32.966667 | 20112012.0 | 52.400000 | 704.000000 | 213.00000 | 176.000000 | 173.000000 | 142.000000 | 40.000000 | 5.700000 | 56.000000 | 8.000000 | 27.000000 | 7.000000 | 205.000000 | 29.100000 | 48.000000 | 6.800000 | 244.000000 | 34.700000 | 207.000000 | 29.400000 | 317.000000 | 45.000000 | 387.000000 | 55.000000 | 135.428571 | 84.128571 | 80.100000 | 95.257143 | 41.557143 | 49.471429 | 38.557143 | 45.785714 | 4.042857 | 4.742857 | 12.500000 | 2.028571 | Queens | 9.000000 | 12.0 | Long Island City | 11101.00000 | 810.00000 | Traditional | French, Spanish | Art History, Biology, Calculus AB, English Lan... | No courses | No courses | 950.000000 | 415.000000 | 2.000000 | 28 04 41 Avenue\nLong Island City, NY 11101\n(... | 1.000000 | 26.000000 | 40.751301 | -73.937424 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 96.000000 | 88.000000 | 27.000000 | 645.000000 | 36.000000 | 175.000000 | 8.100000 | 7.300000 | 7.400000 | 7.600000 | 7.200000 | 6.700000 | 6.900000 | 7.500000 | 6.800000 | 6.000000 | 6.800000 | 7.700000 | 7.400000 | 6.700000 | 7.000000 | 7.600000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
448 | 30Q580 | BACCALAUREATE SCHOOL FOR GLOBAL EDUCATION | 61.0 | 524.0 | 568.0 | 544.0 | 1636.0 | 0 | 0.0 | 0.0 | 0.0 | 80.076923 | 3.846154 | 20.469231 | 17.307692 | 23.076923 | 20112012.0 | 32.200000 | 440.000000 | 79.00000 | 69.000000 | 53.000000 | 58.000000 | 0.000000 | 0.000000 | 1.000000 | 0.200000 | 0.000000 | 0.000000 | 153.000000 | 34.800000 | 14.000000 | 3.200000 | 107.000000 | 24.300000 | 164.000000 | 37.300000 | 197.000000 | 44.800000 | 243.000000 | 55.200000 | 61.166667 | 96.400000 | 90.433333 | 93.733333 | 35.983333 | 37.000000 | 54.433333 | 56.700000 | 5.966667 | 6.266667 | 3.133333 | 0.466667 | Queens | 7.000000 | 12.0 | Astoria | 11106.00000 | 500.00000 | Traditional | Chinese (Mandarin), French, Spanish | No courses | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 34 12 36 Avenue\nAstoria, NY 11106\n(40.755174... | 1.000000 | 26.000000 | 40.755175 | -73.926824 | 1.0 | 0.0 | 0.0 | 0.0 | 1.0 | 1.0 | 1.0 | 0.0 | 97.000000 | 55.000000 | 39.000000 | 390.000000 | 17.000000 | 152.000000 | 8.800000 | 7.300000 | 7.400000 | 8.100000 | 8.200000 | 6.000000 | 6.000000 | 7.100000 | 8.000000 | 7.100000 | 7.400000 | 8.400000 | 8.300000 | 6.800000 | 7.000000 | 7.900000 | 30 | DISTRICT 30 | 92.79 | 39742 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
449 | 31R047 | CSI HIGH SCHOOL FOR INTERNATIONAL STUDIES | 137.0 | 452.0 | 451.0 | 450.0 | 1353.0 | 0 | 0.0 | 0.0 | 0.0 | 89.000000 | 3.240000 | 27.296000 | 23.720000 | 30.120000 | 20112012.0 | 29.000000 | 532.000000 | 121.00000 | 138.000000 | 125.000000 | 148.000000 | 1.000000 | 0.200000 | 74.000000 | 13.900000 | 37.000000 | 7.000000 | 61.000000 | 11.500000 | 64.000000 | 12.000000 | 95.000000 | 17.900000 | 311.000000 | 58.500000 | 221.000000 | 41.500000 | 311.000000 | 58.500000 | 84.333333 | 94.866667 | 82.600000 | 87.033333 | 13.133333 | 13.833333 | 69.466667 | 73.200000 | 12.266667 | 12.966667 | 4.333333 | 0.866667 | Staten Island | 9.000000 | 12.0 | Staten Island | 10314.00000 | 527.00000 | Traditional | Chinese (Mandarin), Japanese, Spanish | Biology, Calculus AB, Comparative Government a... | No courses | No courses | 730.000000 | 350.000000 | 1.000000 | 100 Essex Drive Staten Island\nNY 10314\n(40.5... | 2.000000 | 51.000000 | 40.582022 | -74.157848 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 94.000000 | 94.000000 | 52.000000 | 488.000000 | 31.000000 | 257.000000 | 8.500000 | 8.000000 | 7.700000 | 7.800000 | 7.200000 | 6.500000 | 6.700000 | 7.400000 | 6.900000 | 5.900000 | 6.500000 | 7.200000 | 7.600000 | 6.800000 | 7.000000 | 7.500000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
450 | 31R064 | GAYNOR MCCOWN EXPEDITIONARY LEARNING SCHOOL | 61.0 | 398.0 | 412.0 | 385.0 | 1195.0 | 0 | 0.0 | 0.0 | 0.0 | 66.136364 | 2.681818 | 24.781818 | 22.409091 | 27.181818 | 20112012.0 | 35.400000 | 408.000000 | 121.00000 | 111.000000 | 93.000000 | 83.000000 | 4.000000 | 1.000000 | 93.000000 | 22.800000 | 42.000000 | 4.000000 | 24.000000 | 5.900000 | 64.000000 | 15.700000 | 72.000000 | 17.600000 | 245.000000 | 60.000000 | 212.000000 | 52.000000 | 196.000000 | 48.000000 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Staten Island | 9.000000 | 12.0 | Staten Island | 10314.00000 | 467.00000 | Traditional | Spanish | Biology, Calculus AB, English Literature and C... | No courses | No courses | 800.000000 | 220.000000 | 1.000000 | 100 Essex Drive Staten Island\nNY 10314\n(40.5... | 2.000000 | 51.000000 | 40.582022 | -74.157848 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 95.000000 | 92.000000 | 52.000000 | 286.000000 | 23.000000 | 146.000000 | 8.000000 | 7.800000 | 7.500000 | 7.500000 | 6.100000 | 6.400000 | 6.500000 | 7.500000 | 6.400000 | 6.400000 | 6.700000 | 7.200000 | 6.900000 | 6.800000 | 6.900000 | 7.400000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
451 | 31R080 | THE MICHAEL J. PETRIDES SCHOOL | 107.0 | 472.0 | 488.0 | 466.0 | 1426.0 | 0 | 162.0 | 243.0 | 66.0 | 83.875000 | 2.875000 | 27.537500 | 22.833333 | 31.125000 | 20112012.0 | 32.300000 | 1308.000000 | 135.00000 | 108.000000 | 133.000000 | 134.000000 | 21.000000 | 1.600000 | 242.000000 | 18.500000 | 34.000000 | 33.000000 | 106.000000 | 8.100000 | 246.000000 | 18.800000 | 221.000000 | 16.900000 | 731.000000 | 55.900000 | 644.000000 | 49.200000 | 664.000000 | 50.800000 | 104.142857 | 93.928571 | 81.114286 | 86.600000 | 43.914286 | 46.957143 | 37.185714 | 39.614286 | 12.814286 | 13.414286 | 3.085714 | 1.328571 | Staten Island | 8.457766 | 12.0 | Staten Island | 10301.00000 | 1272.00000 | Traditional | Italian, Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 800.000000 | 220.000000 | 2.000000 | 715 Ocean Terrace Staten Island\nNY 10301\n(40... | 2.000000 | 50.000000 | 40.607453 | -74.101482 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 96.000000 | 86.000000 | 40.000000 | 753.000000 | 63.000000 | 459.000000 | 8.100000 | 7.300000 | 7.500000 | 7.700000 | 7.000000 | 6.800000 | 7.400000 | 7.800000 | 6.700000 | 6.200000 | 7.300000 | 7.600000 | 7.300000 | 6.800000 | 7.400000 | 7.700000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
452 | 31R440 | NEW DORP HIGH SCHOOL | 391.0 | 424.0 | 437.0 | 416.0 | 1277.0 | 0 | 96.0 | 118.0 | 62.0 | 385.711111 | 14.311111 | 24.140000 | 18.400000 | 28.044444 | 20112012.0 | 42.300000 | 2658.000000 | 916.00000 | 688.000000 | 655.000000 | 399.000000 | 156.000000 | 5.900000 | 448.000000 | 16.900000 | 106.000000 | 151.000000 | 186.000000 | 7.000000 | 322.000000 | 12.100000 | 726.000000 | 27.300000 | 1416.000000 | 53.300000 | 1395.000000 | 52.500000 | 1263.000000 | 47.500000 | 526.857143 | 64.271429 | 45.914286 | 70.671429 | 15.914286 | 24.985714 | 29.985714 | 45.685714 | 18.371429 | 29.371429 | 22.814286 | 9.857143 | Staten Island | 9.000000 | 12.0 | Staten Island | 10306.00000 | 2734.00000 | Traditional | Italian, Spanish | Biology, Calculus AB, Computer Science A, Engl... | Art History, Calculus BC, Macroeconomics, Micr... | Italian, Spanish | 805.000000 | 310.000000 | 9.000000 | 465 New Dorp Lane Staten Island\nNY 10306\n(40... | 2.000000 | 50.000000 | 40.569182 | -74.107301 | 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 90.000000 | 100.000000 | 31.000000 | 2173.000000 | 127.000000 | 687.000000 | 7.700000 | 7.400000 | 7.400000 | 7.500000 | 7.600000 | 7.900000 | 8.100000 | 8.100000 | 6.100000 | 5.700000 | 6.400000 | 6.900000 | 7.100000 | 7.000000 | 7.300000 | 7.500000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
453 | 31R445 | PORT RICHMOND HIGH SCHOOL | 271.0 | 424.0 | 438.0 | 417.0 | 1279.0 | 0 | 194.0 | 304.0 | 76.0 | 202.046512 | 7.767442 | 24.697674 | 18.813953 | 28.069767 | 20112012.0 | 53.300000 | 2151.000000 | 933.00000 | 485.000000 | 349.000000 | 384.000000 | 114.000000 | 5.300000 | 450.000000 | 20.900000 | 96.000000 | 172.000000 | 146.000000 | 6.800000 | 664.000000 | 30.900000 | 809.000000 | 37.600000 | 521.000000 | 24.200000 | 1178.000000 | 54.800000 | 973.000000 | 45.200000 | 560.857143 | 61.528571 | 44.242857 | 71.914286 | 12.885714 | 20.914286 | 31.357143 | 50.942857 | 17.300000 | 28.128571 | 23.171429 | 10.814286 | Staten Island | 9.000000 | 12.0 | Staten Island | 10302.00000 | 1794.00000 | Traditional | Italian, Spanish | Art History, Biology, Calculus AB, Comparative... | No courses | No courses | 800.000000 | 245.000000 | 8.000000 | 85 St Josephs Avenue Staten Island\nNY 10302\n... | 1.000000 | 49.000000 | 40.633843 | -74.142107 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 74.000000 | 68.000000 | 16.000000 | 1567.000000 | 81.000000 | 297.000000 | 7.100000 | 7.200000 | 7.300000 | 7.400000 | 6.700000 | 6.800000 | 7.000000 | 7.700000 | 5.200000 | 5.100000 | 5.700000 | 6.600000 | 6.400000 | 6.400000 | 6.600000 | 7.200000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
454 | 31R450 | CURTIS HIGH SCHOOL | 375.0 | 437.0 | 435.0 | 429.0 | 1301.0 | 0 | 247.0 | 295.0 | 90.0 | 365.428571 | 13.607143 | 26.614286 | 17.000000 | 33.500000 | 20112012.0 | 54.300000 | 2552.000000 | 845.00000 | 827.000000 | 504.000000 | 376.000000 | 155.000000 | 6.100000 | 374.000000 | 14.700000 | 59.000000 | 172.000000 | 187.000000 | 7.300000 | 980.000000 | 38.400000 | 814.000000 | 31.900000 | 557.000000 | 21.800000 | 1183.000000 | 46.400000 | 1369.000000 | 53.600000 | 611.142857 | 68.428571 | 58.285714 | 85.114286 | 20.242857 | 29.657143 | 38.042857 | 55.428571 | 10.128571 | 14.885714 | 19.785714 | 9.414286 | Staten Island | 9.000000 | 12.0 | Staten Island | 10301.00000 | 2396.00000 | Traditional | English, French, Italian, Latin, Spanish | Art History, Biology, Calculus AB, Calculus BC... | No courses | No courses | 900.000000 | 330.000000 | 10.000000 | 105 Hamilton Avenue Staten Island\nNY 10301\n(... | 1.000000 | 49.000000 | 40.644745 | -74.081341 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 77.000000 | 85.000000 | 39.000000 | 1856.000000 | 120.000000 | 873.000000 | 7.100000 | 7.100000 | 7.400000 | 7.600000 | 7.000000 | 7.100000 | 7.600000 | 7.900000 | 6.000000 | 5.800000 | 6.600000 | 7.200000 | 6.700000 | 6.700000 | 7.200000 | 7.600000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
455 | 31R455 | TOTTENVILLE HIGH SCHOOL | 807.0 | 462.0 | 486.0 | 470.0 | 1418.0 | 0 | 396.0 | 687.0 | 206.0 | 325.800000 | 10.933333 | 25.531111 | 20.044444 | 28.488889 | 20112012.0 | 18.400000 | 3875.000000 | 1006.00000 | 1041.000000 | 874.000000 | 954.000000 | 55.000000 | 1.400000 | 540.000000 | 13.900000 | 214.000000 | 153.000000 | 210.000000 | 5.400000 | 82.000000 | 2.100000 | 385.000000 | 9.900000 | 3181.000000 | 82.100000 | 1923.000000 | 49.600000 | 1952.000000 | 50.400000 | 1000.714286 | 79.700000 | 64.300000 | 80.600000 | 27.128571 | 33.971429 | 37.157143 | 46.628571 | 15.414286 | 19.428571 | 10.814286 | 7.714286 | Staten Island | 9.000000 | 12.0 | Staten Island | 10312.00000 | 3957.00000 | Traditional | Italian, Latin, Spanish | Biology, Calculus BC, Chemistry, English Liter... | No courses | No courses | 800.000000 | 245.000000 | 4.000000 | 100 Luten Avenue Staten Island\nNY 10312\n(40.... | 3.000000 | 51.000000 | 40.528229 | -74.192154 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 85.000000 | 94.000000 | 30.000000 | 3165.000000 | 189.000000 | 998.000000 | 7.600000 | 7.000000 | 7.400000 | 7.400000 | 7.700000 | 7.500000 | 7.800000 | 8.000000 | 7.100000 | 6.200000 | 7.500000 | 7.800000 | 7.400000 | 6.900000 | 7.500000 | 7.700000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
456 | 31R460 | SUSAN E. WAGNER HIGH SCHOOL | 535.0 | 455.0 | 474.0 | 459.0 | 1388.0 | 0 | 279.0 | 408.0 | 175.0 | 268.022222 | 10.177778 | 24.053333 | 17.822222 | 27.311111 | 20112012.0 | 41.400000 | 3243.000000 | 887.00000 | 866.000000 | 794.000000 | 696.000000 | 111.000000 | 3.400000 | 611.000000 | 18.800000 | 94.000000 | 308.000000 | 475.000000 | 14.600000 | 367.000000 | 11.300000 | 782.000000 | 24.100000 | 1602.000000 | 49.400000 | 1647.000000 | 50.800000 | 1596.000000 | 49.200000 | 785.285714 | 73.642857 | 56.028571 | 76.000000 | 20.614286 | 27.942857 | 35.414286 | 48.085714 | 17.614286 | 24.000000 | 12.371429 | 8.228571 | Staten Island | 9.000000 | 12.0 | Staten Island | 10314.00000 | 3461.00000 | Traditional | French, Italian, Latin, Spanish | Biology, Calculus AB, English Language and Com... | No courses | No courses | 816.000000 | 300.000000 | 8.000000 | 1200 Manor Road Staten Island\nNY 10314\n(40.5... | 2.000000 | 50.000000 | 40.598652 | -74.123105 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 92.000000 | 98.000000 | 36.000000 | 2855.000000 | 155.000000 | 990.000000 | 7.500000 | 7.000000 | 7.300000 | 7.500000 | 7.500000 | 7.700000 | 7.700000 | 8.300000 | 6.700000 | 6.200000 | 7.100000 | 7.500000 | 7.300000 | 7.000000 | 7.400000 | 7.800000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
457 | 31R470 | CONCORD HIGH SCHOOL | 10.0 | 466.0 | 455.0 | 414.0 | 1335.0 | 0 | 0.0 | 0.0 | 0.0 | 57.285714 | 2.857143 | 22.114286 | 19.428571 | 26.000000 | 20112012.0 | 56.900000 | 179.000000 | 31.00000 | 82.000000 | 66.000000 | 147.334928 | 4.000000 | 2.200000 | 31.000000 | 17.300000 | 7.000000 | 3.000000 | 3.000000 | 1.700000 | 68.000000 | 38.000000 | 71.000000 | 39.700000 | 35.000000 | 19.600000 | 82.000000 | 45.800000 | 97.000000 | 54.200000 | 63.428571 | 26.828571 | 9.271429 | 32.042857 | 0.000000 | 0.000000 | 9.271429 | 32.042857 | 17.571429 | 67.957143 | 55.457143 | 15.842857 | Staten Island | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.595680 | -74.125726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 78.000000 | 100.000000 | 70.000000 | 105.000000 | 13.000000 | 89.000000 | 8.600000 | 8.200000 | 8.000000 | 8.200000 | 8.700000 | 8.500000 | 8.600000 | 9.100000 | 8.000000 | 6.900000 | 7.400000 | 8.000000 | 8.400000 | 7.900000 | 8.000000 | 8.400000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
458 | 31R600 | RALPH R. MCKEE CAREER AND TECHNICAL EDUCATION ... | 94.0 | 416.0 | 422.0 | 397.0 | 1235.0 | 0 | 0.0 | 0.0 | 0.0 | 138.692308 | 5.230769 | 23.617949 | 20.846154 | 25.666667 | 20112012.0 | 59.700000 | 675.000000 | 188.00000 | 205.000000 | 122.000000 | 160.000000 | 24.000000 | 3.600000 | 177.000000 | 26.200000 | 36.000000 | 69.000000 | 31.000000 | 4.600000 | 272.000000 | 40.300000 | 224.000000 | 33.200000 | 146.000000 | 21.600000 | 453.000000 | 67.100000 | 222.000000 | 32.900000 | 156.428571 | 59.442857 | 41.428571 | 69.885714 | 20.700000 | 34.728571 | 20.742857 | 35.171429 | 18.014286 | 30.114286 | 22.471429 | 9.357143 | Staten Island | 9.000000 | 12.0 | Staten Island | 10301.00000 | 632.00000 | CTE School | Italian | Biology, English Language and Composition, Eng... | No courses | No courses | 800.000000 | 300.000000 | 6.000000 | 290 St Marks Place Staten Island\nNY 10301\n(4... | 1.000000 | 49.000000 | 40.642741 | -74.078711 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 96.000000 | 46.000000 | 620.000000 | 46.000000 | 319.000000 | 7.600000 | 7.100000 | 7.100000 | 7.500000 | 6.400000 | 6.500000 | 6.600000 | 6.900000 | 6.000000 | 5.800000 | 6.200000 | 6.800000 | 6.700000 | 6.500000 | 6.600000 | 7.100000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
459 | 31R605 | STATEN ISLAND TECHNICAL HIGH SCHOOL | 227.0 | 635.0 | 682.0 | 636.0 | 1953.0 | 0 | 528.0 | 905.0 | 809.0 | 283.294118 | 9.529412 | 29.588235 | 21.294118 | 33.176471 | 20112012.0 | 17.000000 | 1104.000000 | 296.00000 | 296.000000 | 287.000000 | 225.000000 | 1.000000 | 0.100000 | 6.000000 | 0.500000 | 1.000000 | 0.000000 | 351.000000 | 31.800000 | 12.000000 | 1.100000 | 59.000000 | 5.300000 | 677.000000 | 61.300000 | 629.000000 | 57.000000 | 475.000000 | 43.000000 | 225.428571 | 97.171429 | 97.171429 | 100.000000 | 95.000000 | 97.814286 | 2.157143 | 2.185714 | 0.000000 | 0.000000 | 2.414286 | 0.442857 | Staten Island | 9.000000 | 12.0 | Staten Island | 10306.00000 | 1235.00000 | Specialized School | Russian | Biology, Calculus AB, Calculus BC, Chemistry, ... | No courses | Chinese (Mandarin), Latin, Spanish | 745.000000 | 230.000000 | 1.000000 | 485 Clawson Street Staten Island\nNY 10306\n(4... | 2.000000 | 50.000000 | 40.567913 | -74.115362 | 1.0 | 1.0 | 1.0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 99.000000 | 100.000000 | 93.000000 | 1003.000000 | 54.000000 | 907.000000 | 8.800000 | 8.000000 | 8.000000 | 8.300000 | 8.900000 | 8.200000 | 8.500000 | 9.000000 | 8.200000 | 7.400000 | 7.800000 | 8.500000 | 8.600000 | 7.800000 | 8.100000 | 8.600000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
460 | 31R607 | YOUNG ADULT BOROUGH CENTER AT STATEN IS TECH HS | 10.0 | 405.0 | 375.0 | 370.0 | 1150.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Staten Island | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.595680 | -74.125726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 92.000000 | 100.000000 | 24.000000 | 87.000000 | 21.000000 | 23.000000 | 8.900000 | 7.600000 | 7.300000 | 8.400000 | 8.600000 | 8.600000 | 8.900000 | 8.800000 | 7.500000 | 6.200000 | 7.200000 | 7.200000 | 8.300000 | 7.500000 | 7.800000 | 8.100000 | 31 | DISTRICT 31 | 90.98 | 59373 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
461 | 32K403 | ACADEMY FOR ENVIRONMENTAL LEADERSHIP | 50.0 | 380.0 | 366.0 | 352.0 | 1098.0 | 0 | 0.0 | 0.0 | 0.0 | 52.533333 | 2.366667 | 21.666667 | 19.533333 | 24.066667 | 20112012.0 | 88.700000 | 362.000000 | 96.00000 | 86.000000 | 73.000000 | 107.000000 | 119.000000 | 32.900000 | 64.000000 | 17.700000 | 23.000000 | 36.000000 | 2.000000 | 0.600000 | 76.000000 | 21.000000 | 279.000000 | 77.100000 | 3.000000 | 0.800000 | 181.000000 | 50.000000 | 181.000000 | 50.000000 | 51.750000 | 70.200000 | 46.500000 | 66.300000 | 3.000000 | 4.300000 | 43.400000 | 61.950000 | 23.750000 | 33.700000 | 19.700000 | 10.100000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11237.00000 | 352.00000 | Traditional | Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 800.000000 | 300.000000 | 1.000000 | 400 Irving Avenue\nBrooklyn, NY 11237\n(40.696... | 4.000000 | 37.000000 | 40.696962 | -73.910816 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 87.000000 | 88.000000 | 29.000000 | 293.000000 | 22.000000 | 91.000000 | 8.100000 | 8.300000 | 7.900000 | 8.400000 | 6.100000 | 5.600000 | 6.200000 | 7.200000 | 5.800000 | 5.700000 | 6.100000 | 7.100000 | 6.700000 | 6.500000 | 6.800000 | 7.600000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
462 | 32K545 | EBC HIGH SCHOOL FOR PUBLIC SERVICE–BUSHWICK | 88.0 | 384.0 | 409.0 | 361.0 | 1154.0 | 0 | 47.0 | 64.0 | 13.0 | 118.208333 | 4.958333 | 23.825000 | 18.500000 | 28.375000 | 20112012.0 | 86.900000 | 606.000000 | 131.00000 | 122.000000 | 155.000000 | 198.000000 | 93.000000 | 15.300000 | 74.000000 | 12.200000 | 28.000000 | 30.000000 | 10.000000 | 1.700000 | 56.000000 | 9.200000 | 534.000000 | 88.100000 | 4.000000 | 0.700000 | 316.000000 | 52.100000 | 290.000000 | 47.900000 | 146.285714 | 65.300000 | 25.642857 | 39.685714 | 8.428571 | 12.871429 | 17.242857 | 26.828571 | 39.628571 | 60.314286 | 27.471429 | 6.085714 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11221.00000 | 513.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 800.000000 | 345.000000 | 1.000000 | 1155 Dekalb Avenue\nBrooklyn, NY 11221\n(40.69... | 4.000000 | 34.000000 | 40.694482 | -73.929154 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 80.000000 | 57.000000 | 34.000000 | 504.000000 | 28.000000 | 205.000000 | 8.000000 | 7.500000 | 7.500000 | 7.800000 | 5.800000 | 2.400000 | 3.400000 | 4.800000 | 6.400000 | 5.800000 | 6.200000 | 7.000000 | 6.700000 | 5.200000 | 5.700000 | 6.500000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
463 | 32K549 | BUSHWICK SCHOOL FOR SOCIAL JUSTICE | 75.0 | 348.0 | 353.0 | 334.0 | 1035.0 | 0 | 0.0 | 0.0 | 0.0 | 65.200000 | 2.866667 | 23.526667 | 21.066667 | 26.166667 | 20112012.0 | 75.100000 | 434.000000 | 118.00000 | 119.000000 | 91.000000 | 106.000000 | 79.000000 | 18.200000 | 80.000000 | 18.400000 | 46.000000 | 23.000000 | 2.000000 | 0.500000 | 123.000000 | 28.300000 | 298.000000 | 68.700000 | 8.000000 | 1.800000 | 210.000000 | 48.400000 | 224.000000 | 51.600000 | 87.333333 | 71.240000 | 41.700000 | 57.380000 | 2.860000 | 3.860000 | 38.860000 | 53.540000 | 29.560000 | 42.620000 | 15.860000 | 11.360000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11237.00000 | 416.00000 | Traditional | Spanish | English Language and Composition, United State... | No courses | No courses | 815.000000 | 300.000000 | 1.000000 | 400 Irving Avenue\nBrooklyn, NY 11237\n(40.696... | 4.000000 | 37.000000 | 40.696962 | -73.910816 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 73.000000 | 88.000000 | 41.000000 | 295.000000 | 30.000000 | 160.000000 | 8.200000 | 8.100000 | 7.900000 | 8.300000 | 7.300000 | 7.700000 | 8.100000 | 8.500000 | 6.500000 | 5.900000 | 6.600000 | 7.300000 | 7.300000 | 7.200000 | 7.500000 | 8.100000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
464 | 32K552 | ACADEMY OF URBAN PLANNING | 67.0 | 342.0 | 364.0 | 354.0 | 1060.0 | 0 | 76.0 | 100.0 | 10.0 | 72.379310 | 3.206897 | 21.572414 | 18.620690 | 24.655172 | 20112012.0 | 77.100000 | 398.000000 | 93.00000 | 104.000000 | 111.000000 | 90.000000 | 95.000000 | 23.900000 | 88.000000 | 22.100000 | 26.000000 | 47.000000 | 6.000000 | 1.500000 | 105.000000 | 26.400000 | 280.000000 | 70.400000 | 4.000000 | 1.000000 | 217.000000 | 54.500000 | 181.000000 | 45.500000 | 79.000000 | 54.840000 | 28.360000 | 52.640000 | 1.500000 | 2.700000 | 26.900000 | 49.920000 | 26.500000 | 47.360000 | 32.400000 | 9.520000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11237.00000 | 313.00000 | Traditional | Spanish | Calculus AB, English Language and Composition,... | No courses | No courses | 815.000000 | 345.000000 | 1.000000 | 400 Irving Avenue\nBrooklyn, NY 11237\n(40.696... | 4.000000 | 37.000000 | 40.696962 | -73.910816 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 59.000000 | 49.000000 | 31.000000 | 256.000000 | 17.000000 | 127.000000 | 7.900000 | 7.900000 | 7.700000 | 8.000000 | 6.400000 | 5.800000 | 7.000000 | 7.100000 | 6.400000 | 5.700000 | 6.700000 | 7.300000 | 6.900000 | 6.500000 | 7.100000 | 7.400000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
465 | 32K554 | ALL CITY LEADERSHIP SECONDARY SCHOOL | 39.0 | 428.0 | 465.0 | 422.0 | 1315.0 | 0 | 7.0 | 8.0 | 0.0 | 66.937500 | 3.812500 | 17.793750 | 14.750000 | 21.625000 | 20112012.0 | 81.400000 | 263.000000 | 37.00000 | 34.000000 | 34.000000 | 35.000000 | 7.000000 | 2.700000 | 13.000000 | 4.900000 | 1.000000 | 2.000000 | 14.000000 | 5.300000 | 34.000000 | 12.900000 | 209.000000 | 79.500000 | 4.000000 | 1.500000 | 137.000000 | 52.100000 | 126.000000 | 47.900000 | 30.166667 | 85.280000 | 50.120000 | 58.760000 | 6.380000 | 7.580000 | 43.740000 | 51.180000 | 35.160000 | 41.240000 | 11.980000 | 2.740000 | Brooklyn | 6.000000 | 12.0 | Brooklyn | 11237.00000 | 333.00000 | Traditional | French, Spanish | Calculus AB, English Literature and Compositio... | No courses | No courses | 745.000000 | 230.000000 | 1.000000 | 321 Palmetto Street\nBrooklyn, NY 11237\n(40.6... | 4.000000 | 37.000000 | 40.697408 | -73.913153 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 1.0 | 0.0 | 0.0 | 88.000000 | 81.000000 | 38.000000 | 206.000000 | 13.000000 | 80.000000 | 9.400000 | 8.600000 | 8.500000 | 8.700000 | 9.600000 | 8.400000 | 9.100000 | 9.600000 | 8.900000 | 7.100000 | 8.400000 | 8.900000 | 9.300000 | 8.100000 | 8.700000 | 9.100000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
466 | 32K556 | BUSHWICK LEADERS HIGH SCHOOL FOR ACADEMIC EXCE... | 23.0 | 347.0 | 358.0 | 350.0 | 1055.0 | 0 | 34.0 | 35.0 | 18.0 | 93.521739 | 4.130435 | 20.452174 | 15.913043 | 23.826087 | 20112012.0 | 88.000000 | 462.000000 | 118.00000 | 120.000000 | 104.000000 | 120.000000 | 84.000000 | 18.200000 | 86.000000 | 18.600000 | 4.000000 | 51.000000 | 4.000000 | 0.900000 | 98.000000 | 21.200000 | 357.000000 | 77.300000 | 0.000000 | 0.000000 | 246.000000 | 53.200000 | 216.000000 | 46.800000 | 88.666667 | 61.700000 | 21.480000 | 35.440000 | 2.340000 | 4.020000 | 19.180000 | 31.420000 | 40.180000 | 64.560000 | 22.280000 | 11.140000 | Brooklyn | 9.000000 | 12.0 | Brooklyn | 11221.00000 | 362.00000 | Traditional | Spanish | English Language and Composition, Spanish Lang... | No courses | No courses | 815.000000 | 445.000000 | 1.000000 | 797 Bushwick Avenue\nBrooklyn, NY 11221\n(40.6... | 4.000000 | 34.000000 | 40.694996 | -73.927986 | 1.0 | 1.0 | 0.0 | 0.0 | 1.0 | 0.0 | 0.0 | 0.0 | 67.000000 | 71.000000 | 35.000000 | 323.000000 | 24.000000 | 164.000000 | 8.500000 | 7.900000 | 7.800000 | 8.100000 | 7.100000 | 7.100000 | 7.600000 | 7.700000 | 6.600000 | 6.000000 | 6.700000 | 7.300000 | 7.400000 | 7.000000 | 7.400000 | 7.700000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
467 | 32K564 | BUSHWICK COMMUNITY HIGH SCHOOL | 24.0 | 359.0 | 317.0 | 358.0 | 1034.0 | 0 | 0.0 | 0.0 | 0.0 | 130.400000 | 5.200000 | 24.966667 | 20.400000 | 28.333333 | 20112012.0 | 81.800000 | 382.000000 | 199.09611 | 382.000000 | 155.308756 | 147.334928 | 20.000000 | 5.200000 | 36.000000 | 9.400000 | 14.000000 | 1.000000 | 1.000000 | 0.300000 | 137.000000 | 35.900000 | 235.000000 | 61.500000 | 7.000000 | 1.800000 | 169.000000 | 44.200000 | 213.000000 | 55.800000 | 139.428571 | 5.528571 | 0.957143 | 17.142857 | 0.000000 | 0.000000 | 0.957143 | 17.142857 | 4.557143 | 82.857143 | 64.385714 | 28.857143 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.696295 | -73.917124 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 61.000000 | 100.000000 | 37.000000 | 215.000000 | 27.000000 | 121.000000 | 9.200000 | 8.100000 | 8.000000 | 8.200000 | 8.200000 | 6.600000 | 7.500000 | 8.000000 | 8.300000 | 6.500000 | 7.600000 | 8.100000 | 8.600000 | 7.000000 | 7.700000 | 8.100000 | 32 | DISTRICT 32 | 89.28 | 15297 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
468 | 75K371 | P.S. 371 s LILLIAN L. RASHKIS | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Brooklyn | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.665784 | -73.947509 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 44.000000 | 93.000000 | 45.000000 | 84.000000 | 63.000000 | 142.000000 | 8.500000 | 8.000000 | 7.900000 | 7.800000 | 7.100000 | 7.500000 | 7.300000 | 7.700000 | 6.000000 | 6.400000 | 7.000000 | 7.200000 | 7.200000 | 7.300000 | 7.400000 | 7.600000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
469 | 75M035 | P.S. 035 | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.765282 | -73.975853 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 25.000000 | 73.000000 | 18.000000 | 52.000000 | 35.000000 | 38.000000 | 8.700000 | 8.300000 | 8.400000 | 8.700000 | 6.100000 | 5.900000 | 6.400000 | 6.800000 | 6.400000 | 6.200000 | 7.200000 | 7.400000 | 7.000000 | 6.800000 | 7.300000 | 7.600000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
470 | 75Q256 | P.S. Q256 | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.715683 | -73.835808 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 88.000000 | 93.000000 | 46.000000 | 195.000000 | 105.000000 | 184.000000 | 8.600000 | 8.000000 | 8.100000 | 8.400000 | 7.100000 | 7.400000 | 7.100000 | 8.000000 | 6.700000 | 6.500000 | 7.400000 | 7.500000 | 7.500000 | 7.300000 | 7.500000 | 7.900000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
471 | 75Q811 | P.S. Q811 | 32.0 | 429.0 | 444.0 | 433.0 | 1306.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.715683 | -73.835808 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 75.000000 | 71.000000 | 34.000000 | 101.000000 | 49.000000 | 111.000000 | 8.800000 | 8.000000 | 7.900000 | 8.200000 | 8.500000 | 8.000000 | 7.800000 | 8.200000 | 8.100000 | 7.300000 | 8.400000 | 8.200000 | 8.500000 | 7.800000 | 8.000000 | 8.200000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
472 | 75R025 | SOUTH RICHMOND HIGH SCHOOL I.S./P.S. 25 | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Staten Island | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.595680 | -74.125726 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 57.000000 | 75.000000 | 21.000000 | 238.000000 | 70.000000 | 97.000000 | 8.100000 | 7.500000 | 7.400000 | 7.500000 | 7.300000 | 7.700000 | 6.600000 | 7.800000 | 6.900000 | 5.900000 | 6.900000 | 7.300000 | 7.400000 | 7.000000 | 6.900000 | 7.600000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
473 | 75X012 | P.S. X012 LEWIS AND CLARK SCHOOL | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.844908 | -73.890242 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 19.000000 | 47.000000 | 9.000000 | 37.000000 | 25.000000 | 18.000000 | 5.800000 | 6.500000 | 6.300000 | 5.900000 | 4.600000 | 5.600000 | 5.200000 | 5.300000 | 5.700000 | 5.700000 | 6.800000 | 6.500000 | 5.200000 | 5.800000 | 5.800000 | 5.800000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
474 | 75X754 | J. M. RAPPORT SCHOOL CAREER DEVELOPMENT | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.844908 | -73.890242 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 63.000000 | 93.000000 | 22.000000 | 336.000000 | 82.000000 | 124.000000 | 8.300000 | 7.500000 | 7.500000 | 7.800000 | 6.700000 | 6.500000 | 6.600000 | 7.100000 | 6.800000 | 6.600000 | 7.600000 | 7.700000 | 7.200000 | 6.900000 | 7.300000 | 7.500000 | 75 | SPECIAL ED DISTRICT 75 | 83.21 | 21435 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
475 | 79M645 | SCHOOL FOR COOPERATIVE TECHNICAL EDUCATION | 2.0 | 401.0 | 413.0 | 394.0 | 1208.0 | 1 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Manhattan | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.765282 | -73.975853 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 79 | ALTERNATIVE DISTRICT 79 | 63.81 | 7288 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
476 | 79Q950 | GED PLUS s CITYWIDE | 8.0 | 496.0 | 400.0 | 426.0 | 1322.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Queens | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.715683 | -73.835808 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 79 | ALTERNATIVE DISTRICT 79 | 63.81 | 7288 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
477 | 79X490 | PHOENIX ACADEMY | 9.0 | 367.0 | 370.0 | 360.0 | 1097.0 | 0 | 0.0 | 0.0 | 0.0 | 117.140546 | 4.647296 | 23.595245 | 19.904134 | 26.687738 | 20112012.0 | 66.515556 | 710.451111 | 199.09611 | 189.191537 | 155.308756 | 147.334928 | 85.244444 | 13.118889 | 92.808889 | 14.080889 | 34.384091 | 29.997727 | 114.935556 | 9.426667 | 221.588889 | 38.638889 | 276.746667 | 43.481778 | 91.908889 | 7.642889 | 358.713333 | 49.510889 | 351.735556 | 50.488222 | 175.547166 | 62.915625 | 45.121491 | 66.876392 | 10.910809 | 14.105702 | 34.210494 | 52.770587 | 17.803826 | 33.140172 | 24.645990 | 9.779497 | Bronx | 8.457766 | 12.0 | NaN | 10725.96477 | 772.02168 | Traditional | No courses | No courses | No courses | No courses | 816.252033 | 315.111111 | 1.821138 | NaN | 6.782016 | 22.237057 | 40.844908 | -73.890242 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 77.651064 | 82.819149 | 36.742553 | 516.257511 | 36.495745 | 213.078891 | 8.222175 | 7.654584 | 7.545416 | 7.854584 | 7.173617 | 6.565319 | 7.036596 | 7.541915 | 6.725751 | 6.166953 | 6.719313 | 7.429828 | 7.369149 | 6.791064 | 7.098511 | 7.609574 | 79 | ALTERNATIVE DISTRICT 79 | 63.81 | 7288 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Our data is now ready for exploratory analysis and visualization. As a recap, here is what we have done to get to this point:
- Read nine related CSV datasets into Pandas DataFrames.
- Explored each dataset's columns to determine common features for merging our data.
- Narrowed each dataset down to one entry per school using grouping methods and by eliminating out-of-scope data.
- Engineered new features for our data to isolate categories and expand potential avenues of analysis.
- Merged all nine datasets into one master dataset,
full
. - Systematically filled in null values, using our knowledge of the data to determine which imputation method best preserved data integrity.
In the notebook for Part Two of this project, we will look for any correlations to SAT scores and utilize various various visualization libraries to explore these possibilities.