From 0afe7b5065c61384626693183164a1efc2dd243c Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Sun, 23 Aug 2026 14:06:37 +0000 Subject: [PATCH 01/17] Updated code --- scripts/us_nces/common/prop_conf.py | 13 ++++++++---- .../us_nces/common/replacement_functions.py | 4 +++- scripts/us_nces/common/us_education.py | 20 ++++++++++--------- .../demographics/school_district/config.py | 3 ++- .../school_district/manifest.json | 4 +++- .../demographics/school_district/process.py | 1 + .../school_district/validation_config.json | 13 ++++++++++++ 7 files changed, 42 insertions(+), 16 deletions(-) create mode 100644 scripts/us_nces/demographics/school_district/validation_config.json diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py index dae2c5b07e..67dd19fc53 100644 --- a/scripts/us_nces/common/prop_conf.py +++ b/scripts/us_nces/common/prop_conf.py @@ -123,7 +123,8 @@ "School Administrative Support Staff": "Faculty", "Student Support Services Staff": "Faculty", "School Psychologist": "Faculty", - "Other Support Services Staff": "Faculty" + "Other Support Services Staff": "Faculty", + "Total Staff": "Faculty" } # One specific column comes under school grade property. _SCHOOL_GRADE_PROP = {"Ungraded Students": "NCESUngradedClasses"} @@ -132,8 +133,10 @@ # pylint:disable=unnecessary-lambda-assignment # Creating property pattern and the pattern is modified if required based on column. -_PV_FORMAT = lambda prop_val: f'"{prop_val[0]}": "dcs:{prop_val[1]}"' \ - if 'None' not in prop_val[1] else "" +# _PV_FORMAT = lambda prop_val: f'"{prop_val[0]}": "dcs:{prop_val[1]}"' \ +# if 'None' not in prop_val[1] else "" +_PV_FORMAT = lambda pv: f'"{tuple(pv)[0]}": "dcs:{tuple(pv)[1]}"' \ + if 'None' not in str(tuple(pv)[1]) else "" _UPDATE_MEASUREMENT_DENO = lambda prop: _DENOMINATOR_PROP.get(prop, prop) _UPDATE_POPULATION_TYPE = lambda prop: _POPULATION_PROP.get(prop, "Student") _UPDATE_GRADE_LEVEL = lambda prop: _SCHOOL_GRADE_PROP.get(prop, prop) @@ -167,7 +170,7 @@ r")") _SCHOOL_GRADE_PATTERN = (r"(" - r"Grade \d{,2}" + r"Grade \d{1,2}" r"|" r"Prekindergarten and Kindergarten" r"|" @@ -236,6 +239,8 @@ r"School Psychologist" r"|" r"Other Support Services Staff" + r"|" + r"Total Staff" r")") _GENDER_PATTERN = (r"(" diff --git a/scripts/us_nces/common/replacement_functions.py b/scripts/us_nces/common/replacement_functions.py index 36b71bb05e..e56c1438b0 100644 --- a/scripts/us_nces/common/replacement_functions.py +++ b/scripts/us_nces/common/replacement_functions.py @@ -372,7 +372,9 @@ "Phone Number": "PhoneNumber" } -_GENDER = {"female": "Female", "male": "Male"} +# Original without word boundary caused "female" -> "FeMale": +# _GENDER = {"female": "Female", "male": "Male"} +_GENDER = {r"\bfemale\b": "Female", r"\bmale\b": "Male"} _LOCALE = { '13-City: Small': "NCES_CitySmall", diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index cd5cf2247f..84f9d68852 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -437,8 +437,8 @@ def add_leading_zero(text): 'dc_api_batch_size': 200, 'dc_api_retries': 3, 'dc_api_retry_sec': 5, - 'dc_api_use_cache': False, - 'dc_api_root': None + 'dc_api_use_cache': False + # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Passing the list through API call for checking its existance. dcid_check_zip = dc_api_is_defined_dcid(zip_list, config) @@ -582,8 +582,8 @@ def _transform_public_place(self): 'dc_api_batch_size': 200, 'dc_api_retries': 3, 'dc_api_retry_sec': 5, - 'dc_api_use_cache': False, - 'dc_api_root': None + 'dc_api_use_cache': False + # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Only call API if lists are not empty @@ -747,8 +747,8 @@ def _transform_district_place(self): 'dc_api_batch_size': 200, 'dc_api_retries': 3, 'dc_api_retry_sec': 5, - 'dc_api_use_cache': False, - 'dc_api_root': None + 'dc_api_use_cache': False + # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Only call API if we actually have states to check @@ -1052,9 +1052,11 @@ def generate_csv(self) -> pd.DataFrame: SV_PROP_ORDER, FORM_STATVAR) df_parsed = self._generate_stat_var_and_mcf( df_parsed, SV_PROP_ORDER) - for col in df_parsed.columns.values.tolist(): - df_parsed[col] = df_parsed[col].astype( - 'str').str.replace("FeMale", "Female") + # Commented out: _GENDER in replacement_functions now uses word boundaries (\bfemale\b) + # so "FeMale" is never generated. + # for col in df_parsed.columns.values.tolist(): + # df_parsed[col] = df_parsed[col].astype( + # 'str').str.replace("FeMale", "Female") # Adding new columns scaling_factor:100 and unit:dcs:Percent # wherever the SV is Percent. df_parsed["scaling_factor"] = np.where( diff --git a/scripts/us_nces/demographics/school_district/config.py b/scripts/us_nces/demographics/school_district/config.py index aea054c0d5..7f8a6126ba 100644 --- a/scripts/us_nces/demographics/school_district/config.py +++ b/scripts/us_nces/demographics/school_district/config.py @@ -28,11 +28,12 @@ # Considering the required columns for Demographics Data. POSSIBLE_DATA_COLUMNS = [ "[Public School]", ".*Students.*", ".*Teacher.*", ".*American.*", - ".*Asian.*", ".*Hispanic.*", ".*Black.*", ".*White.*", ".*Adult Education.*" + ".*Asian.*", ".*Hispanic.*", ".*Black.*", ".*White.*", ".*Adult Education.*", ".*Staff.*", ".*Admin.*", ".*Counselor.*", ".*Psychologist.*", "Ungraded.*", "Two or More Races.*", "Nat. Hawaiian or Other Pacific Isl.*", "Grades.*", "Prekindergarten and Kindergarten.*" ] + # Excluding the unwanted columns. EXCLUDE_DATA_COLUMNS = [ "Individualized Education Program Students", '(Includes AE)', diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index d42acaee49..563a535825 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -21,10 +21,12 @@ }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_district_place.tmcf", - "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv" + "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv", + "node_mcf": "ProvisionalNodePlaces.mcf" } ], "cron_schedule": "30 3 3 3,6,9,12 *", + "validation_config_file": "validation_config.json", "resource_limits": { "cpu": 32, "memory": 512, diff --git a/scripts/us_nces/demographics/school_district/process.py b/scripts/us_nces/demographics/school_district/process.py index dfeb183cf0..a9d6e40f1e 100644 --- a/scripts/us_nces/demographics/school_district/process.py +++ b/scripts/us_nces/demographics/school_district/process.py @@ -102,3 +102,4 @@ class NCESDistrictSchool(USEducation): error_msg = str(e)[:1000] logging.fatal( f"Error While Running District School Process: {error_msg}") + raise diff --git a/scripts/us_nces/demographics/school_district/validation_config.json b/scripts/us_nces/demographics/school_district/validation_config.json new file mode 100644 index 0000000000..a658238861 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/validation_config.json @@ -0,0 +1,13 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Strictly enforce historical deletion average threshold of 0.1%", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + } + ] +} From a446adb7bab253033ca96438768eb3110ee51ef1 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 24 Aug 2026 06:15:26 +0000 Subject: [PATCH 02/17] Replaced lambda with def _PV_FORMAT(pv) --- scripts/us_nces/common/prop_conf.py | 8 ++++---- scripts/us_nces/common/replacement_functions.py | 2 -- scripts/us_nces/common/us_education.py | 10 ---------- 3 files changed, 4 insertions(+), 16 deletions(-) diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py index 67dd19fc53..c0f22e20f7 100644 --- a/scripts/us_nces/common/prop_conf.py +++ b/scripts/us_nces/common/prop_conf.py @@ -131,12 +131,12 @@ # melting the columns based on sv_name column. MELT_VAR_COL = "sv_name" +def _PV_FORMAT(pv): + """Formats property-value pairs for MCF nodes.""" + t = tuple(pv) + return f'"{t[0]}": "dcs:{t[1]}"' if 'None' not in str(t[1]) else "" # pylint:disable=unnecessary-lambda-assignment # Creating property pattern and the pattern is modified if required based on column. -# _PV_FORMAT = lambda prop_val: f'"{prop_val[0]}": "dcs:{prop_val[1]}"' \ -# if 'None' not in prop_val[1] else "" -_PV_FORMAT = lambda pv: f'"{tuple(pv)[0]}": "dcs:{tuple(pv)[1]}"' \ - if 'None' not in str(tuple(pv)[1]) else "" _UPDATE_MEASUREMENT_DENO = lambda prop: _DENOMINATOR_PROP.get(prop, prop) _UPDATE_POPULATION_TYPE = lambda prop: _POPULATION_PROP.get(prop, "Student") _UPDATE_GRADE_LEVEL = lambda prop: _SCHOOL_GRADE_PROP.get(prop, prop) diff --git a/scripts/us_nces/common/replacement_functions.py b/scripts/us_nces/common/replacement_functions.py index e56c1438b0..c3413b1ba4 100644 --- a/scripts/us_nces/common/replacement_functions.py +++ b/scripts/us_nces/common/replacement_functions.py @@ -372,8 +372,6 @@ "Phone Number": "PhoneNumber" } -# Original without word boundary caused "female" -> "FeMale": -# _GENDER = {"female": "Female", "male": "Male"} _GENDER = {r"\bfemale\b": "Female", r"\bmale\b": "Male"} _LOCALE = { diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index 84f9d68852..e836009f71 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -438,7 +438,6 @@ def add_leading_zero(text): 'dc_api_retries': 3, 'dc_api_retry_sec': 5, 'dc_api_use_cache': False - # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Passing the list through API call for checking its existance. dcid_check_zip = dc_api_is_defined_dcid(zip_list, config) @@ -583,7 +582,6 @@ def _transform_public_place(self): 'dc_api_retries': 3, 'dc_api_retry_sec': 5, 'dc_api_use_cache': False - # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Only call API if lists are not empty @@ -748,7 +746,6 @@ def _transform_district_place(self): 'dc_api_retries': 3, 'dc_api_retry_sec': 5, 'dc_api_use_cache': False - # 'dc_api_root': None # Inherits os.environ['DC_API_ROOT'] (autopush in test env / prod in prod env) } # Only call API if we actually have states to check @@ -1052,13 +1049,6 @@ def generate_csv(self) -> pd.DataFrame: SV_PROP_ORDER, FORM_STATVAR) df_parsed = self._generate_stat_var_and_mcf( df_parsed, SV_PROP_ORDER) - # Commented out: _GENDER in replacement_functions now uses word boundaries (\bfemale\b) - # so "FeMale" is never generated. - # for col in df_parsed.columns.values.tolist(): - # df_parsed[col] = df_parsed[col].astype( - # 'str').str.replace("FeMale", "Female") - # Adding new columns scaling_factor:100 and unit:dcs:Percent - # wherever the SV is Percent. df_parsed["scaling_factor"] = np.where( df_parsed["sv_name"].str.contains("Percent"), '100', '') df_parsed["unit"] = np.where( From 23cefa03b4ccc35358f5244cfaf46be690276aee Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 24 Aug 2026 06:18:24 +0000 Subject: [PATCH 03/17] updated manifest with nodes.mcf --- scripts/us_nces/demographics/school_district/manifest.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index 563a535825..212c68d8ce 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -17,13 +17,12 @@ "import_inputs": [ { "template_mcf": "gcs_folder/output_files/us_nces_demographics_district_school.tmcf", - "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_district_school.csv" + "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_district_school.csv", + "node_mcf": "gcs_folder/output_files/us_nces_demographics_district_school.mcf" }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_district_place.tmcf", - "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv", - "node_mcf": "ProvisionalNodePlaces.mcf" - } + "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv" } ], "cron_schedule": "30 3 3 3,6,9,12 *", "validation_config_file": "validation_config.json", From cf7777bd87620fe27ee274d4bf643ac9febc6e07 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 24 Aug 2026 11:11:32 +0000 Subject: [PATCH 04/17] Adressed CRA comments --- scripts/us_nces/common/prop_conf.py | 4 +- scripts/us_nces/common/us_education.py | 2 + .../school_district/manifest.json | 3 +- ...ELSI_csv_export_6386978403406937661596.csv | 30 - ...ELSI_csv_export_6386978404623079441206.csv | 30 - ...ELSI_csv_export_6386978405393867153627.csv | 30 - ...ELSI_csv_export_6386978406339657098492.csv | 30 - ...ELSI_csv_export_6386978407085375858439.csv | 30 - ...ELSI_csv_export_6386978408027941011352.csv | 30 - ...ELSI_csv_export_6386978409111351539565.csv | 30 - ...ELSI_csv_export_6386978410141513492064.csv | 30 - ...ELSI_csv_export_6391562516627516691672.csv | 30 + ...ELSI_csv_export_6391562517590103315108.csv | 30 + ...ELSI_csv_export_6391562518333892767879.csv | 30 + .../ELSI_csv_export_639156251902613595159.csv | 30 + .../ELSI_csv_export_639156251962159479138.csv | 30 + .../ELSI_csv_export_639156252163594862185.csv | 30 + .../us_nces_demographics_district_place.csv | 38 +- .../us_nces_demographics_district_school.csv | 7765 +++++++---------- .../us_nces_demographics_district_school.mcf | 12 + 20 files changed, 3437 insertions(+), 4807 deletions(-) delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978403406937661596.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978404623079441206.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978405393867153627.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978406339657098492.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978407085375858439.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978408027941011352.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978409111351539565.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978410141513492064.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py index c0f22e20f7..f6f664819a 100644 --- a/scripts/us_nces/common/prop_conf.py +++ b/scripts/us_nces/common/prop_conf.py @@ -132,11 +132,11 @@ MELT_VAR_COL = "sv_name" def _PV_FORMAT(pv): - """Formats property-value pairs for MCF nodes.""" + """Formats property-value pairs for MCF nodes; modified based on column.""" t = tuple(pv) return f'"{t[0]}": "dcs:{t[1]}"' if 'None' not in str(t[1]) else "" + # pylint:disable=unnecessary-lambda-assignment -# Creating property pattern and the pattern is modified if required based on column. _UPDATE_MEASUREMENT_DENO = lambda prop: _DENOMINATOR_PROP.get(prop, prop) _UPDATE_POPULATION_TYPE = lambda prop: _POPULATION_PROP.get(prop, "Student") _UPDATE_GRADE_LEVEL = lambda prop: _SCHOOL_GRADE_PROP.get(prop, prop) diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index e836009f71..35caef0cbd 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -1049,6 +1049,8 @@ def generate_csv(self) -> pd.DataFrame: SV_PROP_ORDER, FORM_STATVAR) df_parsed = self._generate_stat_var_and_mcf( df_parsed, SV_PROP_ORDER) + # Adding new columns scaling_factor:100 and unit:dcs:Percent + # wherever the SV is Percent. df_parsed["scaling_factor"] = np.where( df_parsed["sv_name"].str.contains("Percent"), '100', '') df_parsed["unit"] = np.where( diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index 212c68d8ce..22c6ba7d87 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -22,7 +22,8 @@ }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_district_place.tmcf", - "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv" } + "cleaned_csv": "gcs_folder/output_place/us_nces_demographics_district_place.csv" + } ], "cron_schedule": "30 3 3 3,6,9,12 *", "validation_config_file": "validation_config.json", diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978403406937661596.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978403406937661596.csv deleted file mode 100644 index 1c4fe5151d..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978403406937661596.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,State Abbr [District] Latest available year,Agency Name [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year,ANSI/FIPS State Code [District] Latest available year,Location Address 1 [District] 2023-24,Location City [District] 2023-24,Location ZIP [District] 2023-24,Location ZIP4 [District] 2023-24,Phone Number [District] 2023-24,State Agency ID [District] 2023-24,Lowest Grade Offered [District] 2023-24,Highest Grade Offered [District] 2023-24,Total Students All Grades (Excludes AE) [District] 2023-24,Total Students All Grades (Includes AE) [District] 2023-24,Grades 1-8 Students [District] 2023-24,Grades 9-12 Students [District] 2023-24,Prekindergarten Students [District] 2023-24,Kindergarten Students [District] 2023-24,Grade 1 Students [District] 2023-24,Grade 2 Students [District] 2023-24,Grade 3 Students [District] 2023-24,Grade 4 Students [District] 2023-24,Grade 5 Students [District] 2023-24,Grade 6 Students [District] 2023-24,Grade 7 Students [District] 2023-24,Grade 8 Students [District] 2023-24,Grade 9 Students [District] 2023-24,Grade 10 Students [District] 2023-24,Grade 11 Students [District] 2023-24,Grade 12 Students [District] 2023-24,Grade 13 Students [District] 2023-24,Ungraded Students [District] 2023-24,Adult Education Students [District] 2023-24,Male Students [District] 2023-24,Female Students [District] 2023-24,American Indian/Alaska Native Students [District] 2023-24,Asian or Asian/Pacific Islander Students [District] 2023-24,Hispanic Students [District] 2023-24,Black or African American Students [District] 2023-24,White Students [District] 2023-24,Nat. Hawaiian or Other Pacific Isl. Students [District] 2023-24,Two or More Races Students [District] 2023-24,Total Race/Ethnicity [District] 2023-24,American Indian/Alaska Native - male [District] 2023-24,American Indian/Alaska Native - female [District] 2023-24,Asian or Asian/Pacific Islander - male [District] 2023-24,Asian or Asian/Pacific Islander - female [District] 2023-24,Hispanic - male [District] 2023-24,Hispanic - female [District] 2023-24,Black or African American - male [District] 2023-24,Black or African American - female [District] 2023-24,White - male [District] 2023-24,White - female [District] 2023-24,Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Two or More Races - male [District] 2023-24,Two or More Races - female [District] 2023-24,Prekindergarten Students - male [District] 2023-24,Prekindergarten Students - female [District] 2023-24 -21ST CENTURY CHARTER SCH OF GARY,Indiana,IN ,21st Century Charter Sch of Gary,1800046,18,1630 N Meridian St 350,Indianapolis,46202, ,3175361027,IN-9545,Kindergarten,12th Grade,1213,1213,718,408,†,87,103,101,85,87,67,95,83,97,116,103,101,88,†,†,†,583,630,0,0,52,1130,3,0,28,1213,0,0,0,0,24,28,548,582,1,2,0,0,10,18,†,† -21ST CENTURY CYBER CS,Pennsylvania,PA ,21st Century Cyber CS,4200091,42,1245 Wrights Lane,West Chester,19380, ,4848755400,PA-124150002,6th Grade,12th Grade,1103,1103,203,900,†,†,†,†,†,†,†,29,65,109,238,225,226,211,†,†,†,482,621,0,4,38,49,997,2,13,1103,0,0,0,4,17,21,19,30,440,557,2,0,4,9,†,† -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,3500187,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,NM-580,1st Grade,8th Grade,378,378,378,†,†,†,17,15,22,34,42,85,80,83,†,†,†,†,†,†,†,200,178,12,6,26,28,306,0,0,378,3,9,3,3,19,7,16,12,159,147,0,0,0,0,†,† -A E R O SPEC EDUC COOP,Illinois,IL ,A E R O Spec Educ Coop,1700024,17,7600 Mason Ave,Burbank,60459, ,7084963330,IL-07-016-8060-60,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -A W BEATTIE CAREER CENTER,Pennsylvania,PA ,A W Beattie Career Center,4280010,42,9600 Babcock Boulevard,Allison Park,15101,2005,4128471900,PA-103020407,9th Grade,12th Grade,5,5,†,5,†,†,†,†,†,†,†,†,†,†,0,3,0,2,†,†,†,2,3,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,2,3,0,0,0,0,†,† -A W BROWN LEADERSHIP ACADEMY,Texas,TX ,A W BROWN LEADERSHIP ACADEMY,4800095,48,5701 RED BIRD CTR DR,DALLAS,75237, ,9727094700,TX-057816,Prekindergarten,8th Grade,778,778,503,†,184,91,81,74,93,61,64,48,47,35,†,†,†,†,†,†,†,364,414,0,0,36,716,1,2,23,778,0,0,0,0,17,19,337,379,1,0,1,1,8,15,88,96 -A+ ACADEMY,Texas,TX ,A+ ACADEMY,4800203,48,8225 BRUTON RD,DALLAS,75217, ,2142751200,TX-057829,Prekindergarten,12th Grade,1649,1649,919,471,150,109,95,97,117,105,100,124,128,153,144,120,116,91,†,†,†,853,796,0,6,1544,57,32,0,10,1649,0,0,2,4,799,745,35,22,13,19,0,0,4,6,72,78 -A+ ARTS ACADEMY,Ohio,OH ,A+ Arts Academy,3900305,39,1395 Fair Ave,Columbus,43205,1543,6147251305,OH-000556,Kindergarten,8th Grade,366,366,320,†,†,46,37,49,52,48,43,40,22,29,†,†,†,†,†,†,†,193,173,0,0,11,332,3,0,20,366,0,0,0,0,4,7,176,156,3,0,0,0,10,10,†,† -A+ CHARTER SCHOOLS (1000166),ARIZONA,AZ ,A+ Charter Schools (1000166),0400998,04,41600 W Smith-Enke Rd,Maricopa,85138, ,5202655589,AZ-1000166,6th Grade,12th Grade,306,306,82,224,†,†,†,†,†,†,†,20,31,31,56,72,44,52,†,†,†,167,139,4,5,133,40,109,1,14,306,1,3,4,1,75,58,16,24,65,44,0,1,6,8,†,† -A+ CHILDREN'S ACADEMY,Ohio,OH ,A+ Children's Academy,3901480,39,114 Obetz Rd,Columbus,43207,4031,6144918502,OH-013232,Kindergarten,6th Grade,87,87,71,†,†,16,18,14,5,11,17,6,†,†,†,†,†,†,†,†,†,50,37,0,3,5,28,41,2,8,87,0,0,2,1,4,1,13,15,27,14,1,1,3,5,†,† -A+ UNLIMITED POTENTIAL,TEXAS,TX ,A+ UNLIMITED POTENTIAL,4801453,48,2410 HAMILTON,HOUSTON,77004, ,7132043837,TX-101871,6th Grade,8th Grade,150,150,150,†,†,†,†,†,†,†,†,36,54,60,†,†,†,†,†,†,†,63,87,0,0,57,82,4,1,6,150,0,0,0,0,22,35,34,48,2,2,0,1,5,1,†,† -A-C CENTRAL CUSD 262,Illinois,IL ,A-C Central CUSD 262,1700105,17,501 W Buchanan St,Ashland,62612,7624,2174768112,IL-01-009-2620-26,Prekindergarten,12th Grade,328,328,183,106,16,23,22,22,24,24,22,26,21,22,25,29,28,24,†,†,†,167,161,0,0,7,2,312,0,7,328,0,0,0,0,6,1,0,2,156,156,0,0,5,2,10,6 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,VA ,A. Linwood Holton Governor's School,5100033,51,One Partnership Circle,Abingdon,24210, ,2764694026,VA-268,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -A.C.E. ACADEMY,North Carolina,NC ,A.C.E. Academy,3700372,37,7807 Caldwell Road,Harrisburg,28075, ,7044567153,NC-13C,Kindergarten,8th Grade,438,438,387,†,†,51,54,54,45,42,48,54,40,50,†,†,†,†,†,†,†,224,214,0,6,66,325,4,0,37,438,0,0,4,2,31,35,177,148,3,1,0,0,9,28,†,† -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,MN ,A.C.G.C. Public School District,2700106,27,27250 MINNESOTA HIGHWAY 4,GROVE CITY,56243,5003,3202444712,MN-012396,Prekindergarten,12th Grade,880,880,524,263,19,74,74,59,62,73,60,70,62,64,79,58,71,55,†,†,†,473,407,5,1,108,1,731,0,34,880,1,4,0,1,53,55,0,1,401,330,0,0,18,16,14,5 -ABBEVILLE 60,South Carolina,SC ,Abbeville 60,4500690,45,400 Greenville Street,Abbeville,29620, ,8643665427,SC-0160,Prekindergarten,12th Grade,2802,2802,1629,817,123,233,189,207,199,191,225,180,200,238,232,207,208,170,†,†,†,1479,1322,9,10,71,916,1710,2,83,2801,6,3,7,3,41,30,481,435,902,808,2,0,40,43,66,57 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,WI ,Abbotsford School District,5500030,55,510 W Hemlock St,Abbotsford,54405, ,7152236715,WI-0007,Prekindergarten,12th Grade,815,815,441,248,65,61,62,48,58,49,63,55,55,51,55,59,70,64,†,†,†,426,389,0,6,517,5,275,0,12,815,0,0,1,5,267,250,1,4,149,126,0,0,8,4,37,28 -ABBOTT ISD,Texas,TX ,ABBOTT ISD,4807380,48,219 S FIRST ST,ABBOTT,76621,0226,2545823011,TX-109901,Prekindergarten,12th Grade,284,284,166,76,21,21,22,19,21,21,19,18,23,23,23,15,18,20,†,†,†,162,122,0,0,43,3,231,0,7,284,0,0,0,0,26,17,2,1,131,100,0,0,3,4,12,9 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,MA ,Abby Kelley Foster Charter Public (District),2500051,25,10 New Bond Street,Worcester,01606, ,5088548400,MA-0445,Kindergarten,12th Grade,1421,1421,962,338,†,121,119,123,128,123,124,126,115,104,90,83,78,87,†,†,†,648,773,6,42,331,807,169,1,65,1421,3,3,20,22,154,177,360,447,74,95,1,0,36,29,†,† -ABC UNIFIED,California,CA ,ABC Unified,0601620,06,16700 Norwalk Blvd.,Cerritos,90703,1838,5629265566,CA-1964212,Kindergarten,12th Grade,18081,18081,10585,6089,†,1407,1167,1238,1248,1292,1368,1444,1374,1454,1411,1476,1570,1632,†,†,0,9293,8782,36,6377,8230,1271,859,99,1203,18075,20,16,3296,3081,4240,3990,628,643,448,411,52,47,609,594,†,† -ABERDEEN DISTRICT,Idaho,ID ,ABERDEEN DISTRICT,1600030,16,318 WEST WASHINGTON,ABERDEEN,83210,0610,2083974113,ID-058,Prekindergarten,12th Grade,643,643,371,223,15,34,35,46,46,51,49,49,43,52,63,50,55,55,†,†,†,327,316,2,1,416,8,208,2,6,643,1,1,0,1,202,214,4,4,117,91,0,2,3,3,10,5 -ABERDEEN SCHOOL DIST,Mississippi,MS ,ABERDEEN SCHOOL DIST,2800360,28,1100 W Commerce,Aberdeen,39730, ,6623694684,MS-4820,Prekindergarten,12th Grade,965,965,535,326,0,78,73,60,75,69,46,67,77,68,79,93,74,80,†,26,†,480,485,0,2,0,921,26,0,16,965,0,0,2,0,0,0,457,464,14,12,0,0,7,9,0,0 -ABERDEEN SCHOOL DISTRICT,Washington,WA ,Aberdeen School District,5300030,53,216 N G ST,ABERDEEN,98520,5297,3605382000,WA-14005,Prekindergarten,12th Grade,3274,3274,1777,1140,155,202,187,212,197,215,246,216,247,257,271,295,288,286,†,†,†,1637,1636,76,34,1204,45,1676,6,232,3273,35,41,14,20,597,607,25,20,836,840,4,2,126,106,79,75 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978404623079441206.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978404623079441206.csv deleted file mode 100644 index 2b86848fe7..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978404623079441206.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Kindergarten Students - male [District] 2023-24,Kindergarten Students - female [District] 2023-24,Grade 1 Students - male [District] 2023-24,Grade 1 Students - female [District] 2023-24,Grade 2 Students - male [District] 2023-24,Grade 2 Students - female [District] 2023-24,Grade 3 Students - male [District] 2023-24,Grade 3 Students - female [District] 2023-24,Grade 4 Students - male [District] 2023-24,Grade 4 Students - female [District] 2023-24,Grade 5 Students - male [District] 2023-24,Grade 5 Students - female [District] 2023-24,Grade 6 Students - male [District] 2023-24,Grade 6 Students - female [District] 2023-24,Grade 7 Students - male [District] 2023-24,Grade 7 Students - female [District] 2023-24,Grade 8 Students - male [District] 2023-24,Grade 8 Students - female [District] 2023-24,Grade 9 Students - male [District] 2023-24,Grade 9 Students - female [District] 2023-24,Grade 10 Students - male [District] 2023-24,Grade 10 Students - female [District] 2023-24,Grade 11 Students - male [District] 2023-24,Grade 11 Students - female [District] 2023-24,Grade 12 Students - male [District] 2023-24,Grade 12 Students - female [District] 2023-24,Grade 13 Students - male [District] 2023-24,Grade 13 Students - female [District] 2023-24,Ungraded Students - male [District] 2023-24,Ungraded Students - female [District] 2023-24,Adult Education Students - male [District] 2023-24,Adult Education Students - female [District] 2023-24,Prekindergarten Students - American Indian/Alaska Native [District] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander [District] 2023-24,Prekindergarten Students - Hispanic [District] 2023-24,Prekindergarten Students - Black or African American [District] 2023-24,Prekindergarten Students - White [District] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Prekindergarten Students Two or More Races [District] 2023-24,Kindergarten Students - American Indian/Alaska Native [District] 2023-24,Kindergarten Students - Asian or Asian/Pacific Islander [District] 2023-24,Kindergarten Students - Hispanic [District] 2023-24,Kindergarten Students - Black or African American [District] 2023-24,Kindergarten Students White [District] 2023-24,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Kindergarten Students Two or More Races [District] 2023-24,Grade 1 Students - American Indian/Alaska Native [District] 2023-24,Grade 1 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 1 Students - Hispanic [District] 2023-24,Grade 1 Students - Black or African American [District] 2023-24,Grade 1 Students - White [District] 2023-24,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 1 Students - Two or More Races [District] 2023-24,Grade 2 Students - American Indian/Alaska Native [District] 2023-24,Grade 2 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 2 Students - Hispanic [District] 2023-24,Grade 2 Students - Black or African American [District] 2023-24,Grade 2 Students - White [District] 2023-24,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,42,45,52,51,51,50,33,52,41,46,32,35,48,47,43,40,48,49,50,66,59,44,42,59,42,46,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,4,80,0,0,3,0,0,4,96,0,0,3,0,0,2,97,1,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,13,16,34,31,50,59,101,137,98,127,97,129,89,122,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,8,9,7,8,10,12,15,19,19,23,45,40,50,30,46,37,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,3,14,0,0,2,0,1,0,12,0,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,1,0,0,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,37,54,31,50,30,44,47,46,31,30,28,36,30,18,23,24,19,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,9,169,0,1,5,0,0,5,83,1,0,2,0,0,3,76,0,0,2,0,0,4,67,0,0,4800095 -A+ ACADEMY,Texas,54,55,41,54,53,44,58,59,49,56,60,40,68,56,74,54,77,76,94,50,61,59,45,71,47,44,†,†,†,†,†,†,0,1,134,8,6,0,1,0,0,95,9,4,0,1,0,0,91,3,1,0,0,0,0,92,3,1,0,4800203 -A+ ARTS ACADEMY,Ohio,30,16,25,12,25,24,33,19,27,21,18,25,15,25,7,15,13,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,39,0,0,4,0,0,3,30,1,0,3,0,0,2,46,0,0,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,10,10,15,16,15,16,27,29,42,30,27,17,31,21,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,13,3,10,8,8,6,2,3,6,5,8,9,3,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,5,8,0,0,0,0,1,8,7,0,2,0,1,0,5,8,0,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,16,20,22,32,25,35,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,9,14,12,10,10,12,10,14,13,11,13,9,11,15,7,14,11,11,14,11,15,14,15,13,17,7,†,†,†,†,†,†,0,0,0,0,16,0,0,0,0,0,1,22,0,0,0,0,0,0,22,0,0,0,0,0,0,22,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,24,27,25,29,30,24,21,24,22,20,26,22,27,27,25,15,24,26,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,6,42,0,0,2,0,1,10,37,1,0,5,0,1,5,42,1,0,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,40,34,41,33,34,25,32,30,35,38,28,32,39,31,36,26,33,31,43,36,28,30,44,27,26,29,†,†,†,†,†,†,0,0,4,0,15,0,0,0,0,11,0,61,0,2,0,0,10,0,64,0,0,1,0,5,0,49,0,2700106 -ABBEVILLE 60,South Carolina,109,124,102,87,104,103,96,103,101,90,120,105,102,78,101,99,129,108,123,109,112,95,122,86,92,78,†,†,†,†,†,†,0,0,3,54,62,0,4,0,0,7,90,130,0,6,1,2,4,61,111,0,10,1,0,1,80,121,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,30,31,33,29,22,26,31,27,26,23,30,33,25,30,29,26,27,24,32,23,36,23,34,36,34,30,†,†,†,†,†,†,0,0,39,0,25,0,1,0,0,45,0,16,0,0,0,2,42,0,18,0,0,0,0,36,1,10,0,5500030 -ABBOTT ISD,Texas,14,7,14,8,12,7,8,13,12,9,13,6,9,9,14,9,12,11,13,10,5,10,13,5,11,9,†,†,†,†,†,†,0,0,6,0,15,0,0,0,0,3,0,18,0,0,0,0,2,0,19,0,1,0,0,1,1,17,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,58,63,50,69,65,58,50,78,60,63,60,64,49,77,47,68,53,51,44,46,34,49,35,43,43,44,†,†,†,†,†,†,†,†,†,†,†,†,†,0,4,50,55,9,0,3,1,1,42,60,9,0,6,1,0,38,66,11,0,2500051 -ABC UNIFIED,California,706,700,563,604,661,577,661,587,664,628,697,671,754,689,694,679,748,705,722,689,766,709,819,751,838,793,†,†,†,†,0,0,†,†,†,†,†,†,†,–,480,689,54,48,13,122,2,398,532,75,53,3,104,1,410,539,85,53,5,0601620 -ABERDEEN DISTRICT,Idaho,19,15,17,18,20,26,19,27,28,23,21,28,27,22,22,21,24,28,40,23,27,23,32,23,21,34,†,†,†,†,†,†,0,0,14,0,1,0,0,0,0,21,0,12,1,0,0,0,22,1,12,0,0,0,0,30,0,16,0,1600030 -ABERDEEN SCHOOL DIST,Mississippi,35,43,36,37,31,29,37,38,38,31,30,16,40,27,35,42,36,32,34,45,38,55,34,40,35,45,†,†,21,5,†,†,0,0,0,0,0,0,0,0,0,0,75,3,0,0,0,1,0,67,4,0,1,0,0,0,59,1,0,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,112,90,98,89,101,111,97,100,113,102,121,125,105,111,110,137,123,134,134,137,161,134,147,141,136,150,†,†,†,†,†,†,4,2,76,3,65,–,4,7,0,79,1,98,0,17,5,1,83,2,87,0,9,5,1,83,2,105,0,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978405393867153627.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978405393867153627.csv deleted file mode 100644 index 63e5ec6865..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978405393867153627.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 2 Students - Two or More Races [District] 2023-24,Grade 3 Students - American Indian/Alaska Native [District] 2023-24,Grade 3 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 3 Students - Hispanic [District] 2023-24,Grade 3 Students - Black or African American [District] 2023-24,Grade 3 Students - White [District] 2023-24,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 3 Students - Two or More Races [District] 2023-24,Grade 4 Students - American Indian/Alaska Native [District] 2023-24,Grade 4 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 4 Students - Hispanic [District] 2023-24,Grade 4 Students - Black or African American [District] 2023-24,Grade 4 Students - White [District] 2023-24,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 4 Students - Two or More Races [District] 2023-24,Grade 5 Students - American Indian/Alaska Native [District] 2023-24,Grade 5 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 5 Students - Hispanic [District] 2023-24,Grade 5 Students - Black or African American [District] 2023-24,Grade 5 Students - White [District] 2023-24,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 5 Students - Two or More Races [District] 2023-24,Grade 6 Students - American Indian/Alaska Native [District] 2023-24,Grade 6 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 6 Students - Hispanic [District] 2023-24,Grade 6 Students - Black or African American [District] 2023-24,Grade 6 Students - White [District] 2023-24,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 6 Students - Two or More Races [District] 2023-24,Grade 7 Students - American Indian/Alaska Native [District] 2023-24,Grade 7 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 7 Students - Hispanic [District] 2023-24,Grade 7 Students - Black or African American [District] 2023-24,Grade 7 Students - White [District] 2023-24,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 7 Students - Two or More Races [District] 2023-24,Grade 8 Students - American Indian/Alaska Native [District] 2023-24,Grade 8 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 8 Students - Hispanic [District] 2023-24,Grade 8 Students - Black or African American [District] 2023-24,Grade 8 Students - White [District] 2023-24,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 8 Students - Two or More Races [District] 2023-24,Grade 9 Students - American Indian/Alaska Native [District] 2023-24,Grade 9 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 9 Students - Hispanic [District] 2023-24,Grade 9 Students - Black or African American [District] 2023-24,Grade 9 Students - White [District] 2023-24,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 9 Students - Two or More Races [District] 2023-24,Grade 10 Students - American Indian/Alaska Native [District] 2023-24,Grade 10 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 10 Students - Hispanic [District] 2023-24,Grade 10 Students - Black or African American [District] 2023-24,Grade 10 Students - White [District] 2023-24,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 10 Students - Two or More Races [District] 2023-24,Grade 11 Students - American Indian/Alaska Native [District] 2023-24,Grade 11 Students - Asian or Asian/Pacific Islander [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,1,0,0,4,79,0,0,2,0,0,4,82,0,0,1,0,0,3,63,0,0,1,0,0,3,91,0,0,1,0,0,5,77,0,0,1,0,0,5,88,0,0,4,0,0,5,106,0,0,5,0,0,5,96,0,0,2,0,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,7,3,16,1,1,0,0,1,3,58,0,3,0,1,5,4,94,0,5,0,0,12,17,205,1,3,0,1,5,10,209,0,0,0,0,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,0,0,0,1,4,17,0,0,1,0,1,2,30,0,0,2,0,3,3,34,0,0,1,3,7,4,70,0,0,1,2,6,4,67,0,0,5,1,7,8,62,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,3,0,0,9,81,0,0,3,0,0,3,55,0,0,3,0,0,2,58,0,1,3,0,0,0,47,0,0,1,0,0,1,45,0,0,1,0,0,0,35,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4800095 -A+ ACADEMY,Texas,1,0,0,113,3,0,0,1,0,2,96,2,4,0,1,0,0,96,3,1,0,0,0,1,118,2,2,0,1,0,1,121,2,3,0,1,0,0,145,3,3,0,2,0,0,137,5,2,0,0,0,1,113,5,1,0,0,0,0,4800203 -A+ ARTS ACADEMY,Ohio,1,0,0,1,50,0,0,1,0,0,0,46,0,0,2,0,0,1,39,1,0,2,0,0,0,35,1,0,4,0,0,1,19,0,0,2,0,0,0,28,0,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,7,4,7,0,2,1,0,11,7,11,0,1,0,0,14,2,14,0,1,2,3,22,7,19,1,2,0,1,34,10,24,0,3,1,0,0400998 -A+ CHILDREN'S ACADEMY,Ohio,0,0,0,0,1,3,0,1,0,1,1,3,6,0,0,0,1,0,5,4,2,5,0,0,0,1,5,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,13,18,2,0,3,0,0,19,32,2,0,1,0,0,25,32,0,1,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,0,0,0,0,1,22,0,1,0,0,0,0,23,0,1,0,0,0,0,22,0,0,0,0,0,0,24,0,2,0,0,1,0,19,0,1,0,0,1,0,21,0,0,0,0,3,0,21,0,1,0,0,1,0,28,0,0,0,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,5,0,0,7,35,0,0,3,0,0,3,34,0,0,5,0,1,7,34,0,0,6,0,1,13,33,1,0,6,0,1,4,33,1,0,1,0,0,11,35,0,0,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,4,0,0,12,0,47,0,3,0,0,9,0,62,0,2,0,0,4,0,53,0,3,1,0,8,0,57,0,4,0,0,7,0,51,0,4,1,0,9,0,53,0,1,1,0,9,0,64,0,5,0,0,7,0,50,0,1,0,1,2700106 -ABBEVILLE 60,South Carolina,4,2,0,4,65,123,0,5,0,0,2,71,110,0,8,0,1,1,74,140,0,9,1,1,6,56,109,0,7,1,1,7,58,130,0,3,1,2,7,69,152,0,6,0,0,10,67,151,0,4,0,3,6,71,123,0,4,0,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,1,0,0,42,0,14,0,2,0,0,34,1,13,0,1,0,0,46,0,16,0,1,0,0,42,0,11,0,2,0,0,32,0,23,0,0,0,3,30,1,15,0,2,0,1,26,2,26,0,0,0,0,34,0,25,0,0,0,0,5500030 -ABBOTT ISD,Texas,0,0,0,4,0,17,0,0,0,0,1,1,19,0,0,0,0,6,1,11,0,1,0,0,4,0,12,0,2,0,0,2,0,20,0,1,0,0,5,0,17,0,1,0,0,4,0,19,0,0,0,0,2,0,13,0,0,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,7,3,5,18,71,16,0,15,1,5,16,72,19,0,10,0,4,31,69,16,0,4,0,9,30,64,16,0,7,0,3,29,66,14,1,2,0,2,15,58,22,0,7,0,3,13,62,9,0,3,0,3,13,63,4,0,0,0,0,2500051 -ABC UNIFIED,California,145,2,421,537,91,49,6,142,3,444,561,74,67,6,137,4,511,591,91,61,16,94,5,490,673,115,70,8,82,4,496,618,113,69,8,65,1,540,644,116,77,5,70,1,489,685,91,75,7,63,5,527,691,108,76,9,59,5,573,0601620 -ABERDEEN DISTRICT,Idaho,0,0,0,26,0,20,0,0,0,0,34,1,16,0,0,0,0,30,1,18,0,0,0,0,35,1,13,0,0,0,0,32,0,11,0,0,1,0,35,0,14,0,2,0,0,38,2,21,0,2,0,0,29,1,18,0,2,1,0,1600030 -ABERDEEN SCHOOL DIST,Mississippi,0,0,0,0,73,2,0,0,0,1,0,67,0,0,1,0,0,0,42,2,0,2,0,0,0,67,0,0,0,0,0,0,70,3,0,4,0,0,0,64,3,0,1,0,0,0,75,3,0,1,0,0,0,90,0,0,3,0,0,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,16,3,1,84,2,93,1,13,7,2,64,1,122,1,18,5,1,96,2,122,1,19,4,3,72,4,105,0,28,5,3,88,7,125,1,18,4,3,83,2,141,0,24,7,3,95,5,149,1,11,9,5,98,5,158,1,19,4,5,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978406339657098492.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978406339657098492.csv deleted file mode 100644 index 53055ce81e..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978406339657098492.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 11 Students - Hispanic [District] 2023-24,Grade 11 Students - Black or African American [District] 2023-24,Grade 11 Students - White [District] 2023-24,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 11 Students - Two or More Races [District] 2023-24,Grade 12 Students - American Indian/Alaska Native [District] 2023-24,Grade 12 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 12 Students - Hispanic [District] 2023-24,Grade 12 Students - Black or African American [District] 2023-24,Grade 12 Students - White [District] 2023-24,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 12 Students - Two or More Races [District] 2023-24,Grade 13 Students - American Indian/Alaska Native [District] 2023-24,Grade 13 Students - Asian or Asian/Pacific Islander [District] 2023-24,Grade 13 Students - Hispanic [District] 2023-24,Grade 13 Students - Black or African American [District] 2023-24,Grade 13 Students - White [District] 2023-24,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Grade 13 Students - Two or More Races [District] 2023-24,Ungraded Students - American Indian/Alaska Native [District] 2023-24,Ungraded Students - Asian or Asian/Pacific Islander [District] 2023-24,Ungraded Students - Hispanic [District] 2023-24,Ungraded Students - Black or African American [District] 2023-24,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Ungraded Students - White [District] 2023-24,Ungraded Students - Two or More Races [District] 2023-24,Adult Education Students - American Indian/Alaska Native [District] 2023-24,Adult Education Students - Asian or Asian/Pacific Islander [District] 2023-24,Adult Education Students - Hispanic [District] 2023-24,Adult Education Students - Black or African American [District] 2023-24,Adult Education Students - White [District] 2023-24,Adult Education - Nat. Hawaiian or Other Pacific Isl. [District] 2023-24,Adult Education Students - Two or More Races [District] 2023-24,Prekindergarten Students - American Indian/Alaska Native - male [District] 2023-24,Prekindergarten Students - American Indian/Alaska Native - female [District] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Prekindergarten Students - Hispanic - male [District] 2023-24,Prekindergarten Students - Hispanic - female [District] 2023-24,Prekindergarten Students - Black or African American - male [District] 2023-24,Prekindergarten Students - Black or African American - female [District] 2023-24,Prekindergarten Students - White - male [District] 2023-24,Prekindergarten Students - White - female [District] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Prekindergarten Students - Two or More Races - male [District] 2023-24,Prekindergarten Students - Two or More Races - female [District] 2023-24,Kindergarten Students - American Indian/Alaska Native - male [District] 2023-24,Kindergarten Students - American Indian/Alaska Native - female [District] 2023-24,Kindergarten Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Kindergarten Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Kindergarten Students - Hispanic - male [District] 2023-24,Kindergarten Students - Hispanic - female [District] 2023-24,Kindergarten Students - Black or African American - male [District] 2023-24,Kindergarten Students - Black or African American - female [District] 2023-24,Kindergarten Students - White - male [District] 2023-24,Kindergarten Students - White - female [District] 2023-24,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,6,92,1,0,2,0,0,2,83,1,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,1,38,42,0,0,0,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,5,7,214,0,0,0,1,3,5,201,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,0,0,0,0,0,0,0,0,0,2,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,5,4,82,87,0,0,0,1,1,4,0,0,0,0,3,2,33,50,1,0,0,0,4800095 -A+ ACADEMY,Texas,109,4,3,0,0,0,0,84,5,1,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,1,64,70,5,3,3,3,0,0,0,1,0,0,0,0,47,48,6,3,1,3,0,0,4800203 -A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,1,2,27,12,0,0,0,0,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,19,3,19,0,2,0,1,26,7,15,0,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,2,1,3,2,8,0,0,0,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,1,0,26,0,1,0,0,0,0,24,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,1,9,13,0,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,1,3,3,21,21,0,0,0,0,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,5,0,62,0,3,1,0,8,1,43,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,1,0,0,11,4,0,0,0,0,0,0,0,0,5,6,0,0,33,28,0,0,2700106 -ABBEVILLE 60,South Carolina,7,56,135,1,9,2,0,6,44,113,1,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,3,34,20,29,33,0,0,3,1,0,0,0,0,5,2,42,48,60,70,0,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,39,0,30,0,1,0,0,30,0,33,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,22,17,0,0,14,11,0,0,1,0,0,0,0,0,21,24,0,0,9,7,0,0,5500030 -ABBOTT ISD,Texas,1,0,17,0,0,0,0,2,0,17,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,3,0,0,9,6,0,0,0,0,0,0,0,0,1,2,0,0,13,5,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,22,46,10,0,0,0,3,14,55,14,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,1,26,24,24,31,5,4,0,0,2500051 -ABC UNIFIED,California,733,112,78,5,64,3,598,737,146,83,8,56,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,240,240,335,354,29,25,28,20,6,7,0601620 -ABERDEEN DISTRICT,Idaho,35,1,18,0,0,0,1,35,0,18,1,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,9,5,0,0,1,0,0,0,0,0,0,0,0,0,11,10,0,0,8,4,0,1,1600030 -ABERDEEN SCHOOL DIST,Mississippi,0,72,0,0,2,0,0,0,77,2,0,1,†,†,†,†,†,†,†,0,0,0,23,0,3,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,42,2,1,0,0,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,102,5,159,0,13,7,4,101,4,147,0,23,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,2,2,–,36,40,1,2,36,29,–,–,2,2,3,4,0,0,40,39,1,0,60,38,0,0,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978407085375858439.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978407085375858439.csv deleted file mode 100644 index 6c000579c6..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978407085375858439.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Kindergarten Students - Two or More Races - male [District] 2023-24,Kindergarten Students - Two or More Races - female [District] 2023-24,Grade 1 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 1 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 1 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 1 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 1 Students - Hispanic - male [District] 2023-24,Grade 1 Students - Hispanic - female [District] 2023-24,Grade 1 Students - Black or African American - male [District] 2023-24,Grade 1 Students - Black or African American - female [District] 2023-24,Grade 1 Students - White - male [District] 2023-24,Grade 1 Students - White - female [District] 2023-24,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 1 Students - Two or More Races - male [District] 2023-24,Grade 1 Students - Two or More Races - female [District] 2023-24,Grade 2 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 2 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 2 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 2 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 2 Students - Hispanic - male [District] 2023-24,Grade 2 Students - Hispanic - female [District] 2023-24,Grade 2 Students - Black or African American - male [District] 2023-24,Grade 2 Students - Black or African American - female [District] 2023-24,Grade 2 Students - White - male [District] 2023-24,Grade 2 Students - White - female [District] 2023-24,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 2 Students - Two or More Races - male [District] 2023-24,Grade 2 Students - Two or More Races - female [District] 2023-24,Grade 3 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 3 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 3 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 3 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 3 Students - Hispanic - male [District] 2023-24,Grade 3 Students - Hispanic - female [District] 2023-24,Grade 3 Students - Black or African American - male [District] 2023-24,Grade 3 Students - Black or African American - female [District] 2023-24,Grade 3 Students - White - male [District] 2023-24,Grade 3 Students - White - female [District] 2023-24,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 3 Students - Two or More Races - male [District] 2023-24,Grade 3 Students - Two or More Races - female [District] 2023-24,Grade 4 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 4 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 4 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 4 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 4 Students - Hispanic - male [District] 2023-24,Grade 4 Students - Hispanic - female [District] 2023-24,Grade 4 Students - Black or African American - male [District] 2023-24,Grade 4 Students - Black or African American - female [District] 2023-24,Grade 4 Students - White - male [District] 2023-24,Grade 4 Students - White - female [District] 2023-24,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 4 Students - Two or More Races - male [District] 2023-24,Grade 4 Students - Two or More Races - female [District] 2023-24,Grade 5 Students - American Indian/Alaska Native - male [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,1,2,0,0,0,0,2,2,50,46,0,0,0,0,0,3,0,0,0,0,1,1,50,47,0,1,0,0,0,1,0,0,0,0,0,4,31,48,0,0,0,0,2,0,0,0,0,0,1,3,40,42,0,0,0,0,0,1,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,0,0,0,0,0,0,2,1,6,8,0,0,0,0,1,1,0,0,1,0,0,0,5,7,0,0,0,0,0,0,0,0,1,0,2,2,7,10,0,0,0,0,0,1,0,0,0,1,0,2,15,15,0,0,0,0,0,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,0,2,0,0,0,0,1,2,29,47,0,0,0,0,1,1,0,0,0,0,0,4,29,38,0,0,0,0,1,2,0,0,0,0,5,4,41,40,0,0,0,0,1,2,0,0,0,0,1,2,29,26,0,0,0,0,1,2,0,4800095 -A+ ACADEMY,Texas,0,1,0,0,0,0,38,53,2,1,1,0,0,0,0,0,0,0,0,0,50,42,2,1,0,1,0,0,1,0,0,0,0,0,56,57,2,1,0,0,0,0,0,1,0,0,1,1,45,51,2,0,1,3,0,0,0,1,0,4800203 -A+ ARTS ACADEMY,Ohio,2,2,0,0,0,0,1,2,21,9,1,0,0,0,2,1,0,0,0,0,1,1,23,23,0,0,0,0,1,0,0,0,0,0,0,1,32,18,0,0,0,0,1,0,0,0,0,0,0,0,26,20,0,0,0,0,1,1,0,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,0,0,0,0,0,0,1,0,3,5,5,2,0,0,1,1,0,0,1,0,0,0,4,1,3,5,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,1,0,0,1,0,1,0,1,2,3,3,0,0,0,0,0,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,0,0,0,0,0,0,0,0,0,0,12,10,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,0,0,0,0,0,0,0,0,0,1,9,13,0,0,1,0,0,0,0,0,0,0,0,0,13,10,0,0,0,1,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,0,2,0,0,1,0,4,6,18,19,1,0,0,0,1,4,0,0,1,0,4,1,23,19,1,0,0,0,1,4,0,0,0,0,4,3,17,18,0,0,0,0,0,3,0,0,0,0,1,2,20,14,0,0,0,0,1,4,0,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,2,0,0,0,0,0,4,6,0,0,37,27,0,0,0,0,0,1,0,0,4,1,0,0,29,20,0,0,1,3,0,0,0,0,6,6,0,0,24,23,0,0,2,1,0,0,0,0,6,3,0,0,28,34,0,0,1,1,0,2700106 -ABBEVILLE 60,South Carolina,2,4,1,0,1,1,2,2,36,25,58,53,0,0,4,6,0,1,0,0,0,1,39,41,64,57,0,0,1,3,1,1,0,0,2,2,30,35,61,62,0,0,2,3,0,0,0,0,2,0,34,37,60,50,0,0,5,3,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,0,0,0,0,1,1,21,21,0,0,11,7,0,0,0,0,0,0,0,0,15,21,0,1,6,4,0,0,1,0,0,0,0,0,22,20,0,0,7,7,0,0,2,0,0,0,0,0,18,16,0,1,7,6,0,0,1,0,0,5500030 -ABBOTT ISD,Texas,0,0,0,0,0,0,2,0,0,0,12,7,0,0,0,1,0,0,0,0,1,0,0,1,11,6,0,0,0,0,0,0,0,0,1,3,0,0,7,10,0,0,0,0,0,0,0,0,1,0,1,0,10,9,0,0,0,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,0,3,1,0,0,1,15,27,24,36,6,3,0,0,4,2,1,0,0,0,20,18,34,32,5,6,0,0,5,2,1,2,1,4,8,10,25,46,8,8,0,0,7,8,0,1,2,3,9,7,38,34,4,15,0,0,7,3,0,2500051 -ABC UNIFIED,California,68,54,1,1,194,204,260,272,34,41,28,25,2,1,44,60,1,0,212,198,290,249,46,39,30,23,3,2,79,66,2,0,210,211,294,243,54,37,24,25,3,3,74,68,0,3,219,225,298,263,40,34,33,34,3,3,71,66,3,0601620 -ABERDEEN DISTRICT,Idaho,0,0,0,0,0,0,10,12,1,0,6,6,0,0,0,0,0,0,0,0,13,17,0,0,7,9,0,0,0,0,0,0,0,0,12,14,0,0,7,13,0,0,0,0,0,0,0,0,18,16,0,1,10,6,0,0,0,0,0,1600030 -ABERDEEN SCHOOL DIST,Mississippi,0,0,0,0,1,0,0,0,31,36,3,1,0,0,1,0,0,0,0,0,0,0,31,28,0,1,0,0,0,0,0,0,0,0,0,0,36,37,1,1,0,0,0,0,0,0,1,0,0,0,37,30,0,0,0,0,0,1,0,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,8,9,3,2,0,1,43,40,1,1,49,38,0,0,2,7,2,3,0,1,39,44,2,0,49,56,0,0,9,7,1,2,1,0,44,40,2,0,42,51,1,0,6,7,2,5,0,2,35,29,0,1,64,58,1,0,11,7,3,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978408027941011352.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978408027941011352.csv deleted file mode 100644 index 40f521719c..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978408027941011352.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 5 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 5 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 5 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 5 Students - Hispanic - male [District] 2023-24,Grade 5 Students - Hispanic - female [District] 2023-24,Grade 5 Students - Black or African American - male [District] 2023-24,Grade 5 Students - Black or African American - female [District] 2023-24,Grade 5 Students - White - male [District] 2023-24,Grade 5 Students - White - female [District] 2023-24,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 5 Students - Two or More Races - male [District] 2023-24,Grade 5 Students - Two or More Races - female [District] 2023-24,Grade 6 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 6 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 6 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 6 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 6 Students - Hispanic - male [District] 2023-24,Grade 6 Students - Hispanic - female [District] 2023-24,Grade 6 Students - Black or African American - male [District] 2023-24,Grade 6 Students - Black or African American - female [District] 2023-24,Grade 6 Students - White - male [District] 2023-24,Grade 6 Students - White - female [District] 2023-24,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 6 Students- Two or More Races - male [District] 2023-24,Grade 6 Students - Two or More Races - female [District] 2023-24,Grade 7 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 7 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 7 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 7 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 7 Students - Hispanic - male [District] 2023-24,Grade 7 Students - Hispanic - female [District] 2023-24,Grade 7 Students - Black or African American - male [District] 2023-24,Grade 7 Students - Black or African American - female [District] 2023-24,Grade 7 Students - White - male [District] 2023-24,Grade 7 Students - White - female [District] 2023-24,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 7 Students - Two or More Races - male [District] 2023-24,Grade 7 Students - Two or More Races - female [District] 2023-24,Grade 8 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 8 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 8 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 8 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 8 Students- Hispanic - male [District] 2023-24,Grade 8 Students - Hispanic - female [District] 2023-24,Grade 8 Students - Black or African American - male [District] 2023-24,Grade 8 Students - Black or African American - female [District] 2023-24,Grade 8 Students - White - male [District] 2023-24,Grade 8 Students - White - female [District] 2023-24,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 8 Students - Two or More Races - male [District] 2023-24,Grade 8 Students - Two or More Races - female [District] 2023-24,Grade 9 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 9 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 9 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 9 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,0,0,0,2,1,30,33,0,0,0,0,0,1,0,0,0,0,2,1,45,46,0,0,0,0,1,0,0,0,0,0,2,3,41,36,0,0,0,0,0,1,0,0,0,0,2,3,46,42,0,0,0,0,0,4,0,0,0,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,1,3,4,2,1,6,10,1,0,1,0,0,0,0,0,1,0,0,3,32,26,0,0,1,2,0,0,0,1,2,3,1,3,47,47,0,0,0,5,0,0,0,0,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,2,0,0,3,0,1,2,15,19,0,0,0,0,0,1,1,2,3,4,3,1,38,32,0,0,0,0,0,1,2,0,4,2,3,1,41,26,0,0,0,0,2,3,0,1,7,0,5,3,32,30,0,0,0,0,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,0,0,0,2,0,23,35,0,0,1,0,2,1,0,0,0,0,0,0,30,17,0,0,0,0,0,1,0,0,0,0,0,1,22,23,0,0,0,0,1,0,0,0,0,0,0,0,19,16,0,0,0,0,0,0,†,†,†,†,4800095 -A+ ACADEMY,Texas,0,0,0,58,38,2,1,0,1,0,0,0,0,0,0,1,0,65,53,0,2,1,1,0,0,1,0,0,0,0,1,69,52,2,0,2,1,0,0,1,0,0,0,0,0,73,72,2,1,1,2,0,0,1,1,0,0,0,0,4800203 -A+ ARTS ACADEMY,Ohio,0,0,0,0,1,16,23,1,0,0,0,1,1,0,0,0,0,0,0,13,22,1,0,0,0,1,3,0,0,0,0,1,0,5,14,0,0,0,0,1,1,0,0,0,0,0,0,13,15,0,0,0,0,0,1,†,†,†,†,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,4,0,4,6,1,0,0,1,1,1,0,0,0,6,5,3,4,5,6,0,0,0,1,0,0,0,0,4,10,2,0,9,5,0,0,0,1,0,2,3,0,0400998 -A+ CHILDREN'S ACADEMY,Ohio,0,0,1,0,0,2,3,3,1,1,1,2,3,0,0,0,0,0,0,0,1,3,2,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,7,6,5,13,2,0,0,0,2,1,0,0,0,0,6,13,15,17,0,2,0,0,1,0,0,0,0,0,9,16,14,18,0,0,0,1,2,0,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,0,0,0,0,0,0,0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,9,15,0,0,2,0,0,0,0,0,1,0,0,0,5,14,0,0,1,0,0,0,0,0,1,0,0,0,10,11,0,0,0,0,0,0,0,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,0,1,0,3,4,19,15,0,0,0,0,3,3,0,0,1,0,7,6,17,16,0,1,0,0,2,4,0,0,0,1,1,3,23,10,1,0,0,0,0,1,0,0,0,0,4,7,19,16,0,0,0,0,1,3,†,†,†,†,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,0,0,0,1,3,0,0,25,28,0,0,2,1,0,1,0,0,2,6,0,0,36,21,0,0,1,3,0,0,0,0,2,5,0,0,33,18,0,0,1,3,0,1,0,0,4,5,0,0,28,25,0,0,1,0,1,0,0,0,2700106 -ABBEVILLE 60,South Carolina,0,1,0,0,1,42,32,74,66,0,0,3,6,1,0,1,0,3,3,31,25,64,45,0,0,2,5,1,0,1,0,3,4,26,32,69,61,0,0,1,2,1,0,1,1,6,1,41,28,77,75,0,0,3,3,0,0,0,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,0,0,0,24,22,0,0,5,11,0,0,1,0,0,0,0,0,21,21,0,0,4,7,0,0,0,2,0,0,0,0,17,15,0,0,12,11,0,0,0,0,0,0,0,3,19,11,1,0,6,9,0,0,1,1,0,0,0,1,5500030 -ABBOTT ISD,Texas,0,0,0,6,0,1,0,6,5,0,0,0,1,0,0,0,0,1,3,0,0,6,6,0,0,2,0,0,0,0,0,2,0,0,0,12,8,0,0,0,1,0,0,0,0,3,2,0,0,9,8,0,0,0,1,0,0,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,0,2,2,15,16,36,33,3,13,0,0,4,0,0,0,4,5,10,20,25,39,6,10,0,0,4,3,0,0,1,2,12,17,22,44,10,4,1,0,1,1,0,0,2,0,8,7,30,28,9,13,0,0,4,3,0,0,1,2,2500051 -ABC UNIFIED,California,1,275,236,293,298,41,50,28,33,9,7,48,46,1,4,257,233,346,327,63,52,34,36,6,2,47,35,3,1,260,236,320,298,47,66,31,38,3,5,30,35,1,–,282,258,338,306,58,58,35,42,2,3,32,38,0,1,249,240,0601620 -ABERDEEN DISTRICT,Idaho,0,0,0,11,19,0,1,10,8,0,0,0,0,0,0,0,0,19,16,0,1,8,5,0,0,0,0,0,0,0,0,17,15,0,0,5,6,0,0,0,0,0,1,0,0,15,20,0,0,7,7,0,0,2,0,0,0,0,0,1600030 -ABERDEEN SCHOOL DIST,Mississippi,0,0,0,0,0,27,15,1,1,0,0,2,0,0,0,0,0,0,0,40,27,0,0,0,0,0,0,0,0,0,0,0,0,32,38,1,2,0,0,2,2,0,0,0,0,0,0,32,32,3,0,0,0,1,0,0,0,0,0,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,2,1,0,41,55,2,0,62,60,1,0,11,8,2,2,1,2,31,41,3,1,49,56,0,0,19,9,1,4,0,3,35,53,3,4,62,63,1,0,8,10,2,2,1,2,39,44,0,2,69,72,0,0,12,12,3,4,2,1,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978409111351539565.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978409111351539565.csv deleted file mode 100644 index 1c06bf410a..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978409111351539565.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 9 Students - Hispanic - male [District] 2023-24,Grade 9 Students - Hispanic - female [District] 2023-24,Grade 9 Students - Black or African American - male [District] 2023-24,Grade 9 Students - Black or African American - female [District] 2023-24,Grade 9 Students - White - male [District] 2023-24,Grade 9 Students - White - female [District] 2023-24,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 9 Students - Two or More Races - male [District] 2023-24,Grade 9 Students - Two or More Races - female [District] 2023-24,Grade 10 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 10 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 10 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 10 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 10 Students - Hispanic - male [District] 2023-24,Grade 10 Students - Hispanic - female [District] 2023-24,Grade 10 Students - Black or African American - male [District] 2023-24,Grade 10 Students - Black or African American - female [District] 2023-24,Grade 10 Students - White - male [District] 2023-24,Grade 10 Students - White - female [District] 2023-24,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 10 Students - Two or More Races - male [District] 2023-24,Grade 10 Students - Two or More Races - female [District] 2023-24,Grade 11 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 11 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 11 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 11 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 11 Students - Hispanic - male [District] 2023-24,Grade 11 Students - Hispanic - female [District] 2023-24,Grade 11 Students - Black or African American - male [District] 2023-24,Grade 11 Students - Black or African American - female [District] 2023-24,Grade 11 Students - White - male [District] 2023-24,Grade 11 Students - White - female [District] 2023-24,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 11 Students - Two or More Races - male [District] 2023-24,Grade 11 Students - Two or More Races - female [District] 2023-24,Grade 12 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 12 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 12 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 12 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 12 Students - Hispanic - male [District] 2023-24,Grade 12 Students - Hispanic - female [District] 2023-24,Grade 12 Students - Black or African American - male [District] 2023-24,Grade 12 Students - Black or African American - female [District] 2023-24,Grade 12 Students - White - male [District] 2023-24,Grade 12 Students - White - female [District] 2023-24,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 12 Students - Two or More Races - male [District] 2023-24,Grade 12 Students - Two or More Races - female [District] 2023-24,Grade 13 Students - American Indian/Alaska Native - male [District] 2023-24,Grade 13 Students - American Indian/Alaska Native - female [District] 2023-24,Grade 13 Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Grade 13 Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Grade 13 Students - Hispanic - male [District] 2023-24,Grade 13 Students - Hispanic - female [District] 2023-24,Grade 13 Students - Black or African American - male [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,4,1,44,62,0,0,0,0,2,3,0,0,0,0,1,4,57,39,0,0,0,0,1,1,0,0,0,0,3,3,38,54,0,1,0,0,1,1,0,0,0,0,1,1,38,45,1,0,0,0,2,0,†,†,†,†,†,†,†,1800046 -21ST CENTURY CYBER CS,Pennsylvania,4,8,7,10,88,117,1,0,1,2,0,0,0,1,3,2,3,7,92,117,0,0,0,0,0,0,0,0,3,2,2,5,92,122,0,0,0,0,0,0,0,1,1,2,4,1,83,118,0,0,1,0,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,†,†,†,†,†,†,†,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4800095 -A+ ACADEMY,Texas,88,49,4,1,2,0,0,0,0,0,0,0,0,1,58,55,3,2,0,1,0,0,0,0,0,0,0,0,44,65,0,4,1,2,0,0,0,0,0,0,0,0,44,40,3,2,0,1,0,0,0,1,†,†,†,†,†,†,†,4800203 -A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,11,11,2,5,10,9,0,1,1,1,0,0,1,0,21,13,7,3,12,12,0,0,1,2,0,1,0,0,11,8,1,2,14,5,0,0,1,1,0,0,0,1,19,7,1,6,9,6,0,0,2,1,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,3,0,0,0,11,10,0,0,0,1,0,0,0,0,0,1,0,0,15,13,0,0,0,0,0,0,0,0,1,0,0,0,13,13,0,0,1,0,0,0,0,0,0,0,0,0,17,7,0,0,0,0,†,†,†,†,†,†,†,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,4,5,0,0,35,29,0,0,3,2,0,0,0,0,4,3,0,0,24,26,0,0,0,1,0,0,0,1,4,1,0,0,38,24,0,0,2,1,0,1,0,0,4,4,0,1,20,23,0,0,2,0,†,†,†,†,†,†,†,2700106 -ABBEVILLE 60,South Carolina,8,2,36,31,77,74,0,0,2,2,0,0,2,1,4,2,36,35,67,56,0,0,3,1,0,0,0,0,4,3,32,24,78,57,1,0,7,2,1,1,0,0,2,4,22,22,64,49,1,0,2,2,†,†,†,†,†,†,†,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,13,13,0,2,19,7,0,0,0,0,0,0,0,0,22,12,0,0,14,11,0,0,0,0,0,0,0,0,18,21,0,0,16,14,0,0,0,1,0,0,0,0,14,16,0,0,19,14,0,0,1,0,†,†,†,†,†,†,†,5500030 -ABBOTT ISD,Texas,4,0,0,0,9,10,0,0,0,0,0,0,0,0,0,2,0,0,5,8,0,0,0,0,0,0,0,0,0,1,0,0,13,4,0,0,0,0,0,0,0,0,1,1,0,0,9,8,0,0,1,0,†,†,†,†,†,†,†,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,8,5,32,30,3,6,0,0,0,3,0,0,1,2,5,8,26,37,2,2,0,0,0,0,0,0,0,0,13,9,18,28,4,6,0,0,0,0,0,0,3,0,5,9,26,29,9,5,0,0,0,1,†,†,†,†,†,†,†,2500051 -ABC UNIFIED,California,357,328,42,49,43,32,2,5,29,34,3,2,276,251,356,335,50,58,43,33,6,3,32,27,3,2,304,269,384,349,48,64,51,27,3,2,26,38,2,1,318,280,369,368,76,70,40,43,4,4,29,27,†,†,†,†,†,†,†,0601620 -ABERDEEN DISTRICT,Idaho,20,18,2,0,17,4,0,0,1,1,0,0,0,0,18,11,0,1,9,9,0,0,0,2,1,0,0,0,18,17,1,0,12,6,0,0,0,0,0,0,0,1,11,24,0,0,10,8,0,1,0,0,†,†,†,†,†,†,†,1600030 -ABERDEEN SCHOOL DIST,Mississippi,0,0,31,44,2,1,0,0,1,0,0,0,0,0,0,0,38,52,0,0,0,0,0,3,0,0,0,0,0,0,34,38,0,0,0,0,0,2,0,0,0,0,0,0,35,42,0,2,0,0,0,1,†,†,†,†,†,†,†,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,53,42,2,3,67,82,0,1,7,4,3,6,2,3,54,44,3,2,89,69,0,1,10,9,2,2,4,1,57,45,3,2,73,86,0,0,8,5,6,1,0,4,50,51,2,2,65,82,0,0,13,10,†,†,†,†,†,†,†,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978410141513492064.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978410141513492064.csv deleted file mode 100644 index 15e0451a94..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6386978410141513492064.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 13 Students - Black or African American - female [District] 2023-24,Grade 13 Students - White - male [District] 2023-24,Grade 13 Students - White - female [District] 2023-24,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Grade 13 Students - Two or More Races - male [District] 2023-24,Grade 13 Students - Two or More Races - female [District] 2023-24,Ungraded Students - American Indian/Alaska Native - male [District] 2023-24,Ungraded Students - American Indian/Alaska Native - female [District] 2023-24,Ungraded Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Ungraded Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Ungraded Students - Hispanic - male [District] 2023-24,Ungraded Students - Hispanic - female [District] 2023-24,Ungraded Students - Black or African American - male [District] 2023-24,Ungraded Students - Black or African American - female [District] 2023-24,Ungraded Students - White - male [District] 2023-24,Ungraded Students - White - female [District] 2023-24,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Ungraded Students - Two or More Races - male [District] 2023-24,Ungraded Students - Two or More Races - female [District] 2023-24,Adult Education Students - American Indian/Alaska Native - male [District] 2023-24,Adult Education Students - American Indian/Alaska Native - female [District] 2023-24,Adult Education Students - Asian or Asian/Pacific Islander - male [District] 2023-24,Adult Education Students - Asian or Asian/Pacific Islander - female [District] 2023-24,Adult Education Students - Hispanic - male [District] 2023-24,Adult Education Students - Hispanic - female [District] 2023-24,Adult Education Students - Black or African American - male [District] 2023-24,Adult Education Students - Black or African American - female [District] 2023-24,Adult Education Students - White - male [District] 2023-24,Adult Education Students - White - female [District] 2023-24,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2023-24,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2023-24,Adult Education Students - Two or More Races - male [District] 2023-24,Adult Education Students - Two or More Races - female [District] 2023-24,Full-Time Equivalent (FTE) Teachers [District] 2023-24,Pupil/Teacher Ratio [District] 2023-24,Prekindergarten Teachers [District] 2023-24,Kindergarten Teachers [District] 2023-24,Elementary Teachers [District] 2023-24,Secondary Teachers [District] 2023-24,Ungraded Teachers [District] 2023-24,Total Staff [District] 2023-24,Paraprofessionals/Instructional Aides [District] 2023-24,Instructional Coordinators [District] 2023-24,Elementary School Counselor [District] 2023-24,Secondary School Counselor [District] 2023-24,Other Guidance Counselors [District] 2023-24,Total Guidance Counselors [District] 2023-24,Librarians/media specialists [District] 2023-24,Media Support Staff [District] 2023-24,LEA Administrators [District] 2023-24,LEA Administrative Support Staff [District] 2023-24,School Administrators [District] 2023-24,School Administrative Support Staff [District] 2023-24,Student Support Services Staff (w/o Psychology) [District] 2023-24,School Psychologist [District] 2023-24,Other Support Services Staff [District] 2023-24,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,100.00,12.13,0.00,6.17,31.39,62.44,†,204.50,37.00,3.00,0.00,3.00,†,3.00,0.00,0.00,4.00,4.00,9.00,6.00,13.00,2.00,23.50,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,51.45,21.44,†,†,0.20,43.75,7.50,132.20,24.00,3.00,–,–,6.00,6.00,0.00,0.00,3.05,9.00,5.95,12.00,7.75,0.00,10.00,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,32.50,11.63,†,†,6.40,20.40,5.70,50.20,8.00,0.40,–,†,†,–,–,–,0.70,1.00,0.80,2.00,4.80,–,0.00,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,56.45,–,4.00,†,33.45,19.00,†,251.95,90.00,–,†,†,†,–,–,–,0.00,58.50,10.00,4.00,33.00,–,0.00,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,34.00,0.15,†,†,†,29.00,5.00,74.00,10.00,0.00,†,–,2.00,2.00,0.00,0.00,2.15,0.00,2.85,9.00,6.00,0.00,8.00,4280010 -A W BROWN LEADERSHIP ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,39.91,19.49,6.48,4.18,22.46,3.33,3.46,77.82,11.82,0.07,0.00,0.00,0.00,0.00,0.00,0.00,1.40,7.07,0.41,3.35,1.35,0.00,12.44,4800095 -A+ ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,101.45,16.25,7.27,4.03,23.96,44.84,21.35,249.28,25.66,3.50,0.00,0.00,3.00,3.00,0.00,0.00,3.00,17.86,20.81,13.00,11.97,0.00,49.03,4800203 -A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,38.00,9.63,0.00,3.71,20.29,6.50,7.50,71.00,4.00,1.00,0.00,0.00,0.00,0.00,0.00,0.00,4.50,12.50,0.00,0.00,7.00,0.00,4.00,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,†,†,–,–,†,–,–,–,–,–,†,–,–,–,–,–,–,–,–,–,–,0400998 -A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5.00,17.40,0.00,1.29,3.71,0.00,0.00,12.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.00,2.00,0.00,0.00,4.00,0.00,0.00,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,10.27,14.61,0.00,0.00,2.02,5.37,2.88,17.37,2.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.60,0.00,0.50,1.00,1.00,0.00,0.00,4801453 -A-C CENTRAL CUSD 262,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,34.50,9.51,1.00,2.00,19.95,11.55,†,97.20,13.50,0.00,0.30,0.70,†,1.00,0.20,–,1.00,41.00,2.00,3.00,0.80,0.20,0.00,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,†,†,†,†,†,†,†,–,–,–,–,†,†,‡,5100033 -A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,29.32,14.94,†,2.91,26.41,0.00,†,75.40,12.24,1.67,1.25,0.00,0.00,1.25,1.00,0.00,1.00,6.53,2.00,0.00,4.74,0.00,15.65,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,63.67,13.82,3.20,3.00,30.05,22.21,5.21,123.33,25.19,0.17,–,2.83,†,2.83,0.00,1.36,0.43,2.00,3.00,1.00,10.69,0.63,12.36,2700106 -ABBEVILLE 60,South Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,212.80,13.17,6.00,11.00,124.80,71.00,†,469.95,66.00,3.00,7.00,6.00,†,13.00,7.60,1.00,7.00,19.00,12.00,11.00,12.00,0.00,105.55,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,41.48,19.65,3.10,2.10,17.91,18.28,0.09,96.67,17.37,2.25,0.70,0.70,0.00,1.40,0.30,1.44,1.33,2.00,1.70,3.40,16.00,1.00,7.00,5500030 -ABBOTT ISD,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24.43,11.63,1.00,0.19,8.34,14.12,0.78,44.47,7.43,1.00,0.00,0.00,0.75,0.75,0.00,0.00,2.00,1.70,1.00,0.50,0.00,0.00,5.66,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC (DISTRICT),Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,125.93,11.28,0.00,9.00,85.49,31.44,†,198.96,19.00,2.50,0.00,4.00,†,4.00,0.04,4.00,8.00,4.00,9.50,3.00,18.00,1.00,0.00,2500051 -ABC UNIFIED,California,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782.80,23.10,0.00,65.77,436.39,280.64,†,1673.76,133.59,9.50,12.80,15.00,4.00,31.80,0.00,0.00,12.00,34.78,56.00,76.63,51.85,16.80,468.01,0601620 -ABERDEEN DISTRICT,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,46.00,13.98,0.33,2.00,23.35,20.32,†,90.43,8.71,1.75,–,–,2.00,2.00,0.00,0.99,1.00,1.90,2.00,3.83,0.25,1.00,21.00,1600030 -ABERDEEN SCHOOL DIST,Mississippi,†,†,†,†,†,†,†,0,0,0,0,0,0,20,3,1,2,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,83.30,11.58,0.03,4.53,29.16,43.88,5.70,191.56,12.95,4.59,2.00,1.00,†,3.00,2.17,–,3.95,12.00,8.00,11.07,13.04,1.00,36.49,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,182.37,17.95,7.03,12.44,76.40,86.50,†,388.53,54.87,8.80,3.85,6.00,†,9.85,0.00,0.00,3.51,9.93,11.48,14.34,14.00,3.00,76.38,5300030 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv new file mode 100644 index 0000000000..9647b8dd3f --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,State Abbr [District] Latest available year,Agency Name [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year,County Number [District] 2024-25,ANSI/FIPS State Code [District] Latest available year,Location Address 1 [District] 2024-25,Location City [District] 2024-25,Location ZIP [District] 2024-25,Location ZIP4 [District] 2024-25,Phone Number [District] 2024-25,Locale [District] 2024-25,Latitude [District] 2024-25,Longitude [District] 2024-25,State Agency ID [District] 2024-25,Lowest Grade Offered [District] 2024-25,Highest Grade Offered [District] 2024-25,Total Students All Grades (Excludes AE) [District] 2024-25,Total Students All Grades (Includes AE) [District] 2024-25,Grades 1-8 Students [District] 2024-25,Grades 9-12 Students [District] 2024-25,Prekindergarten Students [District] 2024-25,Kindergarten Students [District] 2024-25,Grade 1 Students [District] 2024-25,Grade 2 Students [District] 2024-25,Grade 3 Students [District] 2024-25,Grade 4 Students [District] 2024-25,Grade 5 Students [District] 2024-25,Grade 6 Students [District] 2024-25,Grade 7 Students [District] 2024-25,Grade 8 Students [District] 2024-25,Grade 9 Students [District] 2024-25,Grade 10 Students [District] 2024-25,Grade 11 Students [District] 2024-25,Grade 12 Students [District] 2024-25,Grade 13 Students [District] 2024-25,Ungraded Students [District] 2024-25,Adult Education Students [District] 2024-25,Male Students [District] 2024-25,Female Students [District] 2024-25,American Indian/Alaska Native Students [District] 2024-25,Asian or Asian/Pacific Islander Students [District] 2024-25,Hispanic Students [District] 2024-25,Black or African American Students [District] 2024-25,White Students [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. Students [District] 2024-25,Two or More Races Students [District] 2024-25,Total Race/Ethnicity [District] 2024-25,American Indian/Alaska Native - male [District] 2024-25,American Indian/Alaska Native - female [District] 2024-25,Asian or Asian/Pacific Islander - male [District] 2024-25,Asian or Asian/Pacific Islander - female [District] 2024-25,Hispanic - male [District] 2024-25,Hispanic - female [District] 2024-25,Black or African American - male [District] 2024-25,Black or African American - female [District] 2024-25,White - male [District] 2024-25,White - female [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25 +21ST CENTURY CHARTER SCH OF GARY,Indiana,IN ,21st Century Charter Sch of Gary,1800046,18089,18,556 Washington St,Gary,46402, ,3175361027,21-Suburb: Large,41.600759,-87.338843,IN-9545,Kindergarten,12th Grade,1180,1180,693,380,†,107,87,101,82,81,98,67,93,84,118,87,88,87,†,†,†,562,618,1,0,64,1088,1,0,26,1180,1,0,0,0,27,37,524,564,0,1,0,0 +21ST CENTURY CYBER CS,Pennsylvania,PA ,21st Century Cyber CS,4200091,42029,42,1245 Wrights Lane,West Chester,19380, ,4848755400,21-Suburb: Large,39.988310,-75.574369,PA-124150002,6th Grade,12th Grade,996,996,150,846,†,†,†,†,†,†,†,20,53,77,202,193,245,206,†,†,†,454,542,1,17,78,156,665,3,76,996,0,1,7,10,36,42,79,77,304,361,2,1 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,3500187,35001,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,11-City: Large,35.105101,-106.599226,NM-35580000,1st Grade,8th Grade,371,371,371,†,†,†,16,24,22,38,44,70,86,71,†,†,†,†,†,†,†,188,183,7,3,59,17,257,0,28,371,2,5,1,2,30,29,11,6,132,125,0,0 +A E R O SPEC EDUC COOP,Illinois,IL ,A E R O Spec Educ Coop,1700024,17031,17,5400 W 77th St,Burbank,60459, ,7084963330,21-Suburb: Large,41.753450,-87.757423,IL-07-016-8060-60,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† +A W BEATTIE CAREER CENTER,Pennsylvania,PA ,A W Beattie Career Center,4280010,42003,42,9600 Babcock Boulevard,Allison Park,15101,2005,4128471900,21-Suburb: Large,40.579100,-80.006000,PA-103020407,9th Grade,12th Grade,7,7,†,7,†,†,†,†,†,†,†,†,†,†,0,2,4,1,†,†,†,4,3,0,0,0,0,5,0,2,7,0,0,0,0,0,0,0,0,3,2,0,0 +A+ ACADEMY,Texas,TX ,A+ ACADEMY,4800203,48113,48,8225 BRUTON RD,DALLAS,75217, ,2142751200,11-City: Large,32.749079,-96.679000,TX-057829,Prekindergarten,12th Grade,1678,1678,928,509,147,94,117,92,98,112,113,115,144,137,140,146,110,113,†,†,†,867,811,1,6,1585,54,26,0,6,1678,1,0,2,4,820,765,30,24,11,15,0,0 +A+ ARTS ACADEMY,Ohio,OH ,A+ Arts Academy,3900305,39049,39,1395 Fair Ave,Columbus,43205,1543,6147251305,11-City: Large,39.963397,-82.962898,OH-000556,Kindergarten,8th Grade,247,247,210,†,†,37,31,23,37,25,28,26,19,21,†,†,†,†,†,†,†,129,118,2,2,14,208,5,0,16,247,2,0,2,0,4,10,108,100,2,3,0,0 +A+ CHARTER SCHOOLS (1000166),ARIZONA,AZ ,A+ Charter Schools (1000166),0400998,04021,04,41600 W Smith-Enke Rd,Maricopa,85138, ,5202655589,23-Suburb: Small,33.042533,-112.015895,AZ-1000166,6th Grade,12th Grade,370,370,134,236,†,†,†,†,†,†,†,55,40,39,61,59,75,41,†,†,†,211,159,7,4,154,44,137,1,23,370,3,4,3,1,87,67,24,20,82,55,0,1 +A+ CHILDREN'S ACADEMY,Ohio,OH ,A+ Children's Academy,3901480,39049,39,114 Obetz Rd,Columbus,43207,4031,6144918502,11-City: Large,39.882382,-82.996978,OH-013232,Kindergarten,6th Grade,107,107,84,†,†,23,19,17,18,5,9,16,†,†,†,†,†,†,†,†,†,60,47,0,2,7,49,36,0,13,107,0,0,2,0,3,4,25,24,25,11,0,0 +A+ UNLIMITED POTENTIAL,TEXAS,TX ,A+ UNLIMITED POTENTIAL,4801453,48201,48,2410 HAMILTON,HOUSTON,77004, ,7132043837,11-City: Large,29.742381,-95.365400,TX-101871,6th Grade,10th Grade,203,203,156,47,†,†,†,†,†,†,†,51,48,57,36,11,†,†,†,†,†,107,96,0,0,79,108,6,0,10,203,0,0,0,0,45,34,50,58,4,2,0,0 +A-C CENTRAL CUSD 262,Illinois,IL ,A-C Central CUSD 262,1700105,17017,17,501 W Buchanan St,Ashland,62612,7624,2174768112,42-Rural: Distant,39.892816,-90.012787,IL-01-009-2620-26,Prekindergarten,12th Grade,314,314,174,96,28,16,21,20,23,21,22,22,24,21,21,19,29,27,†,†,†,153,161,0,0,8,2,294,0,10,314,0,0,0,0,7,1,1,1,140,154,0,0 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,VA ,A. Linwood Holton Governor's School,5100033,51191,51,One Partnership Circle,Abingdon,24210, ,2766194326,23-Suburb: Small,36.696706,-82.000650,VA-268,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† +A.C.E. ACADEMY,North Carolina,NC ,A.C.E. Academy,3700372,37025,37,7807 Caldwell Road,Harrisburg,28075, ,7044567153,21-Suburb: Large,35.308346,-80.673005,NC-13C,Kindergarten,8th Grade,421,421,369,†,†,52,45,48,53,40,44,49,54,36,†,†,†,†,†,†,†,216,205,1,7,68,323,9,0,13,421,0,1,4,3,30,38,170,153,7,2,0,0 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,MN ,A.C.G.C. Public School District,2700106,27093,27,27250 MINNESOTA HIGHWAY 4,GROVE CITY,56243,5003,3202444712,42-Rural: Distant,45.142925,-94.683644,MN-012396,Prekindergarten,12th Grade,893,893,531,263,30,69,75,70,62,63,72,62,67,60,63,76,56,68,†,†,†,481,412,5,5,124,0,728,0,31,893,1,4,1,4,60,64,0,0,404,324,0,0 +ABBEVILLE 60,South Carolina,SC ,Abbeville 60,4500690,45001,45,400 Greenville Street,Abbeville,29620, ,8643665427,42-Rural: Distant,34.185163,-82.380158,SC-0160,Prekindergarten,12th Grade,2746,2746,1606,842,102,196,227,180,206,188,200,211,184,210,243,209,186,204,†,†,†,1441,1304,6,9,77,893,1679,1,80,2745,3,3,6,3,45,32,470,423,878,801,1,0 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,WI ,Abbotsford School District,5500030,55019,55,510 W Hemlock St,Abbotsford,54405, ,7152236715,43-Rural: Remote,44.949886,-90.332138,WI-0007,Prekindergarten,12th Grade,799,799,439,248,60,52,50,62,46,53,52,56,63,57,48,51,69,80,†,†,†,407,392,0,27,529,2,226,0,15,799,0,0,15,12,268,261,1,1,117,109,0,0 +ABBOTT ISD,Texas,TX ,ABBOTT ISD,4807380,48217,48,219 S FIRST ST,ABBOTT,76621,0226,2545823011,42-Rural: Distant,31.883393,-97.076850,TX-109901,Prekindergarten,12th Grade,284,284,164,87,12,21,19,23,20,23,21,16,21,21,26,25,17,19,†,†,†,156,128,0,0,49,3,225,0,7,284,0,0,0,0,29,20,2,1,124,101,0,0 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,MA ,Abby Kelley Foster Charter Public,2500051,25027,25,10 New Bond Street,Worcester,01606, ,5088548400,12-City: Mid-size,42.305635,-71.801599,MA-0445,Kindergarten,12th Grade,1426,1426,980,321,†,125,123,125,127,130,128,128,111,108,80,85,80,76,†,†,†,661,765,8,38,347,797,163,1,72,1426,5,3,18,20,172,175,357,440,71,92,1,0 +ABC UNIFIED,California,CA ,ABC Unified,0601620,06037,06,16700 Norwalk Blvd.,Cerritos,90703,1838,5629265566,21-Suburb: Large,33.879715,-118.071463,CA-1964212,Kindergarten,12th Grade,17612,17612,10161,5921,†,1530,1044,1193,1241,1263,1294,1391,1379,1356,1472,1379,1455,1615,†,†,0,9098,8509,34,6208,8043,1174,788,92,1268,17607,18,16,3221,2987,4171,3872,579,595,421,367,50,42 +ABERDEEN DISTRICT,Idaho,ID ,ABERDEEN DISTRICT,1600030,16011,16,318 WEST WASHINGTON,ABERDEEN,83210,0610,2083974113,42-Rural: Distant,42.943667,-112.844022,ID-058,Prekindergarten,12th Grade,625,625,346,213,12,54,33,35,44,50,46,51,47,40,53,59,48,53,†,†,†,307,318,2,1,405,3,208,1,5,625,0,2,1,0,191,214,1,2,111,97,0,1 +ABERDEEN SCHOOL DISTRICT,Mississippi,MS ,Aberdeen School District,2800360,28095,28,1100 W COMMERCE,Aberdeen,39730, ,6623694682,42-Rural: Distant,33.826076,-88.565636,MS-4820,Kindergarten,13th Grade,924,924,544,311,†,68,75,72,66,65,73,51,67,75,67,74,95,75,1,†,†,474,450,0,3,6,866,31,0,18,924,0,0,2,1,2,4,442,424,19,12,0,0 +ABERDEEN SCHOOL DISTRICT,Washington,WA ,Aberdeen School District,5300030,53027,53,216 N G ST,ABERDEEN,98520,5297,3605382000,33-Town: Remote,46.978400,-123.816491,WA-14005,Prekindergarten,12th Grade,3183,3183,1700,1161,143,179,202,182,216,205,204,235,226,230,272,266,303,320,†,†,†,1591,1588,72,27,1197,42,1600,5,236,3179,32,40,13,14,597,600,19,23,802,798,3,2 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,SD ,Aberdeen School District 06-1,4602070,46013,46,1224 3rd St S,Aberdeen,57401, ,6057257111,33-Town: Remote,45.452020,-98.492851,SD-06001,Prekindergarten,12th Grade,4233,4233,2558,1384,0,291,318,352,324,293,310,330,298,333,315,313,358,398,†,†,†,2177,2056,263,156,443,95,2960,29,287,4233,120,143,93,63,233,210,51,44,1521,1439,10,19 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv new file mode 100644 index 0000000000..2677e39fde --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Two or More Races - male [District] 2024-25,Two or More Races - female [District] 2024-25,Prekindergarten Students - male [District] 2024-25,Prekindergarten Students - female [District] 2024-25,Kindergarten Students - male [District] 2024-25,Kindergarten Students - female [District] 2024-25,Grade 1 Students - male [District] 2024-25,Grade 1 Students - female [District] 2024-25,Grade 2 Students - male [District] 2024-25,Grade 2 Students - female [District] 2024-25,Grade 3 Students - male [District] 2024-25,Grade 3 Students - female [District] 2024-25,Grade 4 Students - male [District] 2024-25,Grade 4 Students - female [District] 2024-25,Grade 5 Students - male [District] 2024-25,Grade 5 Students - female [District] 2024-25,Grade 6 Students - male [District] 2024-25,Grade 6 Students - female [District] 2024-25,Grade 7 Students - male [District] 2024-25,Grade 7 Students - female [District] 2024-25,Grade 8 Students - male [District] 2024-25,Grade 8 Students - female [District] 2024-25,Grade 9 Students - male [District] 2024-25,Grade 9 Students - female [District] 2024-25,Grade 10 Students - male [District] 2024-25,Grade 10 Students - female [District] 2024-25,Grade 11 Students - male [District] 2024-25,Grade 11 Students - female [District] 2024-25,Grade 12 Students - male [District] 2024-25,Grade 12 Students - female [District] 2024-25,Grade 13 Students - male [District] 2024-25,Grade 13 Students - female [District] 2024-25,Ungraded Students - male [District] 2024-25,Ungraded Students - female [District] 2024-25,Adult Education Students - male [District] 2024-25,Adult Education Students - female [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander [District] 2024-25,Prekindergarten Students - Hispanic [District] 2024-25,Prekindergarten Students - Black or African American [District] 2024-25,Prekindergarten Students - White [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Prekindergarten Students Two or More Races [District] 2024-25,Kindergarten Students - American Indian/Alaska Native [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander [District] 2024-25,Kindergarten Students - Hispanic [District] 2024-25,Kindergarten Students - Black or African American [District] 2024-25,Kindergarten Students White [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Kindergarten Students Two or More Races [District] 2024-25,Grade 1 Students - American Indian/Alaska Native [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 1 Students - Hispanic [District] 2024-25,Grade 1 Students - Black or African American [District] 2024-25,Grade 1 Students - White [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 1 Students - Two or More Races [District] 2024-25,Grade 2 Students - American Indian/Alaska Native [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,10,16,†,†,56,51,44,43,45,56,39,43,36,45,50,48,34,33,43,50,38,46,57,61,37,50,47,41,36,51,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,5,101,0,0,1,0,0,5,80,0,0,2,1,0,1800046 +21ST CENTURY CYBER CS,Pennsylvania,26,50,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9,11,33,20,32,45,99,103,91,102,100,145,90,116,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,12,16,†,†,†,†,8,8,11,13,11,11,20,18,22,22,31,39,40,46,45,26,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,10,0,2,0,4,0,0,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,1,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,2,4,0,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 +A+ ACADEMY,Texas,3,3,67,80,43,51,57,60,40,52,51,47,59,53,57,56,66,49,81,63,80,57,76,64,92,54,54,56,44,69,†,†,†,†,†,†,0,0,132,12,3,0,0,0,1,88,3,2,0,0,0,0,108,6,3,0,0,0,0,4800203 +A+ ARTS ACADEMY,Ohio,11,5,†,†,15,22,19,12,16,7,16,21,19,6,14,14,13,13,9,10,8,13,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,2,6,26,2,0,1,0,0,2,26,0,0,3,0,0,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,12,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24,31,24,16,20,19,40,21,30,29,45,30,28,13,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 +A+ CHILDREN'S ACADEMY,Ohio,5,8,†,†,13,10,13,6,9,8,8,10,3,2,6,3,8,8,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,11,6,0,3,0,0,2,10,7,0,0,0,0,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,8,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,31,20,24,24,27,30,17,19,8,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 +A-C CENTRAL CUSD 262,Illinois,5,5,16,12,9,7,6,15,11,9,10,13,9,12,11,11,14,8,10,14,7,14,9,12,11,8,15,14,15,12,†,†,†,†,†,†,0,0,0,0,27,0,1,0,0,0,0,14,0,2,0,0,0,0,21,0,0,0,0,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 +A.C.E. ACADEMY,North Carolina,5,8,†,†,26,26,19,26,19,29,31,22,21,19,24,20,27,22,29,25,20,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,1,5,43,2,0,0,0,2,6,37,0,0,0,0,0,3700372 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,15,16,20,10,37,32,39,36,38,32,34,28,33,30,35,37,29,33,36,31,35,25,33,30,43,33,28,28,41,27,†,†,†,†,†,†,1,0,6,0,22,0,1,0,1,15,0,52,0,1,0,0,12,0,61,0,2,0,0,2700106 +ABBEVILLE 60,South Carolina,38,42,54,48,89,106,111,116,100,80,110,96,91,97,105,95,115,96,96,88,104,106,128,115,114,95,103,83,121,83,†,†,†,†,†,†,0,0,4,38,57,0,3,0,1,5,66,119,0,4,0,0,9,87,123,0,8,1,1,4500690 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,6,9,30,30,24,28,26,24,35,27,21,25,26,27,28,24,27,29,27,36,27,30,29,19,32,19,39,30,36,44,†,†,†,†,†,†,0,0,41,0,17,0,2,0,0,33,0,16,0,3,0,0,38,0,12,0,0,0,3,5500030 +ABBOTT ISD,Texas,1,6,3,9,12,9,14,5,15,8,13,7,10,13,12,9,10,6,7,14,11,10,15,11,15,10,6,11,13,6,†,†,†,†,†,†,0,0,1,0,11,0,0,0,0,6,0,14,0,1,0,0,3,0,16,0,0,0,0,4807380 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,37,35,†,†,66,59,56,67,52,73,68,59,50,80,63,65,65,63,45,66,45,63,42,38,42,43,33,47,34,42,†,†,†,†,†,†,†,†,†,†,†,†,†,2,1,44,52,15,0,11,0,5,48,58,10,0,2,1,1,2500051 +ABC UNIFIED,California,638,630,†,†,775,755,525,519,582,611,655,586,673,590,670,624,719,672,727,651,693,662,766,704,710,669,759,695,844,771,†,†,†,†,0,0,†,†,†,†,†,†,†,3,522,707,93,46,7,152,0,361,504,43,37,10,89,2,413,0601620 +ABERDEEN DISTRICT,Idaho,3,2,7,5,27,27,18,15,16,19,18,26,19,31,25,21,22,29,25,22,20,20,23,30,36,23,22,26,29,24,†,†,†,†,†,†,0,0,10,0,2,0,0,0,0,35,0,18,0,1,0,0,19,0,13,1,0,0,0,1600030 +ABERDEEN SCHOOL DISTRICT,Mississippi,9,9,†,†,37,31,31,44,38,34,36,30,32,33,41,32,33,18,39,28,35,40,39,28,38,36,40,55,34,41,1,0,†,†,†,†,†,†,†,†,†,†,†,0,1,1,63,2,0,1,0,0,0,72,3,0,0,0,1,2800360 +ABERDEEN SCHOOL DISTRICT,Washington,125,111,78,61,92,87,114,88,99,83,103,113,105,100,106,98,110,125,113,113,104,126,131,141,130,136,154,149,152,168,†,†,†,†,†,†,7,–,64,5,53,–,10,5,3,71,1,88,0,11,5,0,81,0,94,0,22,5,1,5300030 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,149,138,0,0,168,123,149,169,185,167,148,176,153,140,168,142,158,172,146,152,173,160,169,146,168,145,185,173,207,191,†,†,†,†,†,†,0,0,0,0,0,0,0,19,9,39,7,194,0,23,10,7,49,9,214,3,26,28,13,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv new file mode 100644 index 0000000000..6e520de181 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Grade 2 Students - Hispanic [District] 2024-25,Grade 2 Students - Black or African American [District] 2024-25,Grade 2 Students - White [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 2 Students - Two or More Races [District] 2024-25,Grade 3 Students - American Indian/Alaska Native [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 3 Students - Hispanic [District] 2024-25,Grade 3 Students - Black or African American [District] 2024-25,Grade 3 Students - White [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 3 Students - Two or More Races [District] 2024-25,Grade 4 Students - American Indian/Alaska Native [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 4 Students - Hispanic [District] 2024-25,Grade 4 Students - Black or African American [District] 2024-25,Grade 4 Students - White [District] 2024-25,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 4 Students - Two or More Races [District] 2024-25,Grade 5 Students - American Indian/Alaska Native [District] 2024-25,Grade 5 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 5 Students - Hispanic [District] 2024-25,Grade 5 Students - Black or African American [District] 2024-25,Grade 5 Students - White [District] 2024-25,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 5 Students - Two or More Races [District] 2024-25,Grade 6 Students - American Indian/Alaska Native [District] 2024-25,Grade 6 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 6 Students - Hispanic [District] 2024-25,Grade 6 Students - Black or African American [District] 2024-25,Grade 6 Students - White [District] 2024-25,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 6 Students - Two or More Races [District] 2024-25,Grade 7 Students - American Indian/Alaska Native [District] 2024-25,Grade 7 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 7 Students - Hispanic [District] 2024-25,Grade 7 Students - Black or African American [District] 2024-25,Grade 7 Students - White [District] 2024-25,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 7 Students - Two or More Races [District] 2024-25,Grade 8 Students - American Indian/Alaska Native [District] 2024-25,Grade 8 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 8 Students - Hispanic [District] 2024-25,Grade 8 Students - Black or African American [District] 2024-25,Grade 8 Students - White [District] 2024-25,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 8 Students - Two or More Races [District] 2024-25,Grade 9 Students - American Indian/Alaska Native [District] 2024-25,Grade 9 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 9 Students - Hispanic [District] 2024-25,Grade 9 Students - Black or African American [District] 2024-25,Grade 9 Students - White [District] 2024-25,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 9 Students - Two or More Races [District] 2024-25,Grade 10 Students - American Indian/Alaska Native [District] 2024-25,Grade 10 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 10 Students - Hispanic [District] 2024-25,Grade 10 Students - Black or African American [District] 2024-25,Grade 10 Students - White [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,3,95,0,0,2,0,0,6,73,0,0,3,0,0,5,72,0,0,4,0,0,5,91,0,0,2,0,0,7,60,0,0,0,0,0,3,88,0,0,2,0,0,5,77,0,0,2,0,0,8,109,0,0,1,0,0,3,80,0,1800046 +21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,2,14,0,4,1,1,8,6,32,1,4,0,1,4,14,51,0,7,0,4,19,34,130,1,14,0,1,10,39,127,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,8,2,13,0,1,2,0,1,0,15,0,4,0,0,11,3,22,0,2,2,0,4,1,34,0,3,1,0,16,3,43,0,7,1,2,7,4,70,0,2,1,1,2,4,58,0,5,†,†,†,†,†,†,†,†,†,†,†,†,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,1,4280010 +A+ ACADEMY,Texas,89,2,1,0,0,0,0,95,2,1,0,0,0,0,108,3,0,0,1,0,2,104,3,3,0,1,0,0,112,2,1,0,0,0,1,137,2,3,0,1,1,1,128,3,3,0,1,0,0,132,5,1,0,2,0,0,140,4,2,4800203 +A+ ARTS ACADEMY,Ohio,3,18,0,0,2,0,0,2,34,1,0,0,0,0,1,21,1,0,2,1,0,0,24,0,0,3,1,0,0,22,1,0,2,0,0,0,17,0,0,2,0,0,0,20,0,0,1,†,†,†,†,†,†,†,†,†,†,†,†,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,16,7,24,0,7,0,0,18,6,12,0,4,1,0,15,7,14,0,2,0,1,28,5,23,0,4,4,2,23,8,18,0400998 +A+ CHILDREN'S ACADEMY,Ohio,1,9,4,0,3,0,1,0,7,9,0,1,0,0,0,0,3,0,2,0,1,0,4,4,0,0,0,0,1,8,3,0,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,23,23,1,0,4,0,0,21,22,2,0,3,0,0,18,34,3,0,2,0,0,12,23,0,0,1,0,0,5,6,0,4801453 +A-C CENTRAL CUSD 262,Illinois,1,0,19,0,0,0,0,0,0,23,0,0,0,0,0,1,19,0,1,0,0,0,0,21,0,1,0,0,0,0,22,0,0,0,0,0,0,22,0,2,0,0,1,0,19,0,1,0,0,1,0,20,0,0,0,0,3,0,15,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 +A.C.E. ACADEMY,North Carolina,11,35,1,0,1,0,1,6,44,1,0,1,0,0,7,32,0,0,1,0,0,7,33,1,0,3,0,1,8,37,1,0,2,0,1,14,32,2,0,5,0,1,4,30,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,3700372 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,10,0,60,0,0,1,0,4,0,54,0,3,0,1,12,0,46,0,4,0,0,9,0,60,0,3,0,0,6,0,52,0,4,1,1,6,0,56,0,3,0,0,9,0,48,0,3,1,0,11,0,50,0,1,1,0,9,0,62,2700106 +ABBEVILLE 60,South Carolina,3,59,106,0,10,1,0,3,79,120,0,3,2,0,4,63,113,0,6,0,0,4,76,113,0,7,0,0,3,65,139,0,4,0,1,5,54,116,0,8,1,1,8,62,135,0,3,0,2,7,70,154,0,10,0,0,8,60,138,4500690 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,43,0,16,0,0,0,0,39,0,7,0,0,0,2,36,0,13,0,2,0,2,38,0,12,0,0,0,1,42,0,11,0,2,0,1,49,0,11,0,2,0,5,30,0,22,0,0,0,3,28,1,13,0,3,0,2,26,1,22,5500030 +ABBOTT ISD,Texas,2,0,20,0,1,0,0,2,1,17,0,0,0,0,5,0,18,0,0,0,0,1,1,19,0,0,0,0,5,1,9,0,1,0,0,5,0,15,0,1,0,0,2,0,18,0,1,0,0,8,0,17,0,1,0,0,5,0,20,4807380 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,42,64,10,0,7,1,0,41,69,11,0,5,3,4,17,76,16,0,14,1,5,22,71,18,0,11,0,4,28,72,17,0,7,0,8,24,59,14,0,6,0,2,28,61,14,1,2,0,2,11,48,15,0,4,0,3,10,60,9,2500051 +ABC UNIFIED,California,536,83,52,3,104,1,419,548,82,51,5,135,2,431,547,87,49,4,143,3,442,570,72,62,7,138,4,518,602,99,66,15,87,4,471,661,98,63,9,72,3,495,606,106,65,9,71,1,547,657,106,71,7,81,1,478,674,85,72,0601620 +ABERDEEN DISTRICT,Idaho,23,0,12,0,0,0,0,28,0,16,0,0,1,0,28,0,21,0,0,0,0,33,0,13,0,0,0,0,32,0,19,0,0,0,0,34,1,12,0,0,0,0,28,0,12,0,0,1,0,35,0,16,0,1,0,1,38,0,19,1600030 +ABERDEEN SCHOOL DISTRICT,Mississippi,0,67,4,0,0,0,0,0,62,4,0,0,0,0,0,61,4,0,0,0,1,0,71,0,0,1,0,0,0,46,3,0,2,0,0,0,67,0,0,0,0,0,2,66,4,0,3,0,0,0,63,2,0,2,0,0,0,69,4,2800360 +ABERDEEN SCHOOL DISTRICT,Washington,80,2,87,0,7,5,1,89,2,105,0,14,3,1,82,1,103,1,14,5,1,67,2,110,1,18,5,1,96,1,115,0,17,4,2,81,4,108,0,27,2,1,80,6,122,1,18,5,4,89,3,145,0,26,5,3,93,5,144,5300030 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,50,8,224,2,27,16,19,40,5,216,4,24,13,14,30,7,211,2,16,18,14,33,9,215,2,19,21,12,32,9,231,1,24,21,20,23,4,197,3,30,24,10,26,6,236,3,28,21,9,29,10,224,1,21,19,6,31,7,236,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv new file mode 100644 index 0000000000..b18bf60ef0 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 10 Students - Two or More Races [District] 2024-25,Grade 11 Students - American Indian/Alaska Native [District] 2024-25,Grade 11 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 11 Students - Hispanic [District] 2024-25,Grade 11 Students - Black or African American [District] 2024-25,Grade 11 Students - White [District] 2024-25,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 11 Students - Two or More Races [District] 2024-25,Grade 12 Students - American Indian/Alaska Native [District] 2024-25,Grade 12 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 12 Students - Hispanic [District] 2024-25,Grade 12 Students - Black or African American [District] 2024-25,Grade 12 Students - White [District] 2024-25,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 12 Students - Two or More Races [District] 2024-25,Grade 13 Students - American Indian/Alaska Native [District] 2024-25,Grade 13 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 13 Students - Hispanic [District] 2024-25,Grade 13 Students - Black or African American [District] 2024-25,Grade 13 Students - White [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 13 Students - Two or More Races [District] 2024-25,Ungraded Students - American Indian/Alaska Native [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander [District] 2024-25,Ungraded Students - Hispanic [District] 2024-25,Ungraded Students - Black or African American [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Ungraded Students - White [District] 2024-25,Ungraded Students - Two or More Races [District] 2024-25,Adult Education Students - American Indian/Alaska Native [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander [District] 2024-25,Adult Education Students - Hispanic [District] 2024-25,Adult Education Students - Black or African American [District] 2024-25,Adult Education Students - White [District] 2024-25,Adult Education - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Adult Education Students - Two or More Races [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Prekindergarten Students - Hispanic - male [District] 2024-25,Prekindergarten Students - Hispanic - female [District] 2024-25,Prekindergarten Students - Black or African American - male [District] 2024-25,Prekindergarten Students - Black or African American - female [District] 2024-25,Prekindergarten Students - White - male [District] 2024-25,Prekindergarten Students - White - female [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Prekindergarten Students - Two or More Races - male [District] 2024-25,Prekindergarten Students - Two or More Races - female [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Kindergarten Students - Hispanic - male [District] 2024-25,Kindergarten Students - Hispanic - female [District] 2024-25,Kindergarten Students - Black or African American - male [District] 2024-25,Kindergarten Students - Black or African American - female [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,0,4,0,0,3,84,0,0,1,0,0,6,78,1,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,2,52,49,1800046 +21ST CENTURY CYBER CS,Pennsylvania,0,16,0,4,24,30,171,1,15,0,6,13,31,140,0,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 +A+ ACADEMY,Texas,0,0,0,1,106,3,0,0,0,0,0,106,4,3,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,63,69,2,10,2,1,0,0,0,0,0,0,0,1,40,48,3,0,4800203 +A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,0,1,5,11,15,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,1,3,1,0,35,8,29,0,2,1,0,19,3,17,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 +A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,2,1,5,6,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 +A-C CENTRAL CUSD 262,Illinois,0,1,0,0,1,1,27,0,0,0,0,1,0,25,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,16,11,0,0,0,1,0,0,0,0,0,0,0,0,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 +A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,1,0,2,3,22,21,3700372 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,0,4,0,0,9,0,46,0,1,0,2,6,0,59,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,0,0,4,2,0,0,16,6,0,0,0,1,0,0,0,1,8,7,0,0,2700106 +ABBEVILLE 60,South Carolina,0,3,1,3,6,63,112,0,1,0,0,8,51,134,1,10,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,1,19,19,30,27,0,0,2,1,0,0,1,0,0,5,36,30,4500690 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,0,0,0,3,41,0,25,0,0,0,5,45,0,29,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,22,19,0,0,7,10,0,0,1,1,0,0,0,0,17,16,0,0,5500030 +ABBOTT ISD,Texas,0,0,0,0,3,0,13,0,1,0,0,1,0,18,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,1,0,0,3,8,0,0,0,0,0,0,0,0,3,3,0,0,4807380 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,0,3,0,3,12,61,4,0,0,0,0,20,46,10,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,0,1,0,27,17,25,27,2500051 +ABC UNIFIED,California,5,64,5,527,678,101,78,6,59,5,584,753,119,76,5,73,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,1,263,259,348,359,51,42,0601620 +ABERDEEN DISTRICT,Idaho,0,1,0,0,28,1,17,0,2,0,0,34,1,18,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,5,5,0,0,2,0,0,0,0,0,0,0,0,0,16,19,0,0,1600030 +ABERDEEN SCHOOL DISTRICT,Mississippi,0,1,0,0,3,87,0,0,5,0,0,0,71,1,0,3,0,0,0,1,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,1,1,0,34,29,2800360 +ABERDEEN SCHOOL DISTRICT,Washington,1,15,6,5,106,4,160,1,21,10,4,118,6,166,0,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5,2,–,–,34,30,2,3,32,21,–,–,5,5,4,1,2,1,36,35,0,1,5300030 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,2,12,27,13,29,7,257,3,22,26,10,32,7,305,3,15,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,5,4,18,21,5,2,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv new file mode 100644 index 0000000000..b51f78bcff --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Kindergarten Students - White - male [District] 2024-25,Kindergarten Students - White - female [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Kindergarten Students - Two or More Races - male [District] 2024-25,Kindergarten Students - Two or More Races - female [District] 2024-25,Grade 1 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 1 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 1 Students - Hispanic - male [District] 2024-25,Grade 1 Students - Hispanic - female [District] 2024-25,Grade 1 Students - Black or African American - male [District] 2024-25,Grade 1 Students - Black or African American - female [District] 2024-25,Grade 1 Students - White - male [District] 2024-25,Grade 1 Students - White - female [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 1 Students - Two or More Races - male [District] 2024-25,Grade 1 Students - Two or More Races - female [District] 2024-25,Grade 2 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 2 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 2 Students - Hispanic - male [District] 2024-25,Grade 2 Students - Hispanic - female [District] 2024-25,Grade 2 Students - Black or African American - male [District] 2024-25,Grade 2 Students - Black or African American - female [District] 2024-25,Grade 2 Students - White - male [District] 2024-25,Grade 2 Students - White - female [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 2 Students - Two or More Races - male [District] 2024-25,Grade 2 Students - Two or More Races - female [District] 2024-25,Grade 3 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 3 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 3 Students - Hispanic - male [District] 2024-25,Grade 3 Students - Hispanic - female [District] 2024-25,Grade 3 Students - Black or African American - male [District] 2024-25,Grade 3 Students - Black or African American - female [District] 2024-25,Grade 3 Students - White - male [District] 2024-25,Grade 3 Students - White - female [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 3 Students - Two or More Races - male [District] 2024-25,Grade 3 Students - Two or More Races - female [District] 2024-25,Grade 4 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 4 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 4 Students - Hispanic - male [District] 2024-25,Grade 4 Students - Hispanic - female [District] 2024-25,Grade 4 Students - Black or African American - male [District] 2024-25,Grade 4 Students - Black or African American - female [District] 2024-25,Grade 4 Students - White - male [District] 2024-25,Grade 4 Students - White - female [District] 2024-25,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,0,0,0,0,1,0,0,0,0,0,3,2,41,39,0,0,0,0,0,2,1,0,0,0,1,2,43,52,0,0,0,0,0,2,0,0,0,0,4,2,34,39,0,0,0,0,1,2,0,0,0,0,1,4,32,40,0,0,0,1800046 +21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,0,0,0,0,6,4,0,0,0,2,0,0,2,2,0,0,0,0,3,5,2,0,6,7,0,0,0,1,1,1,0,0,1,0,0,0,7,8,0,0,2,2,0,0,0,0,6,5,2,1,11,11,0,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 +A+ ACADEMY,Texas,0,2,0,0,0,0,0,0,0,0,53,55,3,3,1,2,0,0,0,0,0,0,0,0,37,52,2,0,1,0,0,0,0,0,0,0,0,0,50,45,1,1,0,1,0,0,0,0,0,0,0,0,56,52,3,0,0,0,0,4800203 +A+ ARTS ACADEMY,Ohio,0,2,0,0,1,0,0,0,0,0,0,2,18,8,0,0,0,0,1,2,0,0,0,0,2,1,12,6,0,0,0,0,2,0,0,0,0,0,1,1,15,19,0,1,0,0,0,0,0,0,0,0,0,1,16,5,1,0,0,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 +A+ CHILDREN'S ACADEMY,Ohio,4,2,0,0,2,1,0,0,0,0,1,1,5,5,7,0,0,0,0,0,0,0,0,0,0,1,5,4,3,1,0,0,1,2,0,0,1,0,0,0,5,2,2,7,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 +A-C CENTRAL CUSD 262,Illinois,9,5,0,0,0,2,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,1,0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,10,13,0,0,0,0,0,0,0,0,0,0,0,1,8,11,0,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 +A.C.E. ACADEMY,North Carolina,1,1,0,0,0,0,0,0,0,2,3,3,16,21,0,0,0,0,0,0,0,0,0,0,3,8,15,20,1,0,0,0,0,1,0,0,1,0,4,2,25,19,0,1,0,0,1,0,0,0,0,0,5,2,16,16,0,0,0,3700372 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,29,23,0,0,0,1,0,0,0,0,3,9,0,0,34,27,0,0,2,0,0,0,0,0,3,7,0,0,35,25,0,0,0,0,0,1,0,0,2,2,0,0,31,23,0,0,1,2,0,0,0,1,5,7,0,0,25,21,0,2700106 +ABBEVILLE 60,South Carolina,49,70,0,0,3,1,0,0,0,0,7,2,43,44,59,64,0,0,2,6,1,0,0,1,1,2,34,25,60,46,0,0,4,6,0,1,0,0,2,1,38,41,70,50,0,0,0,3,1,1,0,0,2,2,29,34,56,57,0,4500690 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,6,10,0,0,1,2,0,0,0,0,19,19,0,0,7,5,0,0,0,0,0,0,2,1,23,20,0,0,10,6,0,0,0,0,0,0,0,0,17,22,0,0,4,3,0,0,0,0,0,0,1,1,16,20,0,0,8,5,0,5500030 +ABBOTT ISD,Texas,8,6,0,0,1,0,0,0,0,0,1,2,0,0,13,3,0,0,0,0,0,0,0,0,2,0,0,0,13,7,0,0,0,1,0,0,0,0,1,1,0,1,12,5,0,0,0,0,0,0,0,0,2,3,0,0,8,10,0,4807380 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,8,7,0,0,3,8,0,0,3,2,24,24,24,34,5,5,0,0,0,2,1,0,0,1,15,27,25,39,6,4,0,0,5,2,1,0,0,0,21,20,37,32,6,5,0,0,3,2,1,2,1,3,7,10,26,50,8,8,0,2500051 +ABC UNIFIED,California,31,15,3,4,77,75,0,0,187,174,247,257,20,23,16,21,6,4,49,40,1,1,206,207,261,275,41,42,25,27,1,2,47,57,1,0,219,200,290,258,41,41,29,22,3,2,72,63,2,0,215,216,308,239,50,37,23,26,1,0601620 +ABERDEEN DISTRICT,Idaho,10,8,0,0,1,0,0,0,0,0,9,10,0,0,9,4,0,1,0,0,0,0,0,0,10,13,0,0,6,6,0,0,0,0,0,0,0,0,11,17,0,0,7,9,0,0,0,0,0,1,0,0,12,16,0,0,7,14,0,1600030 +ABERDEEN SCHOOL DISTRICT,Washington,48,40,0,0,2,9,1,4,0,0,43,38,0,0,58,36,0,0,12,10,2,3,0,1,44,36,1,1,50,37,0,0,2,5,2,3,0,1,43,46,2,0,48,57,0,0,8,6,1,2,1,0,45,37,1,0,48,55,1,5300030 +ABERDEEN SCHOOL DISTRICT,Mississippi,1,1,0,0,1,0,0,0,0,0,0,0,29,43,2,1,0,0,0,0,0,0,1,0,0,0,35,32,2,2,0,0,0,0,0,0,0,0,0,0,35,27,1,3,0,0,0,0,0,0,0,0,0,0,29,32,3,1,0,2800360 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,118,76,0,0,15,8,4,6,4,3,23,26,4,5,102,112,0,3,12,14,13,15,9,4,24,26,3,5,121,103,0,2,15,12,6,10,7,12,15,25,1,4,104,112,2,2,13,11,7,6,10,4,17,13,3,4,106,105,1,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv new file mode 100644 index 0000000000..fe7f0bae0d --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Grade 13 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 13 Students - Hispanic - male [District] 2024-25,Grade 13 Students - Hispanic - female [District] 2024-25,Grade 13 Students - Black or African American - male [District] 2024-25,Grade 13 Students - Black or African American - female [District] 2024-25,Grade 13 Students - White - male [District] 2024-25,Grade 13 Students - White - female [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 13 Students - Two or More Races - male [District] 2024-25,Grade 13 Students - Two or More Races - female [District] 2024-25,Ungraded Students - American Indian/Alaska Native - male [District] 2024-25,Ungraded Students - American Indian/Alaska Native - female [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Ungraded Students - Hispanic - male [District] 2024-25,Ungraded Students - Hispanic - female [District] 2024-25,Ungraded Students - Black or African American - male [District] 2024-25,Ungraded Students - Black or African American - female [District] 2024-25,Ungraded Students - White - male [District] 2024-25,Ungraded Students - White - female [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Ungraded Students - Two or More Races - male [District] 2024-25,Ungraded Students - Two or More Races - female [District] 2024-25,Adult Education Students - American Indian/Alaska Native - male [District] 2024-25,Adult Education Students - American Indian/Alaska Native - female [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Adult Education Students - Hispanic - male [District] 2024-25,Adult Education Students - Hispanic - female [District] 2024-25,Adult Education Students - Black or African American - male [District] 2024-25,Adult Education Students - Black or African American - female [District] 2024-25,Adult Education Students - White - male [District] 2024-25,Adult Education Students - White - female [District] 2024-25,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Adult Education Students - Two or More Races - male [District] 2024-25,Adult Education Students - Two or More Races - female [District] 2024-25,Full-Time Equivalent (FTE) Teachers [District] 2024-25,Pupil/Teacher Ratio [District] 2024-25,Prekindergarten Teachers [District] 2024-25,Kindergarten Teachers [District] 2024-25,Elementary Teachers [District] 2024-25,Secondary Teachers [District] 2024-25,Ungraded Teachers [District] 2024-25,Total Staff [District] 2024-25,Paraprofessionals/Instructional Aides [District] 2024-25,Instructional Coordinators [District] 2024-25,Elementary School Counselor [District] 2024-25,Secondary School Counselor [District] 2024-25,Other Guidance Counselors [District] 2024-25,Total Guidance Counselors [District] 2024-25,Librarians/media specialists [District] 2024-25,Media Support Staff [District] 2024-25,LEA Administrators [District] 2024-25,LEA Administrative Support Staff [District] 2024-25,School Administrators [District] 2024-25,School Administrative Support Staff [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,10.00,118.00,0.00,0.00,0.07,9.93,†,101.50,44.00,2.00,0.00,2.00,†,2.00,0.00,0.00,4.50,3.00,5.00,8.00,1800046 +21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,55.40,17.98,†,†,0.20,45.10,10.10,149.50,28.00,3.00,–,–,6.00,6.00,–,0.00,5.00,7.00,5.00,12.00,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,36.20,10.25,–,–,7.40,21.40,7.40,63.40,11.00,1.20,–,–,†,–,–,–,2.00,0.00,1.60,4.00,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,69.75,–,†,†,45.60,24.15,†,277.64,112.79,–,†,†,†,–,–,0.00,0.00,0.00,11.00,15.00,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,35.00,0.20,†,†,†,31.00,4.00,76.00,10.00,–,†,–,2.00,2.00,–,0.00,2.00,0.00,3.00,9.00,4280010 +A+ ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,89.67,18.71,–,4.04,28.58,43.23,13.82,221.50,27.46,1.50,0.00,0.00,3.70,3.70,0.00,0.00,4.00,16.50,6.37,11.25,4800203 +A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,28.00,8.82,0.00,2.66,14.52,2.32,8.50,51.00,4.00,1.00,0.00,0.00,0.00,0.00,0.00,0.00,3.00,7.00,0.00,0.00,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,21.89,16.90,0.00,0.00,6.84,15.05,†,21.89,0.00,0.00,0.00,0.00,†,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0400998 +A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4.00,26.75,0.00,1.00,3.00,0.00,0.00,9.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.00,3.00,0.00,0.00,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9.06,22.41,0.00,0.00,0.94,7.12,1.00,18.80,3.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.60,1.00,0.64,2.50,4801453 +A-C CENTRAL CUSD 262,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,30.40,10.33,2.00,1.00,19.65,7.75,†,88.50,7.00,0.00,0.00,1.00,†,1.00,2.00,2.00,1.00,2.00,2.40,3.00,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9.55,–,0.00,0.00,0.00,9.55,†,12.15,1.00,0.00,0.00,0.00,†,0.00,0.00,0.00,0.00,0.00,1.00,0.00,5100033 +A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,28.46,14.79,†,5.42,23.04,0.00,†,‡,‡,‡,1.36,0.00,0.00,1.36,‡,‡,‡,‡,‡,‡,3700372 +A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,74.14,12.04,5.00,3.00,31.01,27.85,7.28,139.95,27.99,0.47,–,1.83,†,1.83,0.00,1.36,1.07,2.00,3.00,1.00,2700106 +ABBEVILLE 60,South Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,222.80,12.32,7.00,12.00,124.80,79.00,†,501.25,56.50,3.00,6.00,5.00,†,11.00,7.60,1.00,8.00,19.00,16.00,14.00,4500690 +ABBOTSFORD SCHOOL DISTRICT,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,58.59,13.64,3.00,2.00,25.95,27.55,0.09,112.22,23.04,3.00,1.00,1.00,0.00,2.00,0.32,1.44,1.33,3.00,2.00,3.73,5500030 +ABBOTT ISD,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24.21,11.73,1.08,1.10,8.86,12.37,0.80,43.57,6.51,1.00,0.00,0.00,1.00,1.00,0.00,0.00,2.00,1.70,1.00,0.50,4807380 +ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,125.99,11.32,0.00,7.51,85.04,33.44,†,214.53,28.00,2.00,0.00,5.00,†,5.00,0.04,4.00,11.00,5.00,9.50,4.00,2500051 +ABC UNIFIED,California,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779.33,22.60,†,73.93,425.74,279.66,†,1612.68,77.39,11.50,12.20,15.50,4.10,31.80,0.00,0.00,16.00,31.75,56.00,76.00,0601620 +ABERDEEN DISTRICT,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,45.01,13.89,0.33,2.00,21.00,21.68,†,89.75,8.89,0.75,–,–,2.00,2.00,1.00,0.48,1.00,1.90,3.00,4.22,1600030 +ABERDEEN SCHOOL DISTRICT,Mississippi,0,0,0,1,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,73.58,12.56,0.00,0.00,33.00,35.00,5.58,173.82,19.30,1.00,0.00,0.00,†,0.00,2.00,–,5.00,9.00,8.00,8.00,2800360 +ABERDEEN SCHOOL DISTRICT,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,170.80,18.64,7.50,11.79,65.11,86.40,†,382.24,57.77,10.62,3.25,5.89,†,9.14,–,0.00,3.81,9.86,11.27,14.96,5300030 +ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,303.21,13.96,4.84,15.00,162.41,67.96,53.00,559.98,92.17,0.00,0.00,0.00,14.07,14.07,4.00,0.00,8.00,4.50,14.00,10.00,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv index 3e7cae4ed2..6b0bbd7a43 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv @@ -1,19 +1,19 @@ -school_state_code,ZIP,Location_ZIP4,County_code,District_School_name,School_ID,State_school_ID,PhoneNumber,State_Name,State_Abbr,State_code,Latitude,Longitude,Locale,Physical_Address,City,Lowest_Grade_Dist,Highest_Grade_Dist,year,geoID,ContainedInPlace,Validated_State_Abbr,School_Management -geoId/sch5500030,54405,,,Abbotsford School District,5500030,WI-0007,7152236715,Wisconsin,WI,geoId/55,,,dcs:NCES_LocaleDataMissing,510 W Hemlock St Abbotsford WI 54405,Abbotsford,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch5500030,dcs:geoId/55,WI, -geoId/sch3901480,43207,4031,,A+ Children'S Academy,3901480,OH-013232,6144918502,Ohio,OH,geoId/39,,,dcs:NCES_LocaleDataMissing,114 Obetz Rd Columbus OH 43207-4031,Columbus,dcs:Kindergarten,dcs:SchoolGrade6,2023,sch3901480,dcs:geoId/39,OH, -geoId/sch0400998,85138,,,A+ Charter Schools (1000166),400998,AZ-1000166,5202655589,ARIZONA,AZ,geoId/4,,,dcs:NCES_LocaleDataMissing,41600 W Smith-Enke Rd Maricopa 85138,Maricopa,dcs:SchoolGrade6,dcs:SchoolGrade12,2023,sch0400998,,geoId/4, -geoId/sch1700024,60459,,,A E R O Spec Educ Coop,1700024,IL-07-016-8060-60,7084963330,Illinois,IL,geoId/17,,,dcs:NCES_LocaleDataMissing,7600 Mason Ave Burbank IL 60459,Burbank,dcs:NCES_GradeDataMissing,dcs:NCES_GradeDataMissing,2023,sch1700024,dcs:geoId/17,IL, -geoId/sch1700105,62612,7624,,A-C Central Cusd 262,1700105,IL-01-009-2620-26,2174768112,Illinois,IL,geoId/17,,,dcs:NCES_LocaleDataMissing,501 W Buchanan St Ashland IL 62612-7624,Ashland,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch1700105,dcs:geoId/17,IL, -geoId/sch1800046,46202,,,21St Century Charter Sch Of Gary,1800046,IN-9545,3175361027,Indiana,IN,geoId/18,,,dcs:NCES_LocaleDataMissing,1630 N Meridian St 350 Indianapolis IN 46202,Indianapolis,dcs:Kindergarten,dcs:SchoolGrade12,2023,sch1800046,dcs:geoId/18,IN, -geoId/sch2700106,56243,5003,,A.C.G.C. Public School District,2700106,MN-012396,3202444712,Minnesota,MN,geoId/27,,,dcs:NCES_LocaleDataMissing,27250 Minnesota Highway 4 Grove City MN 56243-5003,GROVE CITY,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch2700106,dcs:geoId/27,MN, -geoId/sch3700372,28075,,,A.C.E. Academy,3700372,NC-13C,7044567153,North Carolina,NC,geoId/37,,,dcs:NCES_LocaleDataMissing,7807 Caldwell Road Harrisburg NC 28075,Harrisburg,dcs:Kindergarten,dcs:SchoolGrade8,2023,sch3700372,dcs:geoId/37,NC, -geoId/sch3900305,43205,1543,,A+ Arts Academy,3900305,OH-000556,6147251305,Ohio,OH,geoId/39,,,dcs:NCES_LocaleDataMissing,1395 Fair Ave Columbus OH 43205-1543,Columbus,dcs:Kindergarten,dcs:SchoolGrade8,2023,sch3900305,dcs:geoId/39,OH, -geoId/sch3500187,87110,,,21St Century Public Academy,3500187,NM-580,5052540280,NEW MEXICO,NM,geoId/35,,,dcs:NCES_LocaleDataMissing,4300 Cutler Ave. Ne Albuquerque NM 87110,ALBUQUERQUE,dcs:SchoolGrade1,dcs:SchoolGrade8,2023,sch3500187,dcs:geoId/35,NM, -geoId/sch4200091,19380,,,21St Century Cyber Cs,4200091,PA-124150002,4848755400,Pennsylvania,PA,geoId/42,,,dcs:NCES_LocaleDataMissing,1245 Wrights Lane West Chester PA 19380,West Chester,dcs:SchoolGrade6,dcs:SchoolGrade12,2023,sch4200091,dcs:geoId/42,PA, -geoId/sch4800203,75217,,,A+ Academy,4800203,TX-057829,2142751200,Texas,TX,geoId/48,,,dcs:NCES_LocaleDataMissing,8225 Bruton Rd Dallas TX 75217,DALLAS,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch4800203,dcs:geoId/48,TX, -geoId/sch4280010,15101,2005,,A W Beattie Career Center,4280010,PA-103020407,4128471900,Pennsylvania,PA,geoId/42,,,dcs:NCES_LocaleDataMissing,9600 Babcock Boulevard Allison Park PA 15101-2005,Allison Park,dcs:SchoolGrade9,dcs:SchoolGrade12,2023,sch4280010,dcs:geoId/42,PA, -geoId/sch4807380,76621,226,,Abbott Isd,4807380,TX-109901,2545823011,Texas,TX,geoId/48,,,dcs:NCES_LocaleDataMissing,219 S First St Abbott TX 76621-0226,ABBOTT,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch4807380,dcs:geoId/48,TX, -geoId/sch4801453,77004,,,A+ Unlimited Potential,4801453,TX-101871,7132043837,TEXAS,TX,geoId/48,,,dcs:NCES_LocaleDataMissing,2410 Hamilton Houston TX 77004,HOUSTON,dcs:SchoolGrade6,dcs:SchoolGrade8,2023,sch4801453,dcs:geoId/48,TX, -geoId/sch5100033,24210,,,A. Linwood Holton Governor'S School,5100033,VA-268,2764694026,Virginia,VA,geoId/51,,,dcs:NCES_LocaleDataMissing,One Partnership Circle Abingdon VA 24210,Abingdon,dcs:NCES_GradeDataMissing,dcs:NCES_GradeDataMissing,2023,sch5100033,dcs:geoId/51,VA, -geoId/sch4800095,75237,,,A W Brown Leadership Academy,4800095,TX-057816,9727094700,Texas,TX,geoId/48,,,dcs:NCES_LocaleDataMissing,5701 Red Bird Ctr Dr Dallas TX 75237,DALLAS,dcs:PreKindergarten,dcs:SchoolGrade8,2023,sch4800095,dcs:geoId/48,TX, -geoId/sch4500690,29620,,,Abbeville 60,4500690,SC-0160,8643665427,South Carolina,SC,geoId/45,,,dcs:NCES_LocaleDataMissing,400 Greenville Street Abbeville SC 29620,Abbeville,dcs:PreKindergarten,dcs:SchoolGrade12,2023,sch4500690,dcs:geoId/45,SC, +"school_state_code","ZIP","Location_ZIP4","County_code","District_School_name","School_ID","State_school_ID","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","Lowest_Grade_Dist","Highest_Grade_Dist","year","geoID","ContainedInPlace","Validated_State_Abbr","School_Management" +"geoId/sch0400998","85138","","geoId/04021","A+ Charter Schools (1000166)","0400998","AZ-1000166","5202655589","ARIZONA","AZ","geoId/04","33.042533","-112.015895","dcs:NCES_SuburbSmall","41600 W Smith-Enke Rd Maricopa AZ 85138","Maricopa","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch0400998","dcs:geoId/04","AZ","" +"geoId/sch1700024","60459","","geoId/17031","A E R O Spec Educ Coop","1700024","IL-07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.75345","-87.757423","dcs:NCES_SuburbLarge","5400 W 77Th St Burbank IL 60459","Burbank","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" +"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" +"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" +"geoId/sch2500051","1606","","geoId/25027","Abby Kelley Foster Charter Public","2500051","MA-0445","5088548400","Massachusetts","MA","geoId/25","42.305635","-71.801599","dcs:NCES_CityMidsize","10 New Bond Street Worcester MA 1606","Worcester","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch2500051","dcs:geoId/25","MA","" +"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" +"geoId/sch3500187","87110","","geoId/35001","21St Century Public Academy","3500187","NM-35580000","5052540280","NEW MEXICO","NM","geoId/35","35.105101","-106.599226","dcs:NCES_CityLarge","4300 Cutler Ave. Ne Albuquerque NM 87110","ALBUQUERQUE","dcs:SchoolGrade1","dcs:SchoolGrade8","2024","sch3500187","dcs:geoId/35","NM","" +"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" +"geoId/sch3900305","43205","1543","geoId/39049","A+ Arts Academy","3900305","OH-000556","6147251305","Ohio","OH","geoId/39","39.963397","-82.962898","dcs:NCES_CityLarge","1395 Fair Ave Columbus OH 43205-1543","Columbus","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3900305","dcs:geoId/39","OH","" +"geoId/sch3901480","43207","4031","geoId/39049","A+ Children'S Academy","3901480","OH-013232","6144918502","Ohio","OH","geoId/39","39.882382","-82.996978","dcs:NCES_CityLarge","114 Obetz Rd Columbus OH 43207-4031","Columbus","dcs:Kindergarten","dcs:SchoolGrade6","2024","sch3901480","dcs:geoId/39","OH","" +"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" +"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" +"geoId/sch4500690","29620","","geoId/45001","Abbeville 60","4500690","SC-0160","8643665427","South Carolina","SC","geoId/45","34.185163","-82.380158","dcs:NCES_RuralDistant","400 Greenville Street Abbeville SC 29620","Abbeville","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4500690","dcs:geoId/45","SC","" +"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" +"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" +"geoId/sch4807380","76621","0226","geoId/48217","Abbott Isd","4807380","TX-109901","2545823011","Texas","TX","geoId/48","31.883393","-97.07685","dcs:NCES_RuralDistant","219 S First St Abbott TX 76621-0226","ABBOTT","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4807380","dcs:geoId/48","TX","" +"geoId/sch5100033","24210","","geoId/51191","A. Linwood Holton Governor'S School","5100033","VA-268","2766194326","Virginia","VA","geoId/51","36.696706","-82.00065","dcs:NCES_SuburbSmall","One Partnership Circle Abingdon VA 24210","Abingdon","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch5100033","dcs:geoId/51","VA","" +"geoId/sch5500030","54405","","geoId/55019","Abbotsford School District","5500030","WI-0007","7152236715","Wisconsin","WI","geoId/55","44.949886","-90.332138","dcs:NCES_RuralRemote","510 W Hemlock St Abbotsford WI 54405","Abbotsford","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch5500030","dcs:geoId/55","WI","" diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv index 44cfb15715..454bfc8fce 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv @@ -1,4546 +1,3221 @@ school_state_code,year,sv_name,observation,scaling_factor,unit -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,3,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,4,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,9,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4280010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,3,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4801453,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,3,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4280010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,6,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4801453,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative,4,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative,5,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative,12,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4280010,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative,9,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4801453,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian,1,, -geoId/sch1700105,2023,Count_Student_Female_Asian,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian,1,, -geoId/sch3500187,2023,Count_Student_Female_Asian,3,, -geoId/sch3700372,2023,Count_Student_Female_Asian,2,, -geoId/sch3900305,2023,Count_Student_Female_Asian,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian,1,, -geoId/sch4200091,2023,Count_Student_Female_Asian,4,, -geoId/sch4280010,2023,Count_Student_Female_Asian,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian,3,, -geoId/sch4800095,2023,Count_Student_Female_Asian,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian,4,, -geoId/sch4801453,2023,Count_Student_Female_Asian,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian,5,, -geoId/sch0400998,2023,Count_Student_Male_Asian,4,, -geoId/sch1700105,2023,Count_Student_Male_Asian,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian,3,, -geoId/sch3700372,2023,Count_Student_Male_Asian,4,, -geoId/sch3900305,2023,Count_Student_Male_Asian,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian,2,, -geoId/sch4200091,2023,Count_Student_Male_Asian,0,, -geoId/sch4280010,2023,Count_Student_Male_Asian,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian,7,, -geoId/sch4800095,2023,Count_Student_Male_Asian,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian,2,, -geoId/sch4801453,2023,Count_Student_Male_Asian,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian,1,, -geoId/sch0400998,2023,Count_Student_Asian,5,, -geoId/sch1700105,2023,Count_Student_Asian,0,, -geoId/sch1800046,2023,Count_Student_Asian,0,, -geoId/sch2700106,2023,Count_Student_Asian,1,, -geoId/sch3500187,2023,Count_Student_Asian,6,, -geoId/sch3700372,2023,Count_Student_Asian,6,, -geoId/sch3900305,2023,Count_Student_Asian,0,, -geoId/sch3901480,2023,Count_Student_Asian,3,, -geoId/sch4200091,2023,Count_Student_Asian,4,, -geoId/sch4280010,2023,Count_Student_Asian,0,, -geoId/sch4500690,2023,Count_Student_Asian,10,, -geoId/sch4800095,2023,Count_Student_Asian,0,, -geoId/sch4800203,2023,Count_Student_Asian,6,, -geoId/sch4801453,2023,Count_Student_Asian,0,, -geoId/sch4807380,2023,Count_Student_Asian,0,, -geoId/sch5500030,2023,Count_Student_Asian,6,, -geoId/sch0400998,2023,Count_Student_Female_Black,24,, -geoId/sch1700105,2023,Count_Student_Female_Black,2,, -geoId/sch1800046,2023,Count_Student_Female_Black,582,, -geoId/sch2700106,2023,Count_Student_Female_Black,1,, -geoId/sch3500187,2023,Count_Student_Female_Black,12,, -geoId/sch3700372,2023,Count_Student_Female_Black,148,, -geoId/sch3900305,2023,Count_Student_Female_Black,156,, -geoId/sch3901480,2023,Count_Student_Female_Black,15,, -geoId/sch4200091,2023,Count_Student_Female_Black,30,, -geoId/sch4280010,2023,Count_Student_Female_Black,0,, -geoId/sch4500690,2023,Count_Student_Female_Black,435,, -geoId/sch4800095,2023,Count_Student_Female_Black,379,, -geoId/sch4800203,2023,Count_Student_Female_Black,22,, -geoId/sch4801453,2023,Count_Student_Female_Black,48,, -geoId/sch4807380,2023,Count_Student_Female_Black,1,, -geoId/sch5500030,2023,Count_Student_Female_Black,4,, -geoId/sch0400998,2023,Count_Student_Male_Black,16,, -geoId/sch1700105,2023,Count_Student_Male_Black,0,, -geoId/sch1800046,2023,Count_Student_Male_Black,548,, -geoId/sch2700106,2023,Count_Student_Male_Black,0,, -geoId/sch3500187,2023,Count_Student_Male_Black,16,, -geoId/sch3700372,2023,Count_Student_Male_Black,177,, -geoId/sch3900305,2023,Count_Student_Male_Black,176,, -geoId/sch3901480,2023,Count_Student_Male_Black,13,, -geoId/sch4200091,2023,Count_Student_Male_Black,19,, -geoId/sch4280010,2023,Count_Student_Male_Black,0,, -geoId/sch4500690,2023,Count_Student_Male_Black,481,, -geoId/sch4800095,2023,Count_Student_Male_Black,337,, -geoId/sch4800203,2023,Count_Student_Male_Black,35,, -geoId/sch4801453,2023,Count_Student_Male_Black,34,, -geoId/sch4807380,2023,Count_Student_Male_Black,2,, -geoId/sch5500030,2023,Count_Student_Male_Black,1,, -geoId/sch0400998,2023,Count_Student_Black,40,, -geoId/sch1700105,2023,Count_Student_Black,2,, -geoId/sch1800046,2023,Count_Student_Black,1130,, -geoId/sch2700106,2023,Count_Student_Black,1,, -geoId/sch3500187,2023,Count_Student_Black,28,, -geoId/sch3700372,2023,Count_Student_Black,325,, -geoId/sch3900305,2023,Count_Student_Black,332,, -geoId/sch3901480,2023,Count_Student_Black,28,, -geoId/sch4200091,2023,Count_Student_Black,49,, -geoId/sch4280010,2023,Count_Student_Black,0,, -geoId/sch4500690,2023,Count_Student_Black,916,, -geoId/sch4800095,2023,Count_Student_Black,716,, -geoId/sch4800203,2023,Count_Student_Black,57,, -geoId/sch4801453,2023,Count_Student_Black,82,, -geoId/sch4807380,2023,Count_Student_Black,3,, -geoId/sch5500030,2023,Count_Student_Black,5,, -geoId/sch0400998,2023,Count_Student_Female,139,, -geoId/sch1700105,2023,Count_Student_Female,161,, -geoId/sch1800046,2023,Count_Student_Female,630,, -geoId/sch2700106,2023,Count_Student_Female,407,, -geoId/sch3500187,2023,Count_Student_Female,178,, -geoId/sch3700372,2023,Count_Student_Female,214,, -geoId/sch3900305,2023,Count_Student_Female,173,, -geoId/sch3901480,2023,Count_Student_Female,37,, -geoId/sch4200091,2023,Count_Student_Female,621,, -geoId/sch4280010,2023,Count_Student_Female,3,, -geoId/sch4500690,2023,Count_Student_Female,1322,, -geoId/sch4800095,2023,Count_Student_Female,414,, -geoId/sch4800203,2023,Count_Student_Female,796,, -geoId/sch4801453,2023,Count_Student_Female,87,, -geoId/sch4807380,2023,Count_Student_Female,122,, -geoId/sch5500030,2023,Count_Student_Female,389,, -geoId/sch1700105,2023,Count_Student_SchoolGrade1,22,, -geoId/sch1800046,2023,Count_Student_SchoolGrade1,103,, -geoId/sch2700106,2023,Count_Student_SchoolGrade1,74,, -geoId/sch3500187,2023,Count_Student_SchoolGrade1,17,, -geoId/sch3700372,2023,Count_Student_SchoolGrade1,54,, -geoId/sch3900305,2023,Count_Student_SchoolGrade1,37,, -geoId/sch3901480,2023,Count_Student_SchoolGrade1,18,, -geoId/sch4500690,2023,Count_Student_SchoolGrade1,189,, -geoId/sch4800095,2023,Count_Student_SchoolGrade1,81,, -geoId/sch4800203,2023,Count_Student_SchoolGrade1,95,, -geoId/sch4807380,2023,Count_Student_SchoolGrade1,22,, -geoId/sch5500030,2023,Count_Student_SchoolGrade1,62,, -geoId/sch0400998,2023,Count_Student_SchoolGrade10,72,, -geoId/sch1700105,2023,Count_Student_SchoolGrade10,29,, -geoId/sch1800046,2023,Count_Student_SchoolGrade10,103,, -geoId/sch2700106,2023,Count_Student_SchoolGrade10,58,, -geoId/sch4200091,2023,Count_Student_SchoolGrade10,225,, -geoId/sch4280010,2023,Count_Student_SchoolGrade10,3,, -geoId/sch4500690,2023,Count_Student_SchoolGrade10,207,, -geoId/sch4800203,2023,Count_Student_SchoolGrade10,120,, -geoId/sch4807380,2023,Count_Student_SchoolGrade10,15,, -geoId/sch5500030,2023,Count_Student_SchoolGrade10,59,, -geoId/sch0400998,2023,Count_Student_SchoolGrade11,44,, -geoId/sch1700105,2023,Count_Student_SchoolGrade11,28,, -geoId/sch1800046,2023,Count_Student_SchoolGrade11,101,, -geoId/sch2700106,2023,Count_Student_SchoolGrade11,71,, -geoId/sch4200091,2023,Count_Student_SchoolGrade11,226,, -geoId/sch4280010,2023,Count_Student_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_SchoolGrade11,208,, -geoId/sch4800203,2023,Count_Student_SchoolGrade11,116,, -geoId/sch4807380,2023,Count_Student_SchoolGrade11,18,, -geoId/sch5500030,2023,Count_Student_SchoolGrade11,70,, -geoId/sch0400998,2023,Count_Student_SchoolGrade12,52,, -geoId/sch1700105,2023,Count_Student_SchoolGrade12,24,, -geoId/sch1800046,2023,Count_Student_SchoolGrade12,88,, -geoId/sch2700106,2023,Count_Student_SchoolGrade12,55,, -geoId/sch4200091,2023,Count_Student_SchoolGrade12,211,, -geoId/sch4280010,2023,Count_Student_SchoolGrade12,2,, -geoId/sch4500690,2023,Count_Student_SchoolGrade12,170,, -geoId/sch4800203,2023,Count_Student_SchoolGrade12,91,, -geoId/sch4807380,2023,Count_Student_SchoolGrade12,20,, -geoId/sch5500030,2023,Count_Student_SchoolGrade12,64,, -geoId/sch1700105,2023,Count_Student_SchoolGrade2,22,, -geoId/sch1800046,2023,Count_Student_SchoolGrade2,101,, -geoId/sch2700106,2023,Count_Student_SchoolGrade2,59,, -geoId/sch3500187,2023,Count_Student_SchoolGrade2,15,, -geoId/sch3700372,2023,Count_Student_SchoolGrade2,54,, -geoId/sch3900305,2023,Count_Student_SchoolGrade2,49,, -geoId/sch3901480,2023,Count_Student_SchoolGrade2,14,, -geoId/sch4500690,2023,Count_Student_SchoolGrade2,207,, -geoId/sch4800095,2023,Count_Student_SchoolGrade2,74,, -geoId/sch4800203,2023,Count_Student_SchoolGrade2,97,, -geoId/sch4807380,2023,Count_Student_SchoolGrade2,19,, -geoId/sch5500030,2023,Count_Student_SchoolGrade2,48,, -geoId/sch1700105,2023,Count_Student_SchoolGrade3,24,, -geoId/sch1800046,2023,Count_Student_SchoolGrade3,85,, -geoId/sch2700106,2023,Count_Student_SchoolGrade3,62,, -geoId/sch3500187,2023,Count_Student_SchoolGrade3,22,, -geoId/sch3700372,2023,Count_Student_SchoolGrade3,45,, -geoId/sch3900305,2023,Count_Student_SchoolGrade3,52,, -geoId/sch3901480,2023,Count_Student_SchoolGrade3,5,, -geoId/sch4500690,2023,Count_Student_SchoolGrade3,199,, -geoId/sch4800095,2023,Count_Student_SchoolGrade3,93,, -geoId/sch4800203,2023,Count_Student_SchoolGrade3,117,, -geoId/sch4807380,2023,Count_Student_SchoolGrade3,21,, -geoId/sch5500030,2023,Count_Student_SchoolGrade3,58,, -geoId/sch1700105,2023,Count_Student_SchoolGrade4,24,, -geoId/sch1800046,2023,Count_Student_SchoolGrade4,87,, -geoId/sch2700106,2023,Count_Student_SchoolGrade4,73,, -geoId/sch3500187,2023,Count_Student_SchoolGrade4,34,, -geoId/sch3700372,2023,Count_Student_SchoolGrade4,42,, -geoId/sch3900305,2023,Count_Student_SchoolGrade4,48,, -geoId/sch3901480,2023,Count_Student_SchoolGrade4,11,, -geoId/sch4500690,2023,Count_Student_SchoolGrade4,191,, -geoId/sch4800095,2023,Count_Student_SchoolGrade4,61,, -geoId/sch4800203,2023,Count_Student_SchoolGrade4,105,, -geoId/sch4807380,2023,Count_Student_SchoolGrade4,21,, -geoId/sch5500030,2023,Count_Student_SchoolGrade4,49,, -geoId/sch1700105,2023,Count_Student_SchoolGrade5,22,, -geoId/sch1800046,2023,Count_Student_SchoolGrade5,67,, -geoId/sch2700106,2023,Count_Student_SchoolGrade5,60,, -geoId/sch3500187,2023,Count_Student_SchoolGrade5,42,, -geoId/sch3700372,2023,Count_Student_SchoolGrade5,48,, -geoId/sch3900305,2023,Count_Student_SchoolGrade5,43,, -geoId/sch3901480,2023,Count_Student_SchoolGrade5,17,, -geoId/sch4500690,2023,Count_Student_SchoolGrade5,225,, -geoId/sch4800095,2023,Count_Student_SchoolGrade5,64,, -geoId/sch4800203,2023,Count_Student_SchoolGrade5,100,, -geoId/sch4807380,2023,Count_Student_SchoolGrade5,19,, -geoId/sch5500030,2023,Count_Student_SchoolGrade5,63,, -geoId/sch0400998,2023,Count_Student_SchoolGrade6,20,, -geoId/sch1700105,2023,Count_Student_SchoolGrade6,26,, -geoId/sch1800046,2023,Count_Student_SchoolGrade6,95,, -geoId/sch2700106,2023,Count_Student_SchoolGrade6,70,, -geoId/sch3500187,2023,Count_Student_SchoolGrade6,85,, -geoId/sch3700372,2023,Count_Student_SchoolGrade6,54,, -geoId/sch3900305,2023,Count_Student_SchoolGrade6,40,, -geoId/sch3901480,2023,Count_Student_SchoolGrade6,6,, -geoId/sch4200091,2023,Count_Student_SchoolGrade6,29,, -geoId/sch4500690,2023,Count_Student_SchoolGrade6,180,, -geoId/sch4800095,2023,Count_Student_SchoolGrade6,48,, -geoId/sch4800203,2023,Count_Student_SchoolGrade6,124,, -geoId/sch4801453,2023,Count_Student_SchoolGrade6,36,, -geoId/sch4807380,2023,Count_Student_SchoolGrade6,18,, -geoId/sch5500030,2023,Count_Student_SchoolGrade6,55,, -geoId/sch0400998,2023,Count_Student_SchoolGrade7,31,, -geoId/sch1700105,2023,Count_Student_SchoolGrade7,21,, -geoId/sch1800046,2023,Count_Student_SchoolGrade7,83,, -geoId/sch2700106,2023,Count_Student_SchoolGrade7,62,, -geoId/sch3500187,2023,Count_Student_SchoolGrade7,80,, -geoId/sch3700372,2023,Count_Student_SchoolGrade7,40,, -geoId/sch3900305,2023,Count_Student_SchoolGrade7,22,, -geoId/sch4200091,2023,Count_Student_SchoolGrade7,65,, -geoId/sch4500690,2023,Count_Student_SchoolGrade7,200,, -geoId/sch4800095,2023,Count_Student_SchoolGrade7,47,, -geoId/sch4800203,2023,Count_Student_SchoolGrade7,128,, -geoId/sch4801453,2023,Count_Student_SchoolGrade7,54,, -geoId/sch4807380,2023,Count_Student_SchoolGrade7,23,, -geoId/sch5500030,2023,Count_Student_SchoolGrade7,55,, -geoId/sch0400998,2023,Count_Student_SchoolGrade8,31,, -geoId/sch1700105,2023,Count_Student_SchoolGrade8,22,, -geoId/sch1800046,2023,Count_Student_SchoolGrade8,97,, -geoId/sch2700106,2023,Count_Student_SchoolGrade8,64,, -geoId/sch3500187,2023,Count_Student_SchoolGrade8,83,, -geoId/sch3700372,2023,Count_Student_SchoolGrade8,50,, -geoId/sch3900305,2023,Count_Student_SchoolGrade8,29,, -geoId/sch4200091,2023,Count_Student_SchoolGrade8,109,, -geoId/sch4500690,2023,Count_Student_SchoolGrade8,238,, -geoId/sch4800095,2023,Count_Student_SchoolGrade8,35,, -geoId/sch4800203,2023,Count_Student_SchoolGrade8,153,, -geoId/sch4801453,2023,Count_Student_SchoolGrade8,60,, -geoId/sch4807380,2023,Count_Student_SchoolGrade8,23,, -geoId/sch5500030,2023,Count_Student_SchoolGrade8,51,, -geoId/sch0400998,2023,Count_Student_SchoolGrade9,56,, -geoId/sch1700105,2023,Count_Student_SchoolGrade9,25,, -geoId/sch1800046,2023,Count_Student_SchoolGrade9,116,, -geoId/sch2700106,2023,Count_Student_SchoolGrade9,79,, -geoId/sch4200091,2023,Count_Student_SchoolGrade9,238,, -geoId/sch4280010,2023,Count_Student_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_SchoolGrade9,232,, -geoId/sch4800203,2023,Count_Student_SchoolGrade9,144,, -geoId/sch4807380,2023,Count_Student_SchoolGrade9,23,, -geoId/sch5500030,2023,Count_Student_SchoolGrade9,55,, -geoId/sch0400998,2023,Count_Student_SchoolGrade1To8,82,, -geoId/sch1700105,2023,Count_Student_SchoolGrade1To8,183,, -geoId/sch1800046,2023,Count_Student_SchoolGrade1To8,718,, -geoId/sch2700106,2023,Count_Student_SchoolGrade1To8,524,, -geoId/sch3500187,2023,Count_Student_SchoolGrade1To8,378,, -geoId/sch3700372,2023,Count_Student_SchoolGrade1To8,387,, -geoId/sch3900305,2023,Count_Student_SchoolGrade1To8,320,, -geoId/sch3901480,2023,Count_Student_SchoolGrade1To8,71,, -geoId/sch4200091,2023,Count_Student_SchoolGrade1To8,203,, -geoId/sch4500690,2023,Count_Student_SchoolGrade1To8,1629,, -geoId/sch4800095,2023,Count_Student_SchoolGrade1To8,503,, -geoId/sch4800203,2023,Count_Student_SchoolGrade1To8,919,, -geoId/sch4801453,2023,Count_Student_SchoolGrade1To8,150,, -geoId/sch4807380,2023,Count_Student_SchoolGrade1To8,166,, -geoId/sch5500030,2023,Count_Student_SchoolGrade1To8,441,, -geoId/sch0400998,2023,Count_Student_SchoolGrade9To12,224,, -geoId/sch1700105,2023,Count_Student_SchoolGrade9To12,106,, -geoId/sch1800046,2023,Count_Student_SchoolGrade9To12,408,, -geoId/sch2700106,2023,Count_Student_SchoolGrade9To12,263,, -geoId/sch4200091,2023,Count_Student_SchoolGrade9To12,900,, -geoId/sch4280010,2023,Count_Student_SchoolGrade9To12,5,, -geoId/sch4500690,2023,Count_Student_SchoolGrade9To12,817,, -geoId/sch4800203,2023,Count_Student_SchoolGrade9To12,471,, -geoId/sch4807380,2023,Count_Student_SchoolGrade9To12,76,, -geoId/sch5500030,2023,Count_Student_SchoolGrade9To12,248,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino,58,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino,1,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino,28,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino,55,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino,7,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino,35,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino,7,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino,1,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino,21,, -geoId/sch4280010,2023,Count_Student_Female_HispanicOrLatino,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino,30,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino,19,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino,745,, -geoId/sch4801453,2023,Count_Student_Female_HispanicOrLatino,35,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino,17,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino,250,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino,75,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino,6,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino,24,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino,53,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino,19,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino,31,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino,4,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino,4,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino,17,, -geoId/sch4280010,2023,Count_Student_Male_HispanicOrLatino,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino,41,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino,17,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino,799,, -geoId/sch4801453,2023,Count_Student_Male_HispanicOrLatino,22,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino,26,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino,267,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino,133,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino,7,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino,52,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino,108,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino,26,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino,66,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino,11,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino,5,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino,38,, -geoId/sch4280010,2023,Count_Student_HispanicOrLatino,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino,71,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino,36,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino,1544,, -geoId/sch4801453,2023,Count_Student_HispanicOrLatino,57,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino,43,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino,517,, -geoId/sch1700105,2023,Count_Student_Kindergarten,23,, -geoId/sch1800046,2023,Count_Student_Kindergarten,87,, -geoId/sch2700106,2023,Count_Student_Kindergarten,74,, -geoId/sch3700372,2023,Count_Student_Kindergarten,51,, -geoId/sch3900305,2023,Count_Student_Kindergarten,46,, -geoId/sch3901480,2023,Count_Student_Kindergarten,16,, -geoId/sch4500690,2023,Count_Student_Kindergarten,233,, -geoId/sch4800095,2023,Count_Student_Kindergarten,91,, -geoId/sch4800203,2023,Count_Student_Kindergarten,109,, -geoId/sch4807380,2023,Count_Student_Kindergarten,21,, -geoId/sch5500030,2023,Count_Student_Kindergarten,61,, -geoId/sch0400998,2023,Count_Student_Male,167,, -geoId/sch1700105,2023,Count_Student_Male,167,, -geoId/sch1800046,2023,Count_Student_Male,583,, -geoId/sch2700106,2023,Count_Student_Male,473,, -geoId/sch3500187,2023,Count_Student_Male,200,, -geoId/sch3700372,2023,Count_Student_Male,224,, -geoId/sch3900305,2023,Count_Student_Male,193,, -geoId/sch3901480,2023,Count_Student_Male,50,, -geoId/sch4200091,2023,Count_Student_Male,482,, -geoId/sch4280010,2023,Count_Student_Male,2,, -geoId/sch4500690,2023,Count_Student_Male,1479,, -geoId/sch4800095,2023,Count_Student_Male,364,, -geoId/sch4800203,2023,Count_Student_Male,853,, -geoId/sch4801453,2023,Count_Student_Male,63,, -geoId/sch4807380,2023,Count_Student_Male,162,, -geoId/sch5500030,2023,Count_Student_Male,426,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch4280010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch4801453,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,1,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,2,, -geoId/sch4280010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,2,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,1,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch4801453,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander,1,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -geoId/sch4280010,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch4801453,2023,Count_Student_HawaiianNativeOrPacificIslander,1,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -geoId/sch0400998,2023,Count_Student,5202655589,, -geoId/sch1700024,2023,Count_Student,7084963330,, -geoId/sch1700105,2023,Count_Student,2174768112,, -geoId/sch1800046,2023,Count_Student,3175361027,, -geoId/sch2700106,2023,Count_Student,3202444712,, -geoId/sch3500187,2023,Count_Student,5052540280,, -geoId/sch3700372,2023,Count_Student,7044567153,, -geoId/sch3900305,2023,Count_Student,6147251305,, -geoId/sch3901480,2023,Count_Student,6144918502,, -geoId/sch4200091,2023,Count_Student,4848755400,, -geoId/sch4280010,2023,Count_Student,4128471900,, -geoId/sch4500690,2023,Count_Student,8643665427,, -geoId/sch4800095,2023,Count_Student,9727094700,, -geoId/sch4800203,2023,Count_Student,2142751200,, -geoId/sch4801453,2023,Count_Student,7132043837,, -geoId/sch4807380,2023,Count_Student,2545823011,, -geoId/sch5100033,2023,Count_Student,2764694026,, -geoId/sch5500030,2023,Count_Student,7152236715,, -geoId/sch1700105,2023,Count_Student_PreKindergarten,16,, -geoId/sch2700106,2023,Count_Student_PreKindergarten,19,, -geoId/sch4500690,2023,Count_Student_PreKindergarten,123,, -geoId/sch4800095,2023,Count_Student_PreKindergarten,184,, -geoId/sch4800203,2023,Count_Student_PreKindergarten,150,, -geoId/sch4807380,2023,Count_Student_PreKindergarten,21,, -geoId/sch5500030,2023,Count_Student_PreKindergarten,65,, -geoId/sch1700105,2023,Count_Student_Female_PreKindergarten,6,, -geoId/sch2700106,2023,Count_Student_Female_PreKindergarten,5,, -geoId/sch4500690,2023,Count_Student_Female_PreKindergarten,57,, -geoId/sch4800095,2023,Count_Student_Female_PreKindergarten,96,, -geoId/sch4800203,2023,Count_Student_Female_PreKindergarten,78,, -geoId/sch4807380,2023,Count_Student_Female_PreKindergarten,9,, -geoId/sch5500030,2023,Count_Student_Female_PreKindergarten,28,, -geoId/sch1700105,2023,Count_Student_Male_PreKindergarten,10,, -geoId/sch2700106,2023,Count_Student_Male_PreKindergarten,14,, -geoId/sch4500690,2023,Count_Student_Male_PreKindergarten,66,, -geoId/sch4800095,2023,Count_Student_Male_PreKindergarten,88,, -geoId/sch4800203,2023,Count_Student_Male_PreKindergarten,72,, -geoId/sch4807380,2023,Count_Student_Male_PreKindergarten,12,, -geoId/sch5500030,2023,Count_Student_Male_PreKindergarten,37,, -geoId/sch0400998,2023,Count_Student,306,, -geoId/sch1700105,2023,Count_Student,328,, -geoId/sch1800046,2023,Count_Student,1213,, -geoId/sch2700106,2023,Count_Student,880,, -geoId/sch3500187,2023,Count_Student,378,, -geoId/sch3700372,2023,Count_Student,438,, -geoId/sch3900305,2023,Count_Student,366,, -geoId/sch3901480,2023,Count_Student,87,, -geoId/sch4200091,2023,Count_Student,1103,, -geoId/sch4280010,2023,Count_Student,5,, -geoId/sch4500690,2023,Count_Student,2802,, -geoId/sch4800095,2023,Count_Student,778,, -geoId/sch4800203,2023,Count_Student,1649,, -geoId/sch4801453,2023,Count_Student,150,, -geoId/sch4807380,2023,Count_Student,284,, -geoId/sch5500030,2023,Count_Student,815,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces,8,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces,2,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces,18,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces,16,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces,28,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces,10,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces,5,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces,9,, -geoId/sch4280010,2023,Count_Student_Female_TwoOrMoreRaces,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces,43,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces,15,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces,6,, -geoId/sch4801453,2023,Count_Student_Female_TwoOrMoreRaces,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces,4,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces,4,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces,6,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces,5,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces,10,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces,18,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces,9,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces,10,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces,3,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces,4,, -geoId/sch4280010,2023,Count_Student_Male_TwoOrMoreRaces,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces,40,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces,8,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces,4,, -geoId/sch4801453,2023,Count_Student_Male_TwoOrMoreRaces,5,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces,3,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces,8,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces,14,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces,7,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces,28,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces,34,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces,37,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces,20,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces,8,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces,13,, -geoId/sch4280010,2023,Count_Student_TwoOrMoreRaces,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces,83,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces,23,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces,10,, -geoId/sch4801453,2023,Count_Student_TwoOrMoreRaces,6,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces,7,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces,12,, -geoId/sch0400998,2023,Count_Student_Female_White,44,, -geoId/sch1700105,2023,Count_Student_Female_White,156,, -geoId/sch1800046,2023,Count_Student_Female_White,2,, -geoId/sch2700106,2023,Count_Student_Female_White,330,, -geoId/sch3500187,2023,Count_Student_Female_White,147,, -geoId/sch3700372,2023,Count_Student_Female_White,1,, -geoId/sch3900305,2023,Count_Student_Female_White,0,, -geoId/sch3901480,2023,Count_Student_Female_White,14,, -geoId/sch4200091,2023,Count_Student_Female_White,557,, -geoId/sch4280010,2023,Count_Student_Female_White,3,, -geoId/sch4500690,2023,Count_Student_Female_White,808,, -geoId/sch4800095,2023,Count_Student_Female_White,0,, -geoId/sch4800203,2023,Count_Student_Female_White,19,, -geoId/sch4801453,2023,Count_Student_Female_White,2,, -geoId/sch4807380,2023,Count_Student_Female_White,100,, -geoId/sch5500030,2023,Count_Student_Female_White,126,, -geoId/sch0400998,2023,Count_Student_Male_White,65,, -geoId/sch1700105,2023,Count_Student_Male_White,156,, -geoId/sch1800046,2023,Count_Student_Male_White,1,, -geoId/sch2700106,2023,Count_Student_Male_White,401,, -geoId/sch3500187,2023,Count_Student_Male_White,159,, -geoId/sch3700372,2023,Count_Student_Male_White,3,, -geoId/sch3900305,2023,Count_Student_Male_White,3,, -geoId/sch3901480,2023,Count_Student_Male_White,27,, -geoId/sch4200091,2023,Count_Student_Male_White,440,, -geoId/sch4280010,2023,Count_Student_Male_White,2,, -geoId/sch4500690,2023,Count_Student_Male_White,902,, -geoId/sch4800095,2023,Count_Student_Male_White,1,, -geoId/sch4800203,2023,Count_Student_Male_White,13,, -geoId/sch4801453,2023,Count_Student_Male_White,2,, -geoId/sch4807380,2023,Count_Student_Male_White,131,, -geoId/sch5500030,2023,Count_Student_Male_White,149,, -geoId/sch0400998,2023,Count_Student_White,109,, -geoId/sch1700105,2023,Count_Student_White,312,, -geoId/sch1800046,2023,Count_Student_White,3,, -geoId/sch2700106,2023,Count_Student_White,731,, -geoId/sch3500187,2023,Count_Student_White,306,, -geoId/sch3700372,2023,Count_Student_White,4,, -geoId/sch3900305,2023,Count_Student_White,3,, -geoId/sch3901480,2023,Count_Student_White,41,, -geoId/sch4200091,2023,Count_Student_White,997,, -geoId/sch4280010,2023,Count_Student_White,5,, -geoId/sch4500690,2023,Count_Student_White,1710,, -geoId/sch4800095,2023,Count_Student_White,1,, -geoId/sch4800203,2023,Count_Student_White,32,, -geoId/sch4801453,2023,Count_Student_White,4,, -geoId/sch4807380,2023,Count_Student_White,231,, -geoId/sch5500030,2023,Count_Student_White,275,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade1,1,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade1,2,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade1,2,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade1,96,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade1,3,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade1,37,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade1,30,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade1,8,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade1,61,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade1,76,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade1,3,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade1,4,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade1,10,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade1,10,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade1,3,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade1,1,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade1,4,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade1,3,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade1,91,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade1,42,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,3,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,5,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,3,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,2,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,10,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,2,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade1,22,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade1,64,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade1,14,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade1,1,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade1,1,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade1,7,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade1,111,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade1,1,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade1,19,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade1,18,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade1,10,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade1,51,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade1,33,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade1,9,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade1,29,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade1,12,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade1,8,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade1,87,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade1,50,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade1,54,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade1,8,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade1,29,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade1,12,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade1,52,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade1,41,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade1,8,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade1,25,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade1,25,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade1,10,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade1,102,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade1,31,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade1,41,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade1,14,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade1,33,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade10,30,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade10,14,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade10,44,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade10,30,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade10,127,, -geoId/sch4280010,2023,Count_Student_Female_SchoolGrade10,1,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade10,95,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade10,59,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade10,10,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade10,23,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade10,42,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade10,15,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade10,59,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade10,28,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade10,98,, -geoId/sch4280010,2023,Count_Student_Male_SchoolGrade10,2,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade10,112,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade10,61,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade10,5,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade10,36,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade11,17,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade11,13,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade11,59,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade11,27,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade11,129,, -geoId/sch4280010,2023,Count_Student_Female_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade11,86,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade11,71,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade11,5,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade11,36,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade11,27,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade11,15,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade11,42,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade11,44,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade11,97,, -geoId/sch4280010,2023,Count_Student_Male_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade11,122,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade11,45,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade11,13,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade11,34,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade12,21,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade12,7,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade12,46,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade12,29,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade12,122,, -geoId/sch4280010,2023,Count_Student_Female_SchoolGrade12,2,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade12,78,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade12,44,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade12,9,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade12,30,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade12,31,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade12,17,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade12,42,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade12,26,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade12,89,, -geoId/sch4280010,2023,Count_Student_Male_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade12,92,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade12,47,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade12,11,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade12,34,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,2,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade2,1,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade2,97,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade2,42,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade2,46,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade2,5,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade2,80,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade2,67,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade2,3,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade2,1,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade2,1,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade2,2,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade2,5,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade2,5,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade2,2,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade2,4,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade2,92,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade2,36,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade2,22,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade2,49,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade2,12,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade2,8,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade2,121,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade2,1,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade2,17,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade2,10,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade2,12,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade2,50,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade2,25,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade2,8,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade2,24,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade2,24,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade2,6,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade2,103,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade2,44,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade2,44,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade2,7,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade2,26,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade2,10,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade2,51,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade2,34,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade2,7,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade2,30,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade2,25,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade2,8,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade2,104,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade2,30,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade2,53,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade2,12,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade2,22,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade3,14,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade3,52,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade3,30,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade3,12,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade3,24,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade3,19,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade3,3,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade3,103,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade3,46,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade3,59,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade3,13,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade3,27,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade3,10,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade3,33,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade3,32,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade3,10,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade3,21,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade3,33,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade3,2,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade3,96,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade3,47,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade3,58,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade3,8,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade3,31,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade4,11,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade4,46,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade4,38,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade4,19,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade4,20,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade4,21,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade4,5,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade4,90,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade4,30,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade4,56,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade4,9,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade4,23,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade4,13,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade4,41,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade4,35,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade4,15,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade4,22,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade4,27,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade4,6,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade4,101,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade4,31,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade4,49,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade4,12,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade4,26,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade5,9,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade5,35,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade5,32,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade5,23,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade5,22,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade5,25,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade5,9,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade5,105,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade5,36,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade5,40,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade5,6,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade5,33,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade5,13,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade5,32,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade5,28,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade5,19,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade5,26,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade5,18,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade5,8,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade5,120,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade5,28,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade5,60,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade5,13,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade5,30,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade6,10,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade6,15,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade6,47,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade6,31,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade6,40,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade6,27,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade6,25,, -geoId/sch3901480,2023,Count_Student_Female_SchoolGrade6,3,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade6,16,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade6,78,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade6,18,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade6,56,, -geoId/sch4801453,2023,Count_Student_Female_SchoolGrade6,20,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade6,9,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade6,30,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade6,10,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade6,11,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade6,48,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade6,39,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade6,45,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade6,27,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade6,15,, -geoId/sch3901480,2023,Count_Student_Male_SchoolGrade6,3,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade6,13,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade6,102,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade6,30,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade6,68,, -geoId/sch4801453,2023,Count_Student_Male_SchoolGrade6,16,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade6,9,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade6,25,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade7,16,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade7,14,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade7,40,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade7,26,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade7,30,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade7,15,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade7,15,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade7,31,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade7,99,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade7,24,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade7,54,, -geoId/sch4801453,2023,Count_Student_Female_SchoolGrade7,32,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade7,9,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade7,26,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade7,15,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade7,7,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade7,43,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade7,36,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade7,50,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade7,25,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade7,7,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade7,34,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade7,101,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade7,23,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade7,74,, -geoId/sch4801453,2023,Count_Student_Male_SchoolGrade7,22,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade7,14,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade7,29,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade8,16,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade8,11,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade8,49,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade8,31,, -geoId/sch3500187,2023,Count_Student_Female_SchoolGrade8,37,, -geoId/sch3700372,2023,Count_Student_Female_SchoolGrade8,26,, -geoId/sch3900305,2023,Count_Student_Female_SchoolGrade8,16,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade8,59,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade8,108,, -geoId/sch4800095,2023,Count_Student_Female_SchoolGrade8,16,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade8,76,, -geoId/sch4801453,2023,Count_Student_Female_SchoolGrade8,35,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade8,11,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade8,24,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade8,15,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade8,11,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade8,48,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade8,33,, -geoId/sch3500187,2023,Count_Student_Male_SchoolGrade8,46,, -geoId/sch3700372,2023,Count_Student_Male_SchoolGrade8,24,, -geoId/sch3900305,2023,Count_Student_Male_SchoolGrade8,13,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade8,50,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade8,129,, -geoId/sch4800095,2023,Count_Student_Male_SchoolGrade8,19,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade8,77,, -geoId/sch4801453,2023,Count_Student_Male_SchoolGrade8,25,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade8,12,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade8,27,, -geoId/sch0400998,2023,Count_Student_Female_SchoolGrade9,29,, -geoId/sch1700105,2023,Count_Student_Female_SchoolGrade9,11,, -geoId/sch1800046,2023,Count_Student_Female_SchoolGrade9,66,, -geoId/sch2700106,2023,Count_Student_Female_SchoolGrade9,36,, -geoId/sch4200091,2023,Count_Student_Female_SchoolGrade9,137,, -geoId/sch4280010,2023,Count_Student_Female_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_SchoolGrade9,109,, -geoId/sch4800203,2023,Count_Student_Female_SchoolGrade9,50,, -geoId/sch4807380,2023,Count_Student_Female_SchoolGrade9,10,, -geoId/sch5500030,2023,Count_Student_Female_SchoolGrade9,23,, -geoId/sch0400998,2023,Count_Student_Male_SchoolGrade9,27,, -geoId/sch1700105,2023,Count_Student_Male_SchoolGrade9,14,, -geoId/sch1800046,2023,Count_Student_Male_SchoolGrade9,50,, -geoId/sch2700106,2023,Count_Student_Male_SchoolGrade9,43,, -geoId/sch4200091,2023,Count_Student_Male_SchoolGrade9,101,, -geoId/sch4280010,2023,Count_Student_Male_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_SchoolGrade9,123,, -geoId/sch4800203,2023,Count_Student_Male_SchoolGrade9,94,, -geoId/sch4807380,2023,Count_Student_Male_SchoolGrade9,13,, -geoId/sch5500030,2023,Count_Student_Male_SchoolGrade9,32,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Asian_Kindergarten,1,, -geoId/sch3900305,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Asian_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Black_Kindergarten,1,, -geoId/sch1800046,2023,Count_Student_Black_Kindergarten,80,, -geoId/sch2700106,2023,Count_Student_Black_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Black_Kindergarten,42,, -geoId/sch3900305,2023,Count_Student_Black_Kindergarten,39,, -geoId/sch3901480,2023,Count_Student_Black_Kindergarten,5,, -geoId/sch4500690,2023,Count_Student_Black_Kindergarten,90,, -geoId/sch4800095,2023,Count_Student_Black_Kindergarten,83,, -geoId/sch4800203,2023,Count_Student_Black_Kindergarten,9,, -geoId/sch4807380,2023,Count_Student_Black_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Black_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_Kindergarten,4,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_Kindergarten,11,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_Kindergarten,6,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_Kindergarten,3,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_Kindergarten,3,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_Kindergarten,7,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_Kindergarten,5,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_Kindergarten,95,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_Kindergarten,3,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_Kindergarten,45,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_Kindergarten,14,, -geoId/sch1800046,2023,Count_Student_Female_Kindergarten,45,, -geoId/sch2700106,2023,Count_Student_Female_Kindergarten,34,, -geoId/sch3700372,2023,Count_Student_Female_Kindergarten,27,, -geoId/sch3900305,2023,Count_Student_Female_Kindergarten,16,, -geoId/sch3901480,2023,Count_Student_Female_Kindergarten,3,, -geoId/sch4500690,2023,Count_Student_Female_Kindergarten,124,, -geoId/sch4800095,2023,Count_Student_Female_Kindergarten,54,, -geoId/sch4800203,2023,Count_Student_Female_Kindergarten,55,, -geoId/sch4807380,2023,Count_Student_Female_Kindergarten,7,, -geoId/sch5500030,2023,Count_Student_Female_Kindergarten,31,, -geoId/sch1700105,2023,Count_Student_Male_Kindergarten,9,, -geoId/sch1800046,2023,Count_Student_Male_Kindergarten,42,, -geoId/sch2700106,2023,Count_Student_Male_Kindergarten,40,, -geoId/sch3700372,2023,Count_Student_Male_Kindergarten,24,, -geoId/sch3900305,2023,Count_Student_Male_Kindergarten,30,, -geoId/sch3901480,2023,Count_Student_Male_Kindergarten,13,, -geoId/sch4500690,2023,Count_Student_Male_Kindergarten,109,, -geoId/sch4800095,2023,Count_Student_Male_Kindergarten,37,, -geoId/sch4800203,2023,Count_Student_Male_Kindergarten,54,, -geoId/sch4807380,2023,Count_Student_Male_Kindergarten,14,, -geoId/sch5500030,2023,Count_Student_Male_Kindergarten,30,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_Kindergarten,3,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_Kindergarten,4,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_Kindergarten,6,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_Kindergarten,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_White_Kindergarten,22,, -geoId/sch1800046,2023,Count_Student_White_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_White_Kindergarten,61,, -geoId/sch3700372,2023,Count_Student_White_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_White_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_White_Kindergarten,8,, -geoId/sch4500690,2023,Count_Student_White_Kindergarten,130,, -geoId/sch4800095,2023,Count_Student_White_Kindergarten,1,, -geoId/sch4800203,2023,Count_Student_White_Kindergarten,4,, -geoId/sch4807380,2023,Count_Student_White_Kindergarten,18,, -geoId/sch5500030,2023,Count_Student_White_Kindergarten,16,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Asian_PreKindergarten,1,, -geoId/sch4807380,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Asian_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Black_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Black_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Black_PreKindergarten,54,, -geoId/sch4800095,2023,Count_Student_Black_PreKindergarten,169,, -geoId/sch4800203,2023,Count_Student_Black_PreKindergarten,8,, -geoId/sch4807380,2023,Count_Student_Black_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Black_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_PreKindergarten,4,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_PreKindergarten,3,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_PreKindergarten,9,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_PreKindergarten,134,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_PreKindergarten,6,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_PreKindergarten,39,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,1,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_White_PreKindergarten,16,, -geoId/sch2700106,2023,Count_Student_White_PreKindergarten,15,, -geoId/sch4500690,2023,Count_Student_White_PreKindergarten,62,, -geoId/sch4800095,2023,Count_Student_White_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_White_PreKindergarten,6,, -geoId/sch4807380,2023,Count_Student_White_PreKindergarten,15,, -geoId/sch5500030,2023,Count_Student_White_PreKindergarten,25,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,4,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,5,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade10,1,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade10,1,, -geoId/sch4280010,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade10,3,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade10,1,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade10,10,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade10,96,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade10,10,, -geoId/sch4280010,2023,Count_Student_Black_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade10,71,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade10,5,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade10,34,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade10,1,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade10,5,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade10,7,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade10,5,, -geoId/sch4280010,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade10,6,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade10,113,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade10,2,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade10,34,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,3,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,4,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade10,24,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade10,28,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade10,50,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade10,209,, -geoId/sch4280010,2023,Count_Student_White_SchoolGrade10,3,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade10,123,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade10,1,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade10,13,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade10,25,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade11,1,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,4,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,5,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,4,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,3,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,2,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade3,1,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade3,79,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade3,4,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade3,35,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade3,50,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade3,1,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade3,65,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade3,81,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade3,3,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade3,12,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade3,1,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade3,7,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade3,1,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade3,9,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade3,113,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade3,42,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,5,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade3,22,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade3,47,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade3,17,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade3,3,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade3,123,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade3,17,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade3,14,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade4,1,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade4,2,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade4,82,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade4,2,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade4,34,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade4,46,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade4,3,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade4,71,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade4,55,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade4,2,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade4,1,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade4,1,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade4,4,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade4,9,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade4,3,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade4,2,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade4,3,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade4,96,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade4,34,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,2,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,5,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,2,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,8,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,3,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade4,23,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade4,62,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade4,30,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade4,6,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade4,110,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade4,4,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade4,19,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade4,13,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,2,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade5,1,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade5,1,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade5,1,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade5,63,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade5,3,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade5,34,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade5,39,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade5,5,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade5,74,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade5,58,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade5,3,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade5,1,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade5,4,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade5,7,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade5,2,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade5,96,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade5,6,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade5,46,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,2,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,6,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,2,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,5,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,9,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade5,22,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade5,53,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade5,34,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade5,4,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade5,140,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade5,1,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade5,11,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade5,16,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade6,3,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade6,1,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade6,1,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade6,4,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade6,91,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade6,4,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade6,33,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade6,35,, -geoId/sch3901480,2023,Count_Student_Black_SchoolGrade6,1,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade6,3,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade6,56,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade6,47,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade6,2,, -geoId/sch4801453,2023,Count_Student_Black_SchoolGrade6,18,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade6,8,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade6,13,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade6,6,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade6,118,, -geoId/sch4801453,2023,Count_Student_HispanicOrLatino_SchoolGrade6,13,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade6,4,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade6,42,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,4,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,6,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,4,, -geoId/sch3901480,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,7,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,3,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade6,7,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade6,24,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade6,57,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade6,70,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade6,1,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade6,1,, -geoId/sch3901480,2023,Count_Student_White_SchoolGrade6,5,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade6,16,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade6,109,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade6,2,, -geoId/sch4801453,2023,Count_Student_White_SchoolGrade6,2,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade6,12,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade6,11,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade7,2,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade7,1,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade7,1,, -geoId/sch4801453,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade7,7,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade7,77,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade7,4,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade7,33,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade7,19,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade7,3,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade7,58,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade7,45,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade7,2,, -geoId/sch4801453,2023,Count_Student_Black_SchoolGrade7,32,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade7,11,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade7,5,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade7,7,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade7,6,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade7,4,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade7,7,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade7,121,, -geoId/sch4801453,2023,Count_Student_HispanicOrLatino_SchoolGrade7,19,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade7,2,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade7,32,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,4,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,2,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,3,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,3,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4801453,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade7,11,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade7,19,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade7,51,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade7,67,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade7,58,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade7,130,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade7,3,, -geoId/sch4801453,2023,Count_Student_White_SchoolGrade7,2,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade7,20,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade7,23,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -geoId/sch3500187,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,5,, -geoId/sch3700372,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -geoId/sch4800095,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Asian_SchoolGrade8,1,, -geoId/sch3700372,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade8,1,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade8,2,, -geoId/sch4800095,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade8,3,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade8,2,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade8,88,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Black_SchoolGrade8,8,, -geoId/sch3700372,2023,Count_Student_Black_SchoolGrade8,35,, -geoId/sch3900305,2023,Count_Student_Black_SchoolGrade8,28,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade8,4,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade8,69,, -geoId/sch4800095,2023,Count_Student_Black_SchoolGrade8,35,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade8,3,, -geoId/sch4801453,2023,Count_Student_Black_SchoolGrade8,32,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade8,1,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade8,14,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade8,1,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade8,9,, -geoId/sch3500187,2023,Count_Student_HispanicOrLatino_SchoolGrade8,7,, -geoId/sch3700372,2023,Count_Student_HispanicOrLatino_SchoolGrade8,11,, -geoId/sch3900305,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade8,7,, -geoId/sch4800095,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade8,145,, -geoId/sch4801453,2023,Count_Student_HispanicOrLatino_SchoolGrade8,25,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade8,30,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800095,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,4,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch3500187,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,4,, -geoId/sch3900305,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,5,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,6,, -geoId/sch4800095,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,2,, -geoId/sch4801453,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,2,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,2,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade8,14,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade8,21,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade8,53,, -geoId/sch3500187,2023,Count_Student_White_SchoolGrade8,62,, -geoId/sch3700372,2023,Count_Student_White_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_White_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade8,94,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade8,152,, -geoId/sch4800095,2023,Count_Student_White_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade8,3,, -geoId/sch4801453,2023,Count_Student_White_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade8,17,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade8,15,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,2,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade9,3,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade9,1,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade9,7,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade9,106,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade9,17,, -geoId/sch4280010,2023,Count_Student_Black_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade9,67,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade9,5,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade9,2,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade9,22,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade9,3,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade9,5,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade9,9,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade9,12,, -geoId/sch4280010,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade9,10,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade9,137,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade9,4,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade9,26,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -geoId/sch4280010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,1,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,5,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,5,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,3,, -geoId/sch4280010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,4,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade9,19,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade9,21,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade9,64,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade9,205,, -geoId/sch4280010,2023,Count_Student_White_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade9,151,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade9,2,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade9,19,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade9,26,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade11,3,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade11,92,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade11,7,, -geoId/sch4280010,2023,Count_Student_Black_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade11,56,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade11,4,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade11,19,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade11,1,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade11,6,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade11,5,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade11,5,, -geoId/sch4280010,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade11,7,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade11,109,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade11,1,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade11,39,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,1,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,2,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,2,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,3,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,9,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade11,19,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade11,26,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade11,1,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade11,62,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade11,214,, -geoId/sch4280010,2023,Count_Student_White_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade11,135,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade11,3,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade11,17,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade11,30,, -geoId/sch0400998,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -geoId/sch4200091,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,2,, -geoId/sch4800203,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Asian_SchoolGrade12,1,, -geoId/sch1700105,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Asian_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch4800203,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Asian_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Black_SchoolGrade12,7,, -geoId/sch1700105,2023,Count_Student_Black_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Black_SchoolGrade12,83,, -geoId/sch2700106,2023,Count_Student_Black_SchoolGrade12,1,, -geoId/sch4200091,2023,Count_Student_Black_SchoolGrade12,5,, -geoId/sch4280010,2023,Count_Student_Black_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Black_SchoolGrade12,44,, -geoId/sch4800203,2023,Count_Student_Black_SchoolGrade12,5,, -geoId/sch4807380,2023,Count_Student_Black_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Black_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_HispanicOrLatino_SchoolGrade12,26,, -geoId/sch1700105,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_HispanicOrLatino_SchoolGrade12,2,, -geoId/sch2700106,2023,Count_Student_HispanicOrLatino_SchoolGrade12,8,, -geoId/sch4200091,2023,Count_Student_HispanicOrLatino_SchoolGrade12,3,, -geoId/sch4280010,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_HispanicOrLatino_SchoolGrade12,6,, -geoId/sch4800203,2023,Count_Student_HispanicOrLatino_SchoolGrade12,84,, -geoId/sch4807380,2023,Count_Student_HispanicOrLatino_SchoolGrade12,2,, -geoId/sch5500030,2023,Count_Student_HispanicOrLatino_SchoolGrade12,30,, -geoId/sch0400998,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,1,, -geoId/sch4800203,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,3,, -geoId/sch1700105,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch2700106,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch4200091,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,4,, -geoId/sch4800203,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch4807380,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch5500030,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch0400998,2023,Count_Student_White_SchoolGrade12,15,, -geoId/sch1700105,2023,Count_Student_White_SchoolGrade12,24,, -geoId/sch1800046,2023,Count_Student_White_SchoolGrade12,1,, -geoId/sch2700106,2023,Count_Student_White_SchoolGrade12,43,, -geoId/sch4200091,2023,Count_Student_White_SchoolGrade12,201,, -geoId/sch4280010,2023,Count_Student_White_SchoolGrade12,2,, -geoId/sch4500690,2023,Count_Student_White_SchoolGrade12,113,, -geoId/sch4800203,2023,Count_Student_White_SchoolGrade12,1,, -geoId/sch4807380,2023,Count_Student_White_SchoolGrade12,17,, -geoId/sch5500030,2023,Count_Student_White_SchoolGrade12,33,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_Kindergarten,1,, -geoId/sch3900305,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_Kindergarten,1,, -geoId/sch1800046,2023,Count_Student_Female_Black_Kindergarten,42,, -geoId/sch2700106,2023,Count_Student_Female_Black_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Female_Black_Kindergarten,21,, -geoId/sch3900305,2023,Count_Student_Female_Black_Kindergarten,12,, -geoId/sch3901480,2023,Count_Student_Female_Black_Kindergarten,2,, -geoId/sch4500690,2023,Count_Student_Female_Black_Kindergarten,48,, -geoId/sch4800095,2023,Count_Student_Female_Black_Kindergarten,50,, -geoId/sch4800203,2023,Count_Student_Female_Black_Kindergarten,3,, -geoId/sch4807380,2023,Count_Student_Female_Black_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_Kindergarten,38,, -geoId/sch2700106,2023,Count_Student_Male_Black_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Male_Black_Kindergarten,21,, -geoId/sch3900305,2023,Count_Student_Male_Black_Kindergarten,27,, -geoId/sch3901480,2023,Count_Student_Male_Black_Kindergarten,3,, -geoId/sch4500690,2023,Count_Student_Male_Black_Kindergarten,42,, -geoId/sch4800095,2023,Count_Student_Male_Black_Kindergarten,33,, -geoId/sch4800203,2023,Count_Student_Male_Black_Kindergarten,6,, -geoId/sch4807380,2023,Count_Student_Male_Black_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,6,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,3,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,2,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,2,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,2,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,48,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,2,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,24,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,3,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,5,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,3,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,1,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,5,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,3,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,47,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,21,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_White_Kindergarten,13,, -geoId/sch1800046,2023,Count_Student_Female_White_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_White_Kindergarten,28,, -geoId/sch3700372,2023,Count_Student_Female_White_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Female_White_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Female_White_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_White_Kindergarten,70,, -geoId/sch4800095,2023,Count_Student_Female_White_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_White_Kindergarten,3,, -geoId/sch4807380,2023,Count_Student_Female_White_Kindergarten,5,, -geoId/sch5500030,2023,Count_Student_Female_White_Kindergarten,7,, -geoId/sch1700105,2023,Count_Student_Male_White_Kindergarten,9,, -geoId/sch1800046,2023,Count_Student_Male_White_Kindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_White_Kindergarten,33,, -geoId/sch3700372,2023,Count_Student_Male_White_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Male_White_Kindergarten,0,, -geoId/sch3901480,2023,Count_Student_Male_White_Kindergarten,8,, -geoId/sch4500690,2023,Count_Student_Male_White_Kindergarten,60,, -geoId/sch4800095,2023,Count_Student_Male_White_Kindergarten,1,, -geoId/sch4800203,2023,Count_Student_Male_White_Kindergarten,1,, -geoId/sch4807380,2023,Count_Student_Male_White_Kindergarten,13,, -geoId/sch5500030,2023,Count_Student_Male_White_Kindergarten,9,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_PreKindergarten,1,, -geoId/sch4807380,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_Black_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_Black_PreKindergarten,20,, -geoId/sch4800095,2023,Count_Student_Female_Black_PreKindergarten,87,, -geoId/sch4800203,2023,Count_Student_Female_Black_PreKindergarten,3,, -geoId/sch4807380,2023,Count_Student_Female_Black_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_Black_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_PreKindergarten,34,, -geoId/sch4800095,2023,Count_Student_Male_Black_PreKindergarten,82,, -geoId/sch4800203,2023,Count_Student_Male_Black_PreKindergarten,5,, -geoId/sch4807380,2023,Count_Student_Male_Black_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,1,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,3,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,4,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,70,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,3,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,17,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,3,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,5,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,64,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,3,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,22,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,1,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,4,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,3,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,1,, -geoId/sch1700105,2023,Count_Student_Female_White_PreKindergarten,6,, -geoId/sch2700106,2023,Count_Student_Female_White_PreKindergarten,4,, -geoId/sch4500690,2023,Count_Student_Female_White_PreKindergarten,33,, -geoId/sch4800095,2023,Count_Student_Female_White_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Female_White_PreKindergarten,3,, -geoId/sch4807380,2023,Count_Student_Female_White_PreKindergarten,6,, -geoId/sch5500030,2023,Count_Student_Female_White_PreKindergarten,11,, -geoId/sch1700105,2023,Count_Student_Male_White_PreKindergarten,10,, -geoId/sch2700106,2023,Count_Student_Male_White_PreKindergarten,11,, -geoId/sch4500690,2023,Count_Student_Male_White_PreKindergarten,29,, -geoId/sch4800095,2023,Count_Student_Male_White_PreKindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_White_PreKindergarten,3,, -geoId/sch4807380,2023,Count_Student_Male_White_PreKindergarten,9,, -geoId/sch5500030,2023,Count_Student_Male_White_PreKindergarten,14,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade1,1,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade1,1,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade1,1,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade1,1,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade1,1,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade1,46,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade1,1,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade1,19,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade1,9,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade1,5,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade1,25,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade1,47,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade1,1,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade1,50,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade1,2,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade1,18,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade1,21,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade1,3,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade1,36,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade1,29,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade1,2,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,6,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,6,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,53,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,21,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,4,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,4,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,38,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,2,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,21,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,3,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,4,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,6,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,4,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade1,10,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade1,27,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade1,8,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade1,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade1,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade1,2,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade1,53,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade1,0,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade1,7,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade1,7,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade1,12,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade1,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade1,37,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade1,6,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade1,1,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade1,1,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade1,5,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade1,58,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade1,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade1,1,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade1,12,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade1,11,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade2,1,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade2,47,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade2,19,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade2,23,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade2,1,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade2,41,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade2,38,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade2,1,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade2,1,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade2,1,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade2,50,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade2,23,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade2,23,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade2,4,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade2,39,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade2,29,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade2,2,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,4,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,42,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,21,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,4,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,4,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,50,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,15,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,3,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,4,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,3,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade2,12,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade2,1,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade2,20,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade2,7,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade2,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade2,5,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade2,57,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade2,1,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade2,6,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade2,4,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade2,10,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade2,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade2,29,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade2,5,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade2,1,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade2,0,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade2,3,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade2,64,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade2,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade2,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade2,11,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade2,6,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade3,1,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade3,48,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade3,2,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade3,18,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade3,18,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade3,1,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade3,35,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade3,40,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade3,1,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade3,31,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade3,2,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade3,17,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade3,32,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade3,30,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade3,41,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade3,2,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,6,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,3,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,57,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,3,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,20,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,6,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,5,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,56,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,22,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,3,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,3,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade3,13,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade3,23,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade3,10,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade3,1,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade3,62,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade3,10,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade3,7,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade3,9,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade3,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade3,24,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade3,7,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade3,0,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade3,0,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade3,2,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade3,61,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade3,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade3,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade3,7,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade3,7,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade4,1,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade4,1,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade4,1,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade4,42,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade4,2,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade4,14,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade4,20,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade4,2,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade4,37,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade4,26,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade4,1,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade4,40,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade4,20,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade4,26,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade4,1,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade4,34,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade4,29,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade4,2,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade4,1,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,51,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,16,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,6,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,45,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,18,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,4,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,3,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,5,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade4,10,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade4,34,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade4,15,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade4,3,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade4,50,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade4,3,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade4,9,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade4,6,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade4,13,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade4,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade4,28,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade4,15,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade4,0,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade4,0,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade4,3,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade4,60,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade4,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade4,1,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade4,10,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade4,7,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,4,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,2,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade5,1,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade5,1,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade5,1,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade5,33,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade5,2,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade5,15,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade5,23,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade5,3,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade5,32,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade5,35,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade5,1,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade5,30,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade5,1,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade5,19,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade5,16,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade5,2,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade5,42,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade5,23,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade5,2,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade5,1,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,3,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,4,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,38,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,22,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,2,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,1,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,2,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,58,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,6,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,24,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,6,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,2,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,2,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,3,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,2,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,1,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade5,9,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade5,28,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade5,19,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade5,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade5,1,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade5,66,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade5,1,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade5,5,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade5,11,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade5,13,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade5,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade5,25,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade5,15,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade5,0,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade5,1,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade5,3,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade5,74,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade5,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade5,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade5,6,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade5,5,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade6,2,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade6,4,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade6,46,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade6,1,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade6,16,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade6,22,, -geoId/sch3901480,2023,Count_Student_Female_Black_SchoolGrade6,1,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade6,25,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade6,17,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade6,2,, -geoId/sch4801453,2023,Count_Student_Female_Black_SchoolGrade6,13,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade6,45,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade6,3,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade6,17,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade6,13,, -geoId/sch3901480,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade6,2,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade6,31,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade6,30,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Male_Black_SchoolGrade6,5,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,6,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,6,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,53,, -geoId/sch4801453,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,6,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,21,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,2,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,2,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,7,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,65,, -geoId/sch4801453,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,7,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,21,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,3,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,4,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,3,, -geoId/sch3901480,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,5,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4801453,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade6,1,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade6,15,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade6,21,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade6,32,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade6,1,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade6,0,, -geoId/sch3901480,2023,Count_Student_Female_White_SchoolGrade6,2,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade6,10,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade6,45,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_Female_White_SchoolGrade6,0,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade6,6,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade6,7,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade6,6,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade6,9,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade6,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade6,36,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade6,38,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade6,0,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade6,1,, -geoId/sch3901480,2023,Count_Student_Male_White_SchoolGrade6,3,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade6,6,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade6,64,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_Male_White_SchoolGrade6,2,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade6,6,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade6,4,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch3901480,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -geoId/sch4801453,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade7,1,, -geoId/sch4801453,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade7,2,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade7,1,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade7,4,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade7,36,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade7,1,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade7,10,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade7,14,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade7,3,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade7,32,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade7,23,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Female_Black_SchoolGrade7,17,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade7,3,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade7,41,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade7,3,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade7,23,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade7,5,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade7,26,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade7,22,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade7,2,, -geoId/sch4801453,2023,Count_Student_Male_Black_SchoolGrade7,15,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,5,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,5,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,2,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,4,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,52,, -geoId/sch4801453,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,13,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,15,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,6,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,2,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,2,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,4,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,3,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,69,, -geoId/sch4801453,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,6,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,2,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,17,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,3,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch4801453,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4801453,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade7,6,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade7,14,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade7,18,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade7,26,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade7,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade7,26,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade7,61,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade7,1,, -geoId/sch4801453,2023,Count_Student_Female_White_SchoolGrade7,2,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade7,8,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade7,11,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade7,5,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade7,5,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade7,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade7,33,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade7,41,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade7,1,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade7,0,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade7,32,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade7,69,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade7,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade7,2,, -geoId/sch4801453,2023,Count_Student_Male_White_SchoolGrade7,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade7,12,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade7,12,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -geoId/sch3500187,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,3,, -geoId/sch3700372,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4800095,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,2,, -geoId/sch3700372,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -geoId/sch4800095,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -geoId/sch3700372,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -geoId/sch4800095,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade8,3,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade8,1,, -geoId/sch4800095,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade8,42,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Female_Black_SchoolGrade8,3,, -geoId/sch3700372,2023,Count_Student_Female_Black_SchoolGrade8,16,, -geoId/sch3900305,2023,Count_Student_Female_Black_SchoolGrade8,15,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade8,3,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade8,28,, -geoId/sch4800095,2023,Count_Student_Female_Black_SchoolGrade8,16,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade8,1,, -geoId/sch4801453,2023,Count_Student_Female_Black_SchoolGrade8,18,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade8,2,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade8,46,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Male_Black_SchoolGrade8,5,, -geoId/sch3700372,2023,Count_Student_Male_Black_SchoolGrade8,19,, -geoId/sch3900305,2023,Count_Student_Male_Black_SchoolGrade8,13,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade8,1,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade8,41,, -geoId/sch4800095,2023,Count_Student_Male_Black_SchoolGrade8,19,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade8,2,, -geoId/sch4801453,2023,Count_Student_Male_Black_SchoolGrade8,14,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade8,1,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,10,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,3,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,5,, -geoId/sch3500187,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,7,, -geoId/sch3900305,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,3,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,1,, -geoId/sch4800095,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,72,, -geoId/sch4801453,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,16,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,2,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,11,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800095,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800095,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4801453,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,4,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch3500187,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,3,, -geoId/sch3900305,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,5,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,3,, -geoId/sch4800095,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch4801453,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch3500187,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch3700372,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch3900305,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,3,, -geoId/sch4800095,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch4801453,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,2,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade8,5,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade8,11,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade8,25,, -geoId/sch3500187,2023,Count_Student_Female_White_SchoolGrade8,30,, -geoId/sch3700372,2023,Count_Student_Female_White_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Female_White_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade8,47,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade8,75,, -geoId/sch4800095,2023,Count_Student_Female_White_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade8,2,, -geoId/sch4801453,2023,Count_Student_Female_White_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade8,8,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade8,9,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade8,9,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade8,10,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade8,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade8,28,, -geoId/sch3500187,2023,Count_Student_Male_White_SchoolGrade8,32,, -geoId/sch3700372,2023,Count_Student_Male_White_SchoolGrade8,0,, -geoId/sch3900305,2023,Count_Student_Male_White_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade8,47,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade8,77,, -geoId/sch4800095,2023,Count_Student_Male_White_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade8,1,, -geoId/sch4801453,2023,Count_Student_Male_White_SchoolGrade8,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade8,9,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade8,6,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,4,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,1,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,2,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,4,, -geoId/sch3500187,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,7,, -geoId/sch3700372,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,4,, -geoId/sch3900305,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,2,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,6,, -geoId/sch4800095,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,73,, -geoId/sch4801453,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,9,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,3,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,19,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,2,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade9,1,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade9,3,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade10,1,, -geoId/sch4280010,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade10,1,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade10,1,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade10,1,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade10,2,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade10,3,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade10,39,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade10,7,, -geoId/sch4280010,2023,Count_Student_Female_Black_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade10,35,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade10,2,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade10,7,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade10,57,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade10,3,, -geoId/sch4280010,2023,Count_Student_Male_Black_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade10,36,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade10,3,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,13,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,1,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,4,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,3,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,2,, -geoId/sch4280010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,2,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,55,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,2,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,12,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,21,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,1,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,4,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,3,, -geoId/sch4280010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,4,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,58,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,22,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,2,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4280010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,3,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade10,12,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade10,13,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade10,26,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade10,117,, -geoId/sch4280010,2023,Count_Student_Female_White_SchoolGrade10,1,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade10,56,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade10,1,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade10,8,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade10,11,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade10,12,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade10,15,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade10,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade10,24,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade10,92,, -geoId/sch4280010,2023,Count_Student_Male_White_SchoolGrade10,2,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade10,67,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade10,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade10,5,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade10,14,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade11,1,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade11,2,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade11,54,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade11,5,, -geoId/sch4280010,2023,Count_Student_Female_Black_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade11,24,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade11,4,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade11,1,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade11,38,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade11,2,, -geoId/sch4280010,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade11,32,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,8,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,3,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,1,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,2,, -geoId/sch4280010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,3,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,65,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,1,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,21,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,11,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,1,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,3,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,4,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,3,, -geoId/sch4280010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,4,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,44,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,18,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,1,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,2,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4280010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,7,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade11,5,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade11,13,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade11,1,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade11,24,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade11,122,, -geoId/sch4280010,2023,Count_Student_Female_White_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade11,57,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade11,2,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade11,4,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade11,14,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade11,14,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade11,13,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade11,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade11,38,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade11,92,, -geoId/sch4280010,2023,Count_Student_Male_White_SchoolGrade11,0,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade11,78,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade11,1,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade11,13,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade11,16,, -geoId/sch0400998,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -geoId/sch4200091,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -geoId/sch4800203,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -geoId/sch4800203,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Female_Asian_SchoolGrade12,1,, -geoId/sch1700105,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Female_Asian_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch4800203,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch4800203,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade12,6,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade12,45,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade12,1,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_Female_Black_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade12,22,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade12,2,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade12,1,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade12,38,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade12,4,, -geoId/sch4280010,2023,Count_Student_Male_Black_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade12,22,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade12,3,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,7,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,4,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,2,, -geoId/sch4280010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,4,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,40,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,1,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,16,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,19,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,1,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,4,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,44,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,1,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,14,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,1,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4280010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch4280010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade12,6,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade12,7,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade12,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade12,23,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade12,118,, -geoId/sch4280010,2023,Count_Student_Female_White_SchoolGrade12,2,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade12,49,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade12,1,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade12,8,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade12,14,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade12,9,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade12,17,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade12,1,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade12,20,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade12,83,, -geoId/sch4280010,2023,Count_Student_Male_White_SchoolGrade12,0,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade12,64,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade12,0,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade12,9,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade12,19,, -geoId/sch0400998,2023,Count_Student_Female_Black_SchoolGrade9,5,, -geoId/sch1700105,2023,Count_Student_Female_Black_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Female_Black_SchoolGrade9,62,, -geoId/sch2700106,2023,Count_Student_Female_Black_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Female_Black_SchoolGrade9,10,, -geoId/sch4280010,2023,Count_Student_Female_Black_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_Black_SchoolGrade9,31,, -geoId/sch4800203,2023,Count_Student_Female_Black_SchoolGrade9,1,, -geoId/sch4807380,2023,Count_Student_Female_Black_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_Black_SchoolGrade9,2,, -geoId/sch0400998,2023,Count_Student_Male_Black_SchoolGrade9,2,, -geoId/sch1700105,2023,Count_Student_Male_Black_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Male_Black_SchoolGrade9,44,, -geoId/sch2700106,2023,Count_Student_Male_Black_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Male_Black_SchoolGrade9,7,, -geoId/sch4280010,2023,Count_Student_Male_Black_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_Black_SchoolGrade9,36,, -geoId/sch4800203,2023,Count_Student_Male_Black_SchoolGrade9,4,, -geoId/sch4807380,2023,Count_Student_Male_Black_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Male_Black_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,11,, -geoId/sch1700105,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -geoId/sch2700106,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,5,, -geoId/sch4200091,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,8,, -geoId/sch4280010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,2,, -geoId/sch4800203,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,49,, -geoId/sch4807380,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,13,, -geoId/sch0400998,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,11,, -geoId/sch1700105,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,3,, -geoId/sch1800046,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -geoId/sch2700106,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -geoId/sch4200091,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -geoId/sch4280010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,8,, -geoId/sch4800203,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,88,, -geoId/sch4807380,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -geoId/sch5500030,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,13,, -geoId/sch0400998,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -geoId/sch1700105,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4280010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch1700105,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4200091,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -geoId/sch4280010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4800203,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,1,, -geoId/sch1700105,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,1,, -geoId/sch1800046,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,3,, -geoId/sch2700106,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch4200091,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch4280010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch4800203,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -geoId/sch1700105,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch1800046,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch2700106,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,3,, -geoId/sch4200091,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -geoId/sch4280010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,2,, -geoId/sch4800203,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch5500030,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -geoId/sch0400998,2023,Count_Student_Female_White_SchoolGrade9,9,, -geoId/sch1700105,2023,Count_Student_Female_White_SchoolGrade9,10,, -geoId/sch1800046,2023,Count_Student_Female_White_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Female_White_SchoolGrade9,29,, -geoId/sch4200091,2023,Count_Student_Female_White_SchoolGrade9,117,, -geoId/sch4280010,2023,Count_Student_Female_White_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Female_White_SchoolGrade9,74,, -geoId/sch4800203,2023,Count_Student_Female_White_SchoolGrade9,0,, -geoId/sch4807380,2023,Count_Student_Female_White_SchoolGrade9,10,, -geoId/sch5500030,2023,Count_Student_Female_White_SchoolGrade9,7,, -geoId/sch0400998,2023,Count_Student_Male_White_SchoolGrade9,10,, -geoId/sch1700105,2023,Count_Student_Male_White_SchoolGrade9,11,, -geoId/sch1800046,2023,Count_Student_Male_White_SchoolGrade9,0,, -geoId/sch2700106,2023,Count_Student_Male_White_SchoolGrade9,35,, -geoId/sch4200091,2023,Count_Student_Male_White_SchoolGrade9,88,, -geoId/sch4280010,2023,Count_Student_Male_White_SchoolGrade9,0,, -geoId/sch4500690,2023,Count_Student_Male_White_SchoolGrade9,77,, -geoId/sch4800203,2023,Count_Student_Male_White_SchoolGrade9,2,, -geoId/sch4807380,2023,Count_Student_Male_White_SchoolGrade9,9,, -geoId/sch5500030,2023,Count_Student_Male_White_SchoolGrade9,19,, -geoId/sch1700105,2023,Count_Faculty_ElementarySchoolCounselor,0.3,, -geoId/sch1800046,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch3700372,2023,Count_Faculty_ElementarySchoolCounselor,1.25,, -geoId/sch3900305,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch3901480,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch4500690,2023,Count_Faculty_ElementarySchoolCounselor,7,, -geoId/sch4800095,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch4800203,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch4801453,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch4807380,2023,Count_Faculty_ElementarySchoolCounselor,0,, -geoId/sch5500030,2023,Count_Faculty_ElementarySchoolCounselor,0.7,, -geoId/sch1700024,2023,Count_Teacher_ElementaryTeacher,33.45,, -geoId/sch1700105,2023,Count_Teacher_ElementaryTeacher,19.95,, -geoId/sch1800046,2023,Count_Teacher_ElementaryTeacher,31.39,, -geoId/sch2700106,2023,Count_Teacher_ElementaryTeacher,30.05,, -geoId/sch3500187,2023,Count_Teacher_ElementaryTeacher,6.4,, -geoId/sch3700372,2023,Count_Teacher_ElementaryTeacher,26.41,, -geoId/sch3900305,2023,Count_Teacher_ElementaryTeacher,20.29,, -geoId/sch3901480,2023,Count_Teacher_ElementaryTeacher,3.71,, -geoId/sch4200091,2023,Count_Teacher_ElementaryTeacher,0.2,, -geoId/sch4500690,2023,Count_Teacher_ElementaryTeacher,124.8,, -geoId/sch4800095,2023,Count_Teacher_ElementaryTeacher,22.46,, -geoId/sch4800203,2023,Count_Teacher_ElementaryTeacher,23.96,, -geoId/sch4801453,2023,Count_Teacher_ElementaryTeacher,2.02,, -geoId/sch4807380,2023,Count_Teacher_ElementaryTeacher,8.34,, -geoId/sch5500030,2023,Count_Teacher_ElementaryTeacher,17.91,, -geoId/sch1700024,2023,Count_Teacher,56.45,, -geoId/sch1700105,2023,Count_Teacher,34.5,, -geoId/sch1800046,2023,Count_Teacher,100,, -geoId/sch2700106,2023,Count_Teacher,63.67,, -geoId/sch3500187,2023,Count_Teacher,32.5,, -geoId/sch3700372,2023,Count_Teacher,29.32,, -geoId/sch3900305,2023,Count_Teacher,38,, -geoId/sch3901480,2023,Count_Teacher,5,, -geoId/sch4200091,2023,Count_Teacher,51.45,, -geoId/sch4280010,2023,Count_Teacher,34,, -geoId/sch4500690,2023,Count_Teacher,212.8,, -geoId/sch4800095,2023,Count_Teacher,39.91,, -geoId/sch4800203,2023,Count_Teacher,101.45,, -geoId/sch4801453,2023,Count_Teacher,10.27,, -geoId/sch4807380,2023,Count_Teacher,24.43,, -geoId/sch5500030,2023,Count_Teacher,41.48,, -geoId/sch1700105,2023,Count_Teacher_Kindergarten,2,, -geoId/sch1800046,2023,Count_Teacher_Kindergarten,6.17,, -geoId/sch2700106,2023,Count_Teacher_Kindergarten,3,, -geoId/sch3700372,2023,Count_Teacher_Kindergarten,2.91,, -geoId/sch3900305,2023,Count_Teacher_Kindergarten,3.71,, -geoId/sch3901480,2023,Count_Teacher_Kindergarten,1.29,, -geoId/sch4500690,2023,Count_Teacher_Kindergarten,11,, -geoId/sch4800095,2023,Count_Teacher_Kindergarten,4.18,, -geoId/sch4800203,2023,Count_Teacher_Kindergarten,4.03,, -geoId/sch4801453,2023,Count_Teacher_Kindergarten,0,, -geoId/sch4807380,2023,Count_Teacher_Kindergarten,0.19,, -geoId/sch5500030,2023,Count_Teacher_Kindergarten,2.1,, -geoId/sch1700024,2023,Count_Faculty_LEAAdministrativeSupportStaff,58.5,, -geoId/sch1700105,2023,Count_Faculty_LEAAdministrativeSupportStaff,41,, -geoId/sch1800046,2023,Count_Faculty_LEAAdministrativeSupportStaff,4,, -geoId/sch2700106,2023,Count_Faculty_LEAAdministrativeSupportStaff,2,, -geoId/sch3500187,2023,Count_Faculty_LEAAdministrativeSupportStaff,1,, -geoId/sch3700372,2023,Count_Faculty_LEAAdministrativeSupportStaff,6.53,, -geoId/sch3900305,2023,Count_Faculty_LEAAdministrativeSupportStaff,12.5,, -geoId/sch3901480,2023,Count_Faculty_LEAAdministrativeSupportStaff,2,, -geoId/sch4200091,2023,Count_Faculty_LEAAdministrativeSupportStaff,9,, -geoId/sch4280010,2023,Count_Faculty_LEAAdministrativeSupportStaff,0,, -geoId/sch4500690,2023,Count_Faculty_LEAAdministrativeSupportStaff,19,, -geoId/sch4800095,2023,Count_Faculty_LEAAdministrativeSupportStaff,7.07,, -geoId/sch4800203,2023,Count_Faculty_LEAAdministrativeSupportStaff,17.86,, -geoId/sch4801453,2023,Count_Faculty_LEAAdministrativeSupportStaff,0,, -geoId/sch4807380,2023,Count_Faculty_LEAAdministrativeSupportStaff,1.7,, -geoId/sch5500030,2023,Count_Faculty_LEAAdministrativeSupportStaff,2,, -geoId/sch1700024,2023,Count_Faculty_LEAAdministrator,0,, -geoId/sch1700105,2023,Count_Faculty_LEAAdministrator,1,, -geoId/sch1800046,2023,Count_Faculty_LEAAdministrator,4,, -geoId/sch2700106,2023,Count_Faculty_LEAAdministrator,0.43,, -geoId/sch3500187,2023,Count_Faculty_LEAAdministrator,0.7,, -geoId/sch3700372,2023,Count_Faculty_LEAAdministrator,1,, -geoId/sch3900305,2023,Count_Faculty_LEAAdministrator,4.5,, -geoId/sch3901480,2023,Count_Faculty_LEAAdministrator,1,, -geoId/sch4200091,2023,Count_Faculty_LEAAdministrator,3.05,, -geoId/sch4280010,2023,Count_Faculty_LEAAdministrator,2.15,, -geoId/sch4500690,2023,Count_Faculty_LEAAdministrator,7,, -geoId/sch4800095,2023,Count_Faculty_LEAAdministrator,1.4,, -geoId/sch4800203,2023,Count_Faculty_LEAAdministrator,3,, -geoId/sch4801453,2023,Count_Faculty_LEAAdministrator,2.6,, -geoId/sch4807380,2023,Count_Faculty_LEAAdministrator,2,, -geoId/sch5500030,2023,Count_Faculty_LEAAdministrator,1.33,, -geoId/sch3700372,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch3900305,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch3901480,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch4200091,2023,Count_Faculty_SchoolOtherGuidanceCounselor,6,, -geoId/sch4280010,2023,Count_Faculty_SchoolOtherGuidanceCounselor,2,, -geoId/sch4800095,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch4800203,2023,Count_Faculty_SchoolOtherGuidanceCounselor,3,, -geoId/sch4801453,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch4807380,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0.75,, -geoId/sch5500030,2023,Count_Faculty_SchoolOtherGuidanceCounselor,0,, -geoId/sch1700024,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,90,, -geoId/sch1700105,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,13.5,, -geoId/sch1800046,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,37,, -geoId/sch2700106,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,25.19,, -geoId/sch3500187,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,8,, -geoId/sch3700372,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,12.24,, -geoId/sch3900305,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,4,, -geoId/sch3901480,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,0,, -geoId/sch4200091,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,24,, -geoId/sch4280010,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,10,, -geoId/sch4500690,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,66,, -geoId/sch4800095,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,11.82,, -geoId/sch4800203,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,25.66,, -geoId/sch4801453,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,2,, -geoId/sch4807380,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,7.43,, -geoId/sch5500030,2023,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,17.37,, -geoId/sch1700024,2023,Count_Teacher_PreKindergarten,4,, -geoId/sch1700105,2023,Count_Teacher_PreKindergarten,1,, -geoId/sch1800046,2023,Count_Teacher_PreKindergarten,0,, -geoId/sch2700106,2023,Count_Teacher_PreKindergarten,3.2,, -geoId/sch3900305,2023,Count_Teacher_PreKindergarten,0,, -geoId/sch3901480,2023,Count_Teacher_PreKindergarten,0,, -geoId/sch4500690,2023,Count_Teacher_PreKindergarten,6,, -geoId/sch4800095,2023,Count_Teacher_PreKindergarten,6.48,, -geoId/sch4800203,2023,Count_Teacher_PreKindergarten,7.27,, -geoId/sch4801453,2023,Count_Teacher_PreKindergarten,0,, -geoId/sch4807380,2023,Count_Teacher_PreKindergarten,1,, -geoId/sch5500030,2023,Count_Teacher_PreKindergarten,3.1,, -geoId/sch1700105,2023,Percent_Student_AsAFractionOf_Count_Teacher,9.51,, -geoId/sch1800046,2023,Percent_Student_AsAFractionOf_Count_Teacher,12.13,, -geoId/sch2700106,2023,Percent_Student_AsAFractionOf_Count_Teacher,13.82,, -geoId/sch3500187,2023,Percent_Student_AsAFractionOf_Count_Teacher,11.63,, -geoId/sch3700372,2023,Percent_Student_AsAFractionOf_Count_Teacher,14.94,, -geoId/sch3900305,2023,Percent_Student_AsAFractionOf_Count_Teacher,9.63,, -geoId/sch3901480,2023,Percent_Student_AsAFractionOf_Count_Teacher,17.4,, -geoId/sch4200091,2023,Percent_Student_AsAFractionOf_Count_Teacher,21.44,, -geoId/sch4280010,2023,Percent_Student_AsAFractionOf_Count_Teacher,0.15,, -geoId/sch4500690,2023,Percent_Student_AsAFractionOf_Count_Teacher,13.17,, -geoId/sch4800095,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.49,, -geoId/sch4800203,2023,Percent_Student_AsAFractionOf_Count_Teacher,16.25,, -geoId/sch4801453,2023,Percent_Student_AsAFractionOf_Count_Teacher,14.61,, -geoId/sch4807380,2023,Percent_Student_AsAFractionOf_Count_Teacher,11.63,, -geoId/sch5500030,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.65,, -geoId/sch1700024,2023,Count_Faculty_SchoolAdministrativeSupportStaff,4,, -geoId/sch1700105,2023,Count_Faculty_SchoolAdministrativeSupportStaff,3,, -geoId/sch1800046,2023,Count_Faculty_SchoolAdministrativeSupportStaff,6,, -geoId/sch2700106,2023,Count_Faculty_SchoolAdministrativeSupportStaff,1,, -geoId/sch3500187,2023,Count_Faculty_SchoolAdministrativeSupportStaff,2,, -geoId/sch3700372,2023,Count_Faculty_SchoolAdministrativeSupportStaff,0,, -geoId/sch3900305,2023,Count_Faculty_SchoolAdministrativeSupportStaff,0,, -geoId/sch3901480,2023,Count_Faculty_SchoolAdministrativeSupportStaff,0,, -geoId/sch4200091,2023,Count_Faculty_SchoolAdministrativeSupportStaff,12,, -geoId/sch4280010,2023,Count_Faculty_SchoolAdministrativeSupportStaff,9,, -geoId/sch4500690,2023,Count_Faculty_SchoolAdministrativeSupportStaff,11,, -geoId/sch4800095,2023,Count_Faculty_SchoolAdministrativeSupportStaff,3.35,, -geoId/sch4800203,2023,Count_Faculty_SchoolAdministrativeSupportStaff,13,, -geoId/sch4801453,2023,Count_Faculty_SchoolAdministrativeSupportStaff,1,, -geoId/sch4807380,2023,Count_Faculty_SchoolAdministrativeSupportStaff,0.5,, -geoId/sch5500030,2023,Count_Faculty_SchoolAdministrativeSupportStaff,3.4,, -geoId/sch1700024,2023,Count_Faculty_SchoolAdministrator,10,, -geoId/sch1700105,2023,Count_Faculty_SchoolAdministrator,2,, -geoId/sch1800046,2023,Count_Faculty_SchoolAdministrator,9,, -geoId/sch2700106,2023,Count_Faculty_SchoolAdministrator,3,, -geoId/sch3500187,2023,Count_Faculty_SchoolAdministrator,0.8,, -geoId/sch3700372,2023,Count_Faculty_SchoolAdministrator,2,, -geoId/sch3900305,2023,Count_Faculty_SchoolAdministrator,0,, -geoId/sch3901480,2023,Count_Faculty_SchoolAdministrator,0,, -geoId/sch4200091,2023,Count_Faculty_SchoolAdministrator,5.95,, -geoId/sch4280010,2023,Count_Faculty_SchoolAdministrator,2.85,, -geoId/sch4500690,2023,Count_Faculty_SchoolAdministrator,12,, -geoId/sch4800095,2023,Count_Faculty_SchoolAdministrator,0.41,, -geoId/sch4800203,2023,Count_Faculty_SchoolAdministrator,20.81,, -geoId/sch4801453,2023,Count_Faculty_SchoolAdministrator,0.5,, -geoId/sch4807380,2023,Count_Faculty_SchoolAdministrator,1,, -geoId/sch5500030,2023,Count_Faculty_SchoolAdministrator,1.7,, -geoId/sch1700105,2023,Count_Faculty_SchoolPsychologist,0.2,, -geoId/sch1800046,2023,Count_Faculty_SchoolPsychologist,2,, -geoId/sch2700106,2023,Count_Faculty_SchoolPsychologist,0.63,, -geoId/sch3700372,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch3900305,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch3901480,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4200091,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4280010,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4500690,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4800095,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4800203,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4801453,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch4807380,2023,Count_Faculty_SchoolPsychologist,0,, -geoId/sch5500030,2023,Count_Faculty_SchoolPsychologist,1,, -geoId/sch1700105,2023,Count_Faculty_SecondarySchoolCounselor,0.7,, -geoId/sch1800046,2023,Count_Faculty_SecondarySchoolCounselor,3,, -geoId/sch2700106,2023,Count_Faculty_SecondarySchoolCounselor,2.83,, -geoId/sch3700372,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch3900305,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch3901480,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch4500690,2023,Count_Faculty_SecondarySchoolCounselor,6,, -geoId/sch4800095,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch4800203,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch4801453,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch4807380,2023,Count_Faculty_SecondarySchoolCounselor,0,, -geoId/sch5500030,2023,Count_Faculty_SecondarySchoolCounselor,0.7,, -geoId/sch1700024,2023,Count_Teacher_SecondaryTeacher,19,, -geoId/sch1700105,2023,Count_Teacher_SecondaryTeacher,11.55,, -geoId/sch1800046,2023,Count_Teacher_SecondaryTeacher,62.44,, -geoId/sch2700106,2023,Count_Teacher_SecondaryTeacher,22.21,, -geoId/sch3500187,2023,Count_Teacher_SecondaryTeacher,20.4,, -geoId/sch3700372,2023,Count_Teacher_SecondaryTeacher,0,, -geoId/sch3900305,2023,Count_Teacher_SecondaryTeacher,6.5,, -geoId/sch3901480,2023,Count_Teacher_SecondaryTeacher,0,, -geoId/sch4200091,2023,Count_Teacher_SecondaryTeacher,43.75,, -geoId/sch4280010,2023,Count_Teacher_SecondaryTeacher,29,, -geoId/sch4500690,2023,Count_Teacher_SecondaryTeacher,71,, -geoId/sch4800095,2023,Count_Teacher_SecondaryTeacher,3.33,, -geoId/sch4800203,2023,Count_Teacher_SecondaryTeacher,44.84,, -geoId/sch4801453,2023,Count_Teacher_SecondaryTeacher,5.37,, -geoId/sch4807380,2023,Count_Teacher_SecondaryTeacher,14.12,, -geoId/sch5500030,2023,Count_Teacher_SecondaryTeacher,18.28,, -geoId/sch1700024,2023,Count_Student_StudentSupportServicesStaff,33,, -geoId/sch1700105,2023,Count_Student_StudentSupportServicesStaff,0.8,, -geoId/sch1800046,2023,Count_Student_StudentSupportServicesStaff,13,, -geoId/sch2700106,2023,Count_Student_StudentSupportServicesStaff,10.69,, -geoId/sch3500187,2023,Count_Student_StudentSupportServicesStaff,4.8,, -geoId/sch3700372,2023,Count_Student_StudentSupportServicesStaff,4.74,, -geoId/sch3900305,2023,Count_Student_StudentSupportServicesStaff,7,, -geoId/sch3901480,2023,Count_Student_StudentSupportServicesStaff,4,, -geoId/sch4200091,2023,Count_Student_StudentSupportServicesStaff,7.75,, -geoId/sch4280010,2023,Count_Student_StudentSupportServicesStaff,6,, -geoId/sch4500690,2023,Count_Student_StudentSupportServicesStaff,12,, -geoId/sch4800095,2023,Count_Student_StudentSupportServicesStaff,1.35,, -geoId/sch4800203,2023,Count_Student_StudentSupportServicesStaff,11.97,, -geoId/sch4801453,2023,Count_Student_StudentSupportServicesStaff,1,, -geoId/sch4807380,2023,Count_Student_StudentSupportServicesStaff,0,, -geoId/sch5500030,2023,Count_Student_StudentSupportServicesStaff,16,, -geoId/sch1700105,2023,Count_Faculty_TotalGuidanceCounselor,1,, -geoId/sch1800046,2023,Count_Faculty_TotalGuidanceCounselor,3,, -geoId/sch2700106,2023,Count_Faculty_TotalGuidanceCounselor,2.83,, -geoId/sch3700372,2023,Count_Faculty_TotalGuidanceCounselor,1.25,, -geoId/sch3900305,2023,Count_Faculty_TotalGuidanceCounselor,0,, -geoId/sch3901480,2023,Count_Faculty_TotalGuidanceCounselor,0,, -geoId/sch4200091,2023,Count_Faculty_TotalGuidanceCounselor,6,, -geoId/sch4280010,2023,Count_Faculty_TotalGuidanceCounselor,2,, -geoId/sch4500690,2023,Count_Faculty_TotalGuidanceCounselor,13,, -geoId/sch4800095,2023,Count_Faculty_TotalGuidanceCounselor,0,, -geoId/sch4800203,2023,Count_Faculty_TotalGuidanceCounselor,3,, -geoId/sch4801453,2023,Count_Faculty_TotalGuidanceCounselor,0,, -geoId/sch4807380,2023,Count_Faculty_TotalGuidanceCounselor,0.75,, -geoId/sch5500030,2023,Count_Faculty_TotalGuidanceCounselor,1.4,, -geoId/sch2700106,2023,Count_Teacher_UngradedTeacher,5.21,, -geoId/sch3500187,2023,Count_Teacher_UngradedTeacher,5.7,, -geoId/sch3900305,2023,Count_Teacher_UngradedTeacher,7.5,, -geoId/sch3901480,2023,Count_Teacher_UngradedTeacher,0,, -geoId/sch4200091,2023,Count_Teacher_UngradedTeacher,7.5,, -geoId/sch4280010,2023,Count_Teacher_UngradedTeacher,5,, -geoId/sch4800095,2023,Count_Teacher_UngradedTeacher,3.46,, -geoId/sch4800203,2023,Count_Teacher_UngradedTeacher,21.35,, -geoId/sch4801453,2023,Count_Teacher_UngradedTeacher,2.88,, -geoId/sch4807380,2023,Count_Teacher_UngradedTeacher,0.78,, -geoId/sch5500030,2023,Count_Teacher_UngradedTeacher,0.09,, +geoId/sch0400998,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,4.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,3.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,4.0,, +geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,5.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4200091,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4280010,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,3.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4801453,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400998,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,3.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,5.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,2.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,2.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4200091,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4280010,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,3.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4801453,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative,7.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative,8.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative,5.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative,7.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative,2.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative,6.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400998,2025,Count_Student_Female_Asian,1.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian,20.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian,4.0,, +geoId/sch3500187,2025,Count_Student_Female_Asian,2.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian,3.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian,0.0,, +geoId/sch4200091,2025,Count_Student_Female_Asian,10.0,, +geoId/sch4280010,2025,Count_Student_Female_Asian,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian,3.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian,4.0,, +geoId/sch4801453,2025,Count_Student_Female_Asian,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian,12.0,, +geoId/sch0400998,2025,Count_Student_Male_Asian,3.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian,18.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian,1.0,, +geoId/sch3500187,2025,Count_Student_Male_Asian,1.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian,4.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian,2.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian,2.0,, +geoId/sch4200091,2025,Count_Student_Male_Asian,7.0,, +geoId/sch4280010,2025,Count_Student_Male_Asian,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian,6.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian,2.0,, +geoId/sch4801453,2025,Count_Student_Male_Asian,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian,15.0,, +geoId/sch0400998,2025,Count_Student_Asian,4.0,, +geoId/sch1700105,2025,Count_Student_Asian,0.0,, +geoId/sch1800046,2025,Count_Student_Asian,0.0,, +geoId/sch2500051,2025,Count_Student_Asian,38.0,, +geoId/sch2700106,2025,Count_Student_Asian,5.0,, +geoId/sch3500187,2025,Count_Student_Asian,3.0,, +geoId/sch3700372,2025,Count_Student_Asian,7.0,, +geoId/sch3900305,2025,Count_Student_Asian,2.0,, +geoId/sch3901480,2025,Count_Student_Asian,2.0,, +geoId/sch4200091,2025,Count_Student_Asian,17.0,, +geoId/sch4280010,2025,Count_Student_Asian,0.0,, +geoId/sch4500690,2025,Count_Student_Asian,9.0,, +geoId/sch4800203,2025,Count_Student_Asian,6.0,, +geoId/sch4801453,2025,Count_Student_Asian,0.0,, +geoId/sch4807380,2025,Count_Student_Asian,0.0,, +geoId/sch5500030,2025,Count_Student_Asian,27.0,, +geoId/sch0400998,2025,Count_Student_Female_Black,20.0,, +geoId/sch1700105,2025,Count_Student_Female_Black,1.0,, +geoId/sch1800046,2025,Count_Student_Female_Black,564.0,, +geoId/sch2500051,2025,Count_Student_Female_Black,440.0,, +geoId/sch2700106,2025,Count_Student_Female_Black,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Black,6.0,, +geoId/sch3700372,2025,Count_Student_Female_Black,153.0,, +geoId/sch3900305,2025,Count_Student_Female_Black,100.0,, +geoId/sch3901480,2025,Count_Student_Female_Black,24.0,, +geoId/sch4200091,2025,Count_Student_Female_Black,77.0,, +geoId/sch4280010,2025,Count_Student_Female_Black,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Black,423.0,, +geoId/sch4800203,2025,Count_Student_Female_Black,24.0,, +geoId/sch4801453,2025,Count_Student_Female_Black,58.0,, +geoId/sch4807380,2025,Count_Student_Female_Black,1.0,, +geoId/sch5500030,2025,Count_Student_Female_Black,1.0,, +geoId/sch0400998,2025,Count_Student_Male_Black,24.0,, +geoId/sch1700105,2025,Count_Student_Male_Black,1.0,, +geoId/sch1800046,2025,Count_Student_Male_Black,524.0,, +geoId/sch2500051,2025,Count_Student_Male_Black,357.0,, +geoId/sch2700106,2025,Count_Student_Male_Black,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Black,11.0,, +geoId/sch3700372,2025,Count_Student_Male_Black,170.0,, +geoId/sch3900305,2025,Count_Student_Male_Black,108.0,, +geoId/sch3901480,2025,Count_Student_Male_Black,25.0,, +geoId/sch4200091,2025,Count_Student_Male_Black,79.0,, +geoId/sch4280010,2025,Count_Student_Male_Black,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Black,470.0,, +geoId/sch4800203,2025,Count_Student_Male_Black,30.0,, +geoId/sch4801453,2025,Count_Student_Male_Black,50.0,, +geoId/sch4807380,2025,Count_Student_Male_Black,2.0,, +geoId/sch5500030,2025,Count_Student_Male_Black,1.0,, +geoId/sch0400998,2025,Count_Student_Black,44.0,, +geoId/sch1700105,2025,Count_Student_Black,2.0,, +geoId/sch1800046,2025,Count_Student_Black,1088.0,, +geoId/sch2500051,2025,Count_Student_Black,797.0,, +geoId/sch2700106,2025,Count_Student_Black,0.0,, +geoId/sch3500187,2025,Count_Student_Black,17.0,, +geoId/sch3700372,2025,Count_Student_Black,323.0,, +geoId/sch3900305,2025,Count_Student_Black,208.0,, +geoId/sch3901480,2025,Count_Student_Black,49.0,, +geoId/sch4200091,2025,Count_Student_Black,156.0,, +geoId/sch4280010,2025,Count_Student_Black,0.0,, +geoId/sch4500690,2025,Count_Student_Black,893.0,, +geoId/sch4800203,2025,Count_Student_Black,54.0,, +geoId/sch4801453,2025,Count_Student_Black,108.0,, +geoId/sch4807380,2025,Count_Student_Black,3.0,, +geoId/sch5500030,2025,Count_Student_Black,2.0,, +geoId/sch0400998,2025,Count_Student_Female,159.0,, +geoId/sch1700105,2025,Count_Student_Female,161.0,, +geoId/sch1800046,2025,Count_Student_Female,618.0,, +geoId/sch2500051,2025,Count_Student_Female,765.0,, +geoId/sch2700106,2025,Count_Student_Female,412.0,, +geoId/sch3500187,2025,Count_Student_Female,183.0,, +geoId/sch3700372,2025,Count_Student_Female,205.0,, +geoId/sch3900305,2025,Count_Student_Female,118.0,, +geoId/sch3901480,2025,Count_Student_Female,47.0,, +geoId/sch4200091,2025,Count_Student_Female,542.0,, +geoId/sch4280010,2025,Count_Student_Female,3.0,, +geoId/sch4500690,2025,Count_Student_Female,1304.0,, +geoId/sch4800203,2025,Count_Student_Female,811.0,, +geoId/sch4801453,2025,Count_Student_Female,96.0,, +geoId/sch4807380,2025,Count_Student_Female,128.0,, +geoId/sch5500030,2025,Count_Student_Female,392.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade1,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade1,87.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade1,123.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade1,75.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade1,16.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade1,45.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade1,31.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade1,19.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade1,227.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade1,117.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade1,19.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade1,50.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade10,59.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade10,19.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade10,87.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade10,85.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade10,76.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade10,193.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade10,2.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade10,209.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade10,146.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade10,11.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade10,25.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade10,51.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade11,75.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade11,29.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade11,88.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade11,80.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade11,56.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade11,245.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade11,4.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade11,186.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade11,110.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade11,17.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade11,69.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade12,41.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade12,27.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade12,87.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade12,76.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade12,68.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade12,206.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade12,1.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade12,204.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade12,113.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade12,19.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade12,80.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade2,20.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade2,101.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade2,125.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade2,70.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade2,24.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade2,48.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade2,23.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade2,17.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade2,180.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade2,92.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade2,23.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade2,62.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade3,23.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade3,82.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade3,127.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade3,62.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade3,22.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade3,53.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade3,37.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade3,18.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade3,206.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade3,98.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade3,20.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade3,46.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade4,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade4,81.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade4,130.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade4,63.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade4,38.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade4,40.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade4,25.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade4,5.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade4,188.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade4,112.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade4,23.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade4,53.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade5,22.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade5,98.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade5,128.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade5,72.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade5,44.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade5,44.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade5,28.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade5,9.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade5,200.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade5,113.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade5,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade5,52.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade6,55.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade6,22.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade6,67.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade6,128.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade6,62.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade6,70.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade6,49.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade6,26.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade6,16.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade6,20.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade6,211.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade6,115.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade6,51.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade6,16.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade6,56.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade7,40.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade7,24.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade7,93.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade7,111.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade7,67.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade7,86.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade7,54.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade7,19.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade7,53.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade7,184.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade7,144.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade7,48.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade7,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade7,63.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade8,39.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade8,84.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade8,108.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade8,60.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade8,71.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade8,36.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade8,77.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade8,210.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade8,137.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade8,57.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade8,57.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade9,61.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade9,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade9,118.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade9,80.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade9,63.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade9,202.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade9,243.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade9,140.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade9,36.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade9,26.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade9,48.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade1To8,134.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade1To8,174.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade1To8,693.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade1To8,980.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade1To8,531.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade1To8,371.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade1To8,369.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade1To8,210.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade1To8,84.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade1To8,150.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade1To8,1606.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade1To8,928.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade1To8,156.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade1To8,164.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade1To8,439.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade9To12,236.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade9To12,96.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade9To12,380.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade9To12,321.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade9To12,263.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade9To12,846.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade9To12,7.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade9To12,842.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade9To12,509.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade9To12,47.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade9To12,87.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade9To12,248.0,, +geoId/sch0400998,2025,Count_Student_Female_HispanicOrLatino,67.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino,1.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino,37.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino,175.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino,64.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino,29.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino,38.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino,10.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino,4.0,, +geoId/sch4200091,2025,Count_Student_Female_HispanicOrLatino,42.0,, +geoId/sch4280010,2025,Count_Student_Female_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino,32.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino,765.0,, +geoId/sch4801453,2025,Count_Student_Female_HispanicOrLatino,34.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino,20.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino,261.0,, +geoId/sch0400998,2025,Count_Student_Male_HispanicOrLatino,87.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino,7.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino,27.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino,172.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino,60.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino,30.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino,30.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino,4.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino,3.0,, +geoId/sch4200091,2025,Count_Student_Male_HispanicOrLatino,36.0,, +geoId/sch4280010,2025,Count_Student_Male_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino,45.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino,820.0,, +geoId/sch4801453,2025,Count_Student_Male_HispanicOrLatino,45.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino,29.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino,268.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino,154.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino,8.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino,64.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino,347.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino,124.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino,59.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino,68.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino,14.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino,7.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino,78.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino,77.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino,1585.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino,79.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino,49.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino,529.0,, +geoId/sch1700105,2025,Count_Student_Kindergarten,16.0,, +geoId/sch1800046,2025,Count_Student_Kindergarten,107.0,, +geoId/sch2500051,2025,Count_Student_Kindergarten,125.0,, +geoId/sch2700106,2025,Count_Student_Kindergarten,69.0,, +geoId/sch3700372,2025,Count_Student_Kindergarten,52.0,, +geoId/sch3900305,2025,Count_Student_Kindergarten,37.0,, +geoId/sch3901480,2025,Count_Student_Kindergarten,23.0,, +geoId/sch4500690,2025,Count_Student_Kindergarten,196.0,, +geoId/sch4800203,2025,Count_Student_Kindergarten,94.0,, +geoId/sch4807380,2025,Count_Student_Kindergarten,21.0,, +geoId/sch5500030,2025,Count_Student_Kindergarten,52.0,, +geoId/sch0400998,2025,Count_Student_Male,211.0,, +geoId/sch1700105,2025,Count_Student_Male,153.0,, +geoId/sch1800046,2025,Count_Student_Male,562.0,, +geoId/sch2500051,2025,Count_Student_Male,661.0,, +geoId/sch2700106,2025,Count_Student_Male,481.0,, +geoId/sch3500187,2025,Count_Student_Male,188.0,, +geoId/sch3700372,2025,Count_Student_Male,216.0,, +geoId/sch3900305,2025,Count_Student_Male,129.0,, +geoId/sch3901480,2025,Count_Student_Male,60.0,, +geoId/sch4200091,2025,Count_Student_Male,454.0,, +geoId/sch4280010,2025,Count_Student_Male,4.0,, +geoId/sch4500690,2025,Count_Student_Male,1441.0,, +geoId/sch4800203,2025,Count_Student_Male,867.0,, +geoId/sch4801453,2025,Count_Student_Male,107.0,, +geoId/sch4807380,2025,Count_Student_Male,156.0,, +geoId/sch5500030,2025,Count_Student_Male,407.0,, +geoId/sch0400998,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4280010,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400998,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,2.0,, +geoId/sch4280010,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1700105,2025,Count_Student_PreKindergarten,28.0,, +geoId/sch2700106,2025,Count_Student_PreKindergarten,30.0,, +geoId/sch4500690,2025,Count_Student_PreKindergarten,102.0,, +geoId/sch4800203,2025,Count_Student_PreKindergarten,147.0,, +geoId/sch4807380,2025,Count_Student_PreKindergarten,12.0,, +geoId/sch5500030,2025,Count_Student_PreKindergarten,60.0,, +geoId/sch0400998,2025,Count_Student,370.0,, +geoId/sch1700105,2025,Count_Student,314.0,, +geoId/sch1800046,2025,Count_Student,1180.0,, +geoId/sch2500051,2025,Count_Student,1426.0,, +geoId/sch2700106,2025,Count_Student,893.0,, +geoId/sch3500187,2025,Count_Student,371.0,, +geoId/sch3700372,2025,Count_Student,421.0,, +geoId/sch3900305,2025,Count_Student,247.0,, +geoId/sch3901480,2025,Count_Student,107.0,, +geoId/sch4200091,2025,Count_Student,996.0,, +geoId/sch4280010,2025,Count_Student,7.0,, +geoId/sch4500690,2025,Count_Student,2746.0,, +geoId/sch4800203,2025,Count_Student,1678.0,, +geoId/sch4801453,2025,Count_Student,203.0,, +geoId/sch4807380,2025,Count_Student,284.0,, +geoId/sch5500030,2025,Count_Student,799.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces,23.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces,10.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces,26.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces,72.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces,31.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces,28.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces,13.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces,16.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces,13.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces,76.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces,2.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces,80.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces,6.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces,10.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces,7.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces,15.0,, +geoId/sch0400998,2025,Count_Student_Female_White,55.0,, +geoId/sch1700105,2025,Count_Student_Female_White,154.0,, +geoId/sch1800046,2025,Count_Student_Female_White,1.0,, +geoId/sch2500051,2025,Count_Student_Female_White,92.0,, +geoId/sch2700106,2025,Count_Student_Female_White,324.0,, +geoId/sch3500187,2025,Count_Student_Female_White,125.0,, +geoId/sch3700372,2025,Count_Student_Female_White,2.0,, +geoId/sch3900305,2025,Count_Student_Female_White,3.0,, +geoId/sch3901480,2025,Count_Student_Female_White,11.0,, +geoId/sch4200091,2025,Count_Student_Female_White,361.0,, +geoId/sch4280010,2025,Count_Student_Female_White,2.0,, +geoId/sch4500690,2025,Count_Student_Female_White,801.0,, +geoId/sch4800203,2025,Count_Student_Female_White,15.0,, +geoId/sch4801453,2025,Count_Student_Female_White,2.0,, +geoId/sch4807380,2025,Count_Student_Female_White,101.0,, +geoId/sch5500030,2025,Count_Student_Female_White,109.0,, +geoId/sch0400998,2025,Count_Student_Male_White,82.0,, +geoId/sch1700105,2025,Count_Student_Male_White,140.0,, +geoId/sch1800046,2025,Count_Student_Male_White,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White,71.0,, +geoId/sch2700106,2025,Count_Student_Male_White,404.0,, +geoId/sch3500187,2025,Count_Student_Male_White,132.0,, +geoId/sch3700372,2025,Count_Student_Male_White,7.0,, +geoId/sch3900305,2025,Count_Student_Male_White,2.0,, +geoId/sch3901480,2025,Count_Student_Male_White,25.0,, +geoId/sch4200091,2025,Count_Student_Male_White,304.0,, +geoId/sch4280010,2025,Count_Student_Male_White,3.0,, +geoId/sch4500690,2025,Count_Student_Male_White,878.0,, +geoId/sch4800203,2025,Count_Student_Male_White,11.0,, +geoId/sch4801453,2025,Count_Student_Male_White,4.0,, +geoId/sch4807380,2025,Count_Student_Male_White,124.0,, +geoId/sch5500030,2025,Count_Student_Male_White,117.0,, +geoId/sch0400998,2025,Count_Student_White,137.0,, +geoId/sch1700105,2025,Count_Student_White,294.0,, +geoId/sch1800046,2025,Count_Student_White,1.0,, +geoId/sch2500051,2025,Count_Student_White,163.0,, +geoId/sch2700106,2025,Count_Student_White,728.0,, +geoId/sch3500187,2025,Count_Student_White,257.0,, +geoId/sch3700372,2025,Count_Student_White,9.0,, +geoId/sch3900305,2025,Count_Student_White,5.0,, +geoId/sch3901480,2025,Count_Student_White,36.0,, +geoId/sch4200091,2025,Count_Student_White,665.0,, +geoId/sch4280010,2025,Count_Student_White,5.0,, +geoId/sch4500690,2025,Count_Student_White,1679.0,, +geoId/sch4800203,2025,Count_Student_White,26.0,, +geoId/sch4801453,2025,Count_Student_White,6.0,, +geoId/sch4807380,2025,Count_Student_White,225.0,, +geoId/sch5500030,2025,Count_Student_White,226.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade1,5.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade1,2.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade1,80.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade1,58.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade1,37.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade1,26.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade1,10.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade1,87.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade1,6.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade1,5.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade1,48.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade1,12.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade1,10.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade1,6.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade1,9.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade1,108.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade1,3.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade1,38.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,4.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,3.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,8.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade1,21.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade1,10.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade1,61.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade1,2.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade1,7.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade1,123.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade1,3.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade1,16.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade1,12.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade1,15.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade1,43.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade1,67.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade1,36.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade1,8.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade1,26.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade1,12.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade1,6.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade1,116.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade1,60.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade1,5.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade1,24.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade1,6.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade1,44.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade1,56.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade1,39.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade1,8.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade1,19.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade1,19.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade1,13.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade1,111.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade1,57.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade1,14.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade1,26.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade10,29.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade10,8.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade10,50.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade10,43.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade10,33.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade10,102.0,, +geoId/sch4280010,2025,Count_Student_Female_SchoolGrade10,2.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade10,95.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade10,54.0,, +geoId/sch4801453,2025,Count_Student_Female_SchoolGrade10,3.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade10,10.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade10,19.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade10,30.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade10,11.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade10,37.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade10,42.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade10,43.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade10,91.0,, +geoId/sch4280010,2025,Count_Student_Male_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade10,114.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade10,92.0,, +geoId/sch4801453,2025,Count_Student_Male_SchoolGrade10,8.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade10,15.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade10,32.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade11,30.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade11,14.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade11,41.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade11,47.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade11,28.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade11,145.0,, +geoId/sch4280010,2025,Count_Student_Female_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade11,83.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade11,56.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade11,11.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade11,30.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade11,45.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade11,15.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade11,47.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade11,33.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade11,28.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade11,100.0,, +geoId/sch4280010,2025,Count_Student_Male_SchoolGrade11,4.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade11,103.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade11,54.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade11,6.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade11,39.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade12,13.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade12,12.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade12,51.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade12,42.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade12,27.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade12,116.0,, +geoId/sch4280010,2025,Count_Student_Female_SchoolGrade12,1.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade12,83.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade12,69.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade12,6.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade12,44.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade12,28.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade12,15.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade12,36.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade12,34.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade12,41.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade12,90.0,, +geoId/sch4280010,2025,Count_Student_Male_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade12,121.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade12,44.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade12,13.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade12,36.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade2,1.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade2,1.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade2,3.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade2,9.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade2,56.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade2,73.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade2,32.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade2,13.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade2,29.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade2,7.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade2,8.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade2,80.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade2,52.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade2,8.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade2,27.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade2,11.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade2,45.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade2,52.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade2,38.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade2,11.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade2,19.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade2,16.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade2,9.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade2,100.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade2,40.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade2,15.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade2,35.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade3,13.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade3,43.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade3,59.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade3,28.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade3,11.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade3,22.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade3,21.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade3,10.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade3,96.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade3,47.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade3,7.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade3,25.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade3,10.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade3,39.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade3,68.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade3,34.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade3,11.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade3,31.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade3,16.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade3,8.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade3,110.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade3,51.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade3,13.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade3,21.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade4,12.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade4,45.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade4,80.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade4,30.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade4,18.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade4,19.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade4,6.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade4,2.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade4,97.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade4,53.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade4,13.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade4,27.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade4,9.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade4,36.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade4,50.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade4,33.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade4,20.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade4,21.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade4,19.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade4,3.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade4,91.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade4,59.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade4,10.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade4,26.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade5,11.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade5,48.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade5,65.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade5,37.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade5,22.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade5,20.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade5,14.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade5,3.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade5,95.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade5,56.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade5,9.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade5,24.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade5,11.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade5,50.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade5,63.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade5,35.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade5,22.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade5,24.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade5,14.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade5,6.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade5,105.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade5,57.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade5,12.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade5,28.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade6,31.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade6,8.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade6,33.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade6,63.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade6,33.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade6,39.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade6,22.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade6,13.0,, +geoId/sch3901480,2025,Count_Student_Female_SchoolGrade6,8.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade6,11.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade6,96.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade6,49.0,, +geoId/sch4801453,2025,Count_Student_Female_SchoolGrade6,20.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade6,6.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade6,29.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade6,24.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade6,14.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade6,34.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade6,65.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade6,29.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade6,31.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade6,27.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade6,13.0,, +geoId/sch3901480,2025,Count_Student_Male_SchoolGrade6,8.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade6,9.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade6,115.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade6,66.0,, +geoId/sch4801453,2025,Count_Student_Male_SchoolGrade6,31.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade6,10.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade6,27.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade7,16.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade7,14.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade7,50.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade7,66.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade7,31.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade7,46.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade7,25.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade7,10.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade7,20.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade7,88.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade7,63.0,, +geoId/sch4801453,2025,Count_Student_Female_SchoolGrade7,24.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade7,14.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade7,36.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade7,24.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade7,10.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade7,43.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade7,45.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade7,36.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade7,40.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade7,29.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade7,9.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade7,33.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade7,96.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade7,81.0,, +geoId/sch4801453,2025,Count_Student_Male_SchoolGrade7,24.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade7,7.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade7,27.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade8,19.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade8,14.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade8,46.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade8,63.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade8,25.0,, +geoId/sch3500187,2025,Count_Student_Female_SchoolGrade8,26.0,, +geoId/sch3700372,2025,Count_Student_Female_SchoolGrade8,16.0,, +geoId/sch3900305,2025,Count_Student_Female_SchoolGrade8,13.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade8,45.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade8,106.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade8,57.0,, +geoId/sch4801453,2025,Count_Student_Female_SchoolGrade8,30.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade8,10.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade8,30.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade8,20.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade8,7.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade8,38.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade8,45.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade8,35.0,, +geoId/sch3500187,2025,Count_Student_Male_SchoolGrade8,45.0,, +geoId/sch3700372,2025,Count_Student_Male_SchoolGrade8,20.0,, +geoId/sch3900305,2025,Count_Student_Male_SchoolGrade8,8.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade8,32.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade8,104.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade8,80.0,, +geoId/sch4801453,2025,Count_Student_Male_SchoolGrade8,27.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade8,11.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade8,27.0,, +geoId/sch0400998,2025,Count_Student_Female_SchoolGrade9,21.0,, +geoId/sch1700105,2025,Count_Student_Female_SchoolGrade9,12.0,, +geoId/sch1800046,2025,Count_Student_Female_SchoolGrade9,61.0,, +geoId/sch2500051,2025,Count_Student_Female_SchoolGrade9,38.0,, +geoId/sch2700106,2025,Count_Student_Female_SchoolGrade9,30.0,, +geoId/sch4200091,2025,Count_Student_Female_SchoolGrade9,103.0,, +geoId/sch4280010,2025,Count_Student_Female_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_Female_SchoolGrade9,115.0,, +geoId/sch4800203,2025,Count_Student_Female_SchoolGrade9,64.0,, +geoId/sch4801453,2025,Count_Student_Female_SchoolGrade9,19.0,, +geoId/sch4807380,2025,Count_Student_Female_SchoolGrade9,11.0,, +geoId/sch5500030,2025,Count_Student_Female_SchoolGrade9,19.0,, +geoId/sch0400998,2025,Count_Student_Male_SchoolGrade9,40.0,, +geoId/sch1700105,2025,Count_Student_Male_SchoolGrade9,9.0,, +geoId/sch1800046,2025,Count_Student_Male_SchoolGrade9,57.0,, +geoId/sch2500051,2025,Count_Student_Male_SchoolGrade9,42.0,, +geoId/sch2700106,2025,Count_Student_Male_SchoolGrade9,33.0,, +geoId/sch4200091,2025,Count_Student_Male_SchoolGrade9,99.0,, +geoId/sch4280010,2025,Count_Student_Male_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_Male_SchoolGrade9,128.0,, +geoId/sch4800203,2025,Count_Student_Male_SchoolGrade9,76.0,, +geoId/sch4801453,2025,Count_Student_Male_SchoolGrade9,17.0,, +geoId/sch4807380,2025,Count_Student_Male_SchoolGrade9,15.0,, +geoId/sch5500030,2025,Count_Student_Male_SchoolGrade9,29.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,2.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_Kindergarten,1.0,, +geoId/sch2700106,2025,Count_Student_Asian_Kindergarten,1.0,, +geoId/sch3700372,2025,Count_Student_Asian_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_Asian_Kindergarten,2.0,, +geoId/sch3901480,2025,Count_Student_Asian_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_Kindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Asian_Kindergarten,1.0,, +geoId/sch4807380,2025,Count_Student_Asian_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Black_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Black_Kindergarten,101.0,, +geoId/sch2500051,2025,Count_Student_Black_Kindergarten,52.0,, +geoId/sch2700106,2025,Count_Student_Black_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Black_Kindergarten,43.0,, +geoId/sch3900305,2025,Count_Student_Black_Kindergarten,26.0,, +geoId/sch3901480,2025,Count_Student_Black_Kindergarten,11.0,, +geoId/sch4500690,2025,Count_Student_Black_Kindergarten,66.0,, +geoId/sch4800203,2025,Count_Student_Black_Kindergarten,3.0,, +geoId/sch4807380,2025,Count_Student_Black_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Black_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_Kindergarten,44.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_Kindergarten,15.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_Kindergarten,6.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_Kindergarten,88.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_Kindergarten,6.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_Kindergarten,33.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Kindergarten,7.0,, +geoId/sch1800046,2025,Count_Student_Female_Kindergarten,51.0,, +geoId/sch2500051,2025,Count_Student_Female_Kindergarten,59.0,, +geoId/sch2700106,2025,Count_Student_Female_Kindergarten,32.0,, +geoId/sch3700372,2025,Count_Student_Female_Kindergarten,26.0,, +geoId/sch3900305,2025,Count_Student_Female_Kindergarten,22.0,, +geoId/sch3901480,2025,Count_Student_Female_Kindergarten,10.0,, +geoId/sch4500690,2025,Count_Student_Female_Kindergarten,106.0,, +geoId/sch4800203,2025,Count_Student_Female_Kindergarten,51.0,, +geoId/sch4807380,2025,Count_Student_Female_Kindergarten,9.0,, +geoId/sch5500030,2025,Count_Student_Female_Kindergarten,28.0,, +geoId/sch1700105,2025,Count_Student_Male_Kindergarten,9.0,, +geoId/sch1800046,2025,Count_Student_Male_Kindergarten,56.0,, +geoId/sch2500051,2025,Count_Student_Male_Kindergarten,66.0,, +geoId/sch2700106,2025,Count_Student_Male_Kindergarten,37.0,, +geoId/sch3700372,2025,Count_Student_Male_Kindergarten,26.0,, +geoId/sch3900305,2025,Count_Student_Male_Kindergarten,15.0,, +geoId/sch3901480,2025,Count_Student_Male_Kindergarten,13.0,, +geoId/sch4500690,2025,Count_Student_Male_Kindergarten,89.0,, +geoId/sch4800203,2025,Count_Student_Male_Kindergarten,43.0,, +geoId/sch4807380,2025,Count_Student_Male_Kindergarten,12.0,, +geoId/sch5500030,2025,Count_Student_Male_Kindergarten,24.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_Kindergarten,2.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_Kindergarten,11.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_Kindergarten,3.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_Kindergarten,4.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_Kindergarten,3.0,, +geoId/sch1700105,2025,Count_Student_White_Kindergarten,14.0,, +geoId/sch1800046,2025,Count_Student_White_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_White_Kindergarten,15.0,, +geoId/sch2700106,2025,Count_Student_White_Kindergarten,52.0,, +geoId/sch3700372,2025,Count_Student_White_Kindergarten,2.0,, +geoId/sch3900305,2025,Count_Student_White_Kindergarten,2.0,, +geoId/sch3901480,2025,Count_Student_White_Kindergarten,6.0,, +geoId/sch4500690,2025,Count_Student_White_Kindergarten,119.0,, +geoId/sch4800203,2025,Count_Student_White_Kindergarten,2.0,, +geoId/sch4807380,2025,Count_Student_White_Kindergarten,14.0,, +geoId/sch5500030,2025,Count_Student_White_Kindergarten,16.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Black_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Black_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Black_PreKindergarten,38.0,, +geoId/sch4800203,2025,Count_Student_Black_PreKindergarten,12.0,, +geoId/sch4807380,2025,Count_Student_Black_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Black_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_PreKindergarten,6.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_PreKindergarten,4.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_PreKindergarten,132.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_PreKindergarten,1.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_PreKindergarten,41.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_White_PreKindergarten,27.0,, +geoId/sch2700106,2025,Count_Student_White_PreKindergarten,22.0,, +geoId/sch4500690,2025,Count_Student_White_PreKindergarten,57.0,, +geoId/sch4800203,2025,Count_Student_White_PreKindergarten,3.0,, +geoId/sch4807380,2025,Count_Student_White_PreKindergarten,11.0,, +geoId/sch5500030,2025,Count_Student_White_PreKindergarten,17.0,, +geoId/sch1700105,2025,Count_Student_Female_PreKindergarten,12.0,, +geoId/sch2700106,2025,Count_Student_Female_PreKindergarten,10.0,, +geoId/sch4500690,2025,Count_Student_Female_PreKindergarten,48.0,, +geoId/sch4800203,2025,Count_Student_Female_PreKindergarten,80.0,, +geoId/sch4807380,2025,Count_Student_Female_PreKindergarten,9.0,, +geoId/sch5500030,2025,Count_Student_Female_PreKindergarten,30.0,, +geoId/sch1700105,2025,Count_Student_Male_PreKindergarten,16.0,, +geoId/sch2700106,2025,Count_Student_Male_PreKindergarten,20.0,, +geoId/sch4500690,2025,Count_Student_Male_PreKindergarten,54.0,, +geoId/sch4800203,2025,Count_Student_Male_PreKindergarten,67.0,, +geoId/sch4807380,2025,Count_Student_Male_PreKindergarten,3.0,, +geoId/sch5500030,2025,Count_Student_Male_PreKindergarten,30.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,3.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,2.0,, +geoId/sch0400998,2025,Count_Student_Female_TwoOrMoreRaces,11.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces,5.0,, +geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, +geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces,35.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, +geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, +geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces,8.0,, +geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces,5.0,, +geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces,8.0,, +geoId/sch4200091,2025,Count_Student_Female_TwoOrMoreRaces,50.0,, +geoId/sch4280010,2025,Count_Student_Female_TwoOrMoreRaces,1.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces,42.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces,3.0,, +geoId/sch4801453,2025,Count_Student_Female_TwoOrMoreRaces,2.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces,6.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces,9.0,, +geoId/sch0400998,2025,Count_Student_Male_TwoOrMoreRaces,12.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, +geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces,10.0,, +geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces,37.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces,15.0,, +geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces,12.0,, +geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, +geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces,11.0,, +geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, +geoId/sch4200091,2025,Count_Student_Male_TwoOrMoreRaces,26.0,, +geoId/sch4280010,2025,Count_Student_Male_TwoOrMoreRaces,1.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces,38.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces,3.0,, +geoId/sch4801453,2025,Count_Student_Male_TwoOrMoreRaces,8.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces,1.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces,6.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,4.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,1.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade10,2.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade10,3.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade10,1.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade10,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade10,2.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade10,8.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade10,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade10,80.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade10,60.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade10,0.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade10,39.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade10,60.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade10,4.0,, +geoId/sch4801453,2025,Count_Student_Black_SchoolGrade10,6.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade10,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade10,1.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade10,23.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade10,3.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade10,3.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade10,10.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade10,9.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade10,10.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade10,8.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade10,140.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade10,5.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade10,5.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade10,26.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade10,18.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade10,15.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade10,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade10,9.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade10,62.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade10,127.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade10,1.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade10,138.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade10,2.0,, +geoId/sch4801453,2025,Count_Student_White_SchoolGrade10,0.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade10,20.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade10,22.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade2,95.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade2,64.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade2,2.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade2,35.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade2,18.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade2,9.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade2,59.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade2,2.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade2,42.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade2,10.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade2,8.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade2,11.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade2,89.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade2,2.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade2,43.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,7.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,3.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,10.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade2,19.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade2,10.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade2,60.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade2,13.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade2,1.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade2,4.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade2,106.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade2,1.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade2,20.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade2,16.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,2.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade3,1.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade3,73.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade3,69.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade3,44.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade3,34.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade3,7.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade3,79.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade3,2.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade3,1.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade3,6.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade3,41.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade3,4.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade3,6.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade3,3.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade3,95.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade3,39.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,5.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,4.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade3,23.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade3,11.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade3,54.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade3,15.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade3,1.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade3,9.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade3,120.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade3,1.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade3,17.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade3,7.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,3.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,2.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade4,4.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade4,1.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade4,2.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade4,1.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade4,72.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade4,76.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade4,3.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade4,32.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade4,21.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade4,63.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade4,3.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade4,5.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade4,17.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade4,12.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade4,11.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade4,7.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade4,1.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade4,4.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade4,108.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade4,5.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade4,36.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,4.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,14.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,4.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,6.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade4,19.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade4,16.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade4,46.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade4,22.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade4,1.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade4,3.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade4,113.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade4,18.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade4,13.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,1.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,2.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,1.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade5,5.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade5,1.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade5,2.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade5,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade5,2.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade5,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade5,91.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade5,71.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade5,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade5,1.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade5,33.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade5,24.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade5,4.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade5,76.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade5,3.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade5,1.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade5,0.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade5,5.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade5,22.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade5,9.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade5,4.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade5,7.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade5,4.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade5,104.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade5,1.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade5,38.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,11.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,7.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,1.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade5,21.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade5,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade5,18.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade5,60.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade5,34.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade5,1.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade5,0.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade5,4.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade5,113.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade5,3.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade5,19.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade5,12.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1.0,, +geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade6,1.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade6,4.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade6,1.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade6,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade6,1.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade6,7.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade6,60.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade6,72.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade6,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade6,3.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade6,37.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade6,22.0,, +geoId/sch3901480,2025,Count_Student_Black_SchoolGrade6,8.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade6,2.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade6,65.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade6,2.0,, +geoId/sch4801453,2025,Count_Student_Black_SchoolGrade6,23.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade6,1.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade6,0.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade6,16.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade6,7.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade6,28.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade6,6.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade6,16.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade6,8.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade6,1.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade6,3.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade6,112.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade6,23.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade6,5.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade6,42.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade6,24.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade6,22.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade6,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade6,17.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade6,52.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade6,43.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade6,1.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade6,1.0,, +geoId/sch3901480,2025,Count_Student_White_SchoolGrade6,3.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade6,14.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade6,139.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade6,1.0,, +geoId/sch4801453,2025,Count_Student_White_SchoolGrade6,1.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade6,9.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade6,11.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade7,8.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade7,2.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade7,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade7,1.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade7,6.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade7,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade7,88.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade7,59.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade7,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade7,4.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade7,32.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade7,17.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade7,6.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade7,54.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade7,2.0,, +geoId/sch4801453,2025,Count_Student_Black_SchoolGrade7,22.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade7,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade7,0.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade7,18.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade7,0.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade7,3.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade7,24.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade7,6.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade7,7.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade7,14.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade7,0.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade7,8.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade7,5.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade7,137.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade7,21.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade7,5.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade7,49.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,1.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,4.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,6.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,3.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,5.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,4.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,8.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,1.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,3.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade7,12.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade7,22.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade7,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade7,14.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade7,56.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade7,70.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade7,2.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade7,0.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade7,32.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade7,116.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade7,3.0,, +geoId/sch4801453,2025,Count_Student_White_SchoolGrade7,2.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade7,15.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade7,11.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, +geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade8,2.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade8,1.0,, +geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade8,1.0,, +geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade8,1.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade8,1.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade8,1.0,, +geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade8,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade8,5.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade8,7.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade8,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade8,77.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade8,61.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade8,0.0,, +geoId/sch3500187,2025,Count_Student_Black_SchoolGrade8,4.0,, +geoId/sch3700372,2025,Count_Student_Black_SchoolGrade8,30.0,, +geoId/sch3900305,2025,Count_Student_Black_SchoolGrade8,20.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade8,14.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade8,62.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade8,3.0,, +geoId/sch4801453,2025,Count_Student_Black_SchoolGrade8,34.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade8,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade8,0.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade8,15.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade8,1.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade8,5.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade8,28.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade8,9.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade8,2.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade8,4.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade8,0.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade8,4.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade8,8.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade8,128.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade8,18.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade8,2.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade8,30.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,1.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,3.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,5.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,0.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,7.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,3.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,0.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade8,14.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade8,19.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade8,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade8,14.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade8,48.0,, +geoId/sch3500187,2025,Count_Student_White_SchoolGrade8,58.0,, +geoId/sch3700372,2025,Count_Student_White_SchoolGrade8,1.0,, +geoId/sch3900305,2025,Count_Student_White_SchoolGrade8,0.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade8,51.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade8,135.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade8,3.0,, +geoId/sch4801453,2025,Count_Student_White_SchoolGrade8,3.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade8,18.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade8,22.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,1.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade9,1.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade9,2.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade9,4.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade9,2.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade9,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade9,3.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade9,5.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade9,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade9,109.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade9,48.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade9,0.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade9,34.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade9,70.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade9,5.0,, +geoId/sch4801453,2025,Count_Student_Black_SchoolGrade9,23.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade9,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade9,1.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade9,28.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade9,1.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade9,8.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade9,11.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade9,11.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade9,19.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade9,7.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade9,132.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade9,12.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade9,8.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade9,28.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,1.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,4.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,4.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,14.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,10.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,2.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,3.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade9,23.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade9,20.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade9,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade9,15.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade9,50.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade9,130.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade9,154.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade9,1.0,, +geoId/sch4801453,2025,Count_Student_White_SchoolGrade9,0.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade9,17.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade9,13.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,1.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,4.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,4.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,16.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,1.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade11,3.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade11,4.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade11,3.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade11,1.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade11,3.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade11,8.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade11,1.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade11,84.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade11,61.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade11,30.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade11,63.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade11,3.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade11,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade11,35.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade11,1.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade11,3.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade11,12.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade11,9.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade11,24.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade11,6.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade11,106.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade11,3.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade11,41.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,1.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,2.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,15.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade11,29.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade11,27.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade11,0.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade11,4.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade11,46.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade11,171.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade11,3.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade11,112.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade11,0.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade11,13.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade11,25.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1.0,, +geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade12,2.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade12,6.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade12,5.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade12,3.0,, +geoId/sch1700105,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade12,78.0,, +geoId/sch2500051,2025,Count_Student_Black_SchoolGrade12,46.0,, +geoId/sch2700106,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade12,31.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_Black_SchoolGrade12,51.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade12,4.0,, +geoId/sch4807380,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch5500030,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade12,19.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade12,1.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade12,6.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade12,20.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade12,6.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade12,13.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade12,8.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade12,106.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade12,1.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade12,45.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,1.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,2.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,16.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,10.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade12,17.0,, +geoId/sch1700105,2025,Count_Student_White_SchoolGrade12,25.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade12,1.0,, +geoId/sch2500051,2025,Count_Student_White_SchoolGrade12,10.0,, +geoId/sch2700106,2025,Count_Student_White_SchoolGrade12,59.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade12,140.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade12,1.0,, +geoId/sch4500690,2025,Count_Student_White_SchoolGrade12,134.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade12,3.0,, +geoId/sch4807380,2025,Count_Student_White_SchoolGrade12,18.0,, +geoId/sch5500030,2025,Count_Student_White_SchoolGrade12,29.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,2.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_Kindergarten,1.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_Kindergarten,1.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian_Kindergarten,1.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_Kindergarten,2.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_Kindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_Kindergarten,49.0,, +geoId/sch2500051,2025,Count_Student_Female_Black_Kindergarten,27.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Black_Kindergarten,21.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_Kindergarten,15.0,, +geoId/sch3901480,2025,Count_Student_Female_Black_Kindergarten,6.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_Kindergarten,30.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_Kindergarten,52.0,, +geoId/sch2500051,2025,Count_Student_Male_Black_Kindergarten,25.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Black_Kindergarten,22.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_Kindergarten,11.0,, +geoId/sch3901480,2025,Count_Student_Male_Black_Kindergarten,5.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_Kindergarten,36.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_Kindergarten,3.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,2.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,17.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,7.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,48.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,16.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,27.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,8.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,2.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,1.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,2.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,40.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,17.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_PreKindergarten,19.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_PreKindergarten,10.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_PreKindergarten,19.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_PreKindergarten,2.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,2.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,69.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,1.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,19.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,4.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,3.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,63.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,22.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,2.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,1.0,, +geoId/sch1700105,2025,Count_Student_Female_White_PreKindergarten,11.0,, +geoId/sch2700106,2025,Count_Student_Female_White_PreKindergarten,6.0,, +geoId/sch4500690,2025,Count_Student_Female_White_PreKindergarten,27.0,, +geoId/sch4800203,2025,Count_Student_Female_White_PreKindergarten,1.0,, +geoId/sch4807380,2025,Count_Student_Female_White_PreKindergarten,8.0,, +geoId/sch5500030,2025,Count_Student_Female_White_PreKindergarten,10.0,, +geoId/sch1700105,2025,Count_Student_Male_White_PreKindergarten,16.0,, +geoId/sch2700106,2025,Count_Student_Male_White_PreKindergarten,16.0,, +geoId/sch4500690,2025,Count_Student_Male_White_PreKindergarten,30.0,, +geoId/sch4800203,2025,Count_Student_Male_White_PreKindergarten,2.0,, +geoId/sch4807380,2025,Count_Student_Male_White_PreKindergarten,3.0,, +geoId/sch5500030,2025,Count_Student_Male_White_PreKindergarten,7.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade1,2.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade1,2.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade1,3.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade1,39.0,, +geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade1,34.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade1,21.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade1,8.0,, +geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade1,5.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade1,44.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade1,3.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade1,41.0,, +geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade1,24.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade1,16.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade1,18.0,, +geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade1,5.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade1,43.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade1,3.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,24.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,9.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,4.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,3.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,55.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,19.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,24.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,6.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,7.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,53.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,19.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,6.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1.0,, +geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, +geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade1,15.0,, +geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade1,5.0,, +geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade1,27.0,, +geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade1,2.0,, +geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade1,0.0,, +geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade1,64.0,, +geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade1,2.0,, +geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade1,3.0,, +geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade1,5.0,, +geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade1,6.0,, +geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade1,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade1,5.0,, +geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade1,34.0,, +geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade1,0.0,, +geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade1,0.0,, +geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade1,0.0,, +geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade1,7.0,, +geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade1,59.0,, +geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade1,1.0,, +geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade1,13.0,, +geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade1,7.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade2,2.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade2,52.0,, +geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade2,39.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade2,20.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade2,6.0,, +geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade2,4.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade2,25.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade2,43.0,, +geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade2,25.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade2,2.0,, +geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade2,15.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade2,12.0,, +geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade2,5.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade2,34.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade2,2.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,27.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,7.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,5.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,8.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,52.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,20.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,15.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,37.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,23.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,6.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,5.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,2.0,, +geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,4.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, +geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade2,9.0,, +geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade2,4.0,, +geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade2,25.0,, +geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade2,7.0,, +geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade2,0.0,, +geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade2,1.0,, +geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade2,46.0,, +geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade2,0.0,, +geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade2,7.0,, +geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade2,6.0,, +geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade2,10.0,, +geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade2,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade2,6.0,, +geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade2,35.0,, +geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade2,6.0,, +geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade2,1.0,, +geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade2,0.0,, +geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade2,3.0,, +geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade2,60.0,, +geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade2,1.0,, +geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade2,13.0,, +geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade2,10.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade3,1.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade3,39.0,, +geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade3,32.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade3,19.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade3,19.0,, +geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade3,2.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade3,41.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade3,1.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade3,1.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade3,34.0,, +geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade3,37.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade3,25.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade3,15.0,, +geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade3,5.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade3,38.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade3,1.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,20.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,45.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,22.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,21.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,50.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,17.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, +geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, +geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, +geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,3.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,3.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2.0,, +geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, +geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade3,13.0,, +geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade3,5.0,, +geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade3,23.0,, +geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade3,8.0,, +geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade3,1.0,, +geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade3,1.0,, +geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade3,7.0,, +geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade3,50.0,, +geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade3,1.0,, +geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade3,5.0,, +geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade3,3.0,, +geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade3,10.0,, +geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade3,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade3,6.0,, +geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade3,31.0,, +geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade3,7.0,, +geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade3,0.0,, +geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade3,0.0,, +geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade3,2.0,, +geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade3,70.0,, +geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade3,0.0,, +geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade3,12.0,, +geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade3,4.0,, +geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,2.0,, +geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, +geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade4,3.0,, +geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade4,1.0,, +geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade4,1.0,, +geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade4,1.0,, +geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade4,1.0,, +geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade4,1.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade4,40.0,, +geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade4,50.0,, +geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade4,1.0,, +geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade4,16.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade4,5.0,, +geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade4,34.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade4,32.0,, +geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade4,26.0,, +geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade4,2.0,, +geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade4,16.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade4,16.0,, +geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade4,29.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade4,3.0,, +geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,4.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,10.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,7.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,5.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,1.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,52.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,20.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,7.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,5.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,6.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,5.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,56.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,16.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, +geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade4,11.0,, +geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade4,8.0,, +geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade4,21.0,, +geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade4,11.0,, +geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade4,0.0,, +geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade4,0.0,, +geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade4,57.0,, +geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade4,10.0,, +geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade4,5.0,, +geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade4,8.0,, +geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade4,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade4,8.0,, +geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade4,25.0,, +geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade4,11.0,, +geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade4,0.0,, +geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade4,1.0,, +geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade4,3.0,, +geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade4,56.0,, +geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade4,0.0,, +geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade4,8.0,, +geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade4,8.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2.0,, +geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,8.0,, +geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2.0,, +geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,3.0,, +geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2.0,, +geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,3.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, +geoId/sch1700105,2025,Count_Student_Female_White_Kindergarten,5.0,, +geoId/sch1800046,2025,Count_Student_Female_White_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Female_White_Kindergarten,7.0,, +geoId/sch2700106,2025,Count_Student_Female_White_Kindergarten,23.0,, +geoId/sch3700372,2025,Count_Student_Female_White_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_Female_White_Kindergarten,2.0,, +geoId/sch3901480,2025,Count_Student_Female_White_Kindergarten,2.0,, +geoId/sch4500690,2025,Count_Student_Female_White_Kindergarten,70.0,, +geoId/sch4800203,2025,Count_Student_Female_White_Kindergarten,2.0,, +geoId/sch4807380,2025,Count_Student_Female_White_Kindergarten,6.0,, +geoId/sch5500030,2025,Count_Student_Female_White_Kindergarten,10.0,, +geoId/sch1700105,2025,Count_Student_Male_White_Kindergarten,9.0,, +geoId/sch1800046,2025,Count_Student_Male_White_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White_Kindergarten,8.0,, +geoId/sch2700106,2025,Count_Student_Male_White_Kindergarten,29.0,, +geoId/sch3700372,2025,Count_Student_Male_White_Kindergarten,1.0,, +geoId/sch3900305,2025,Count_Student_Male_White_Kindergarten,0.0,, +geoId/sch3901480,2025,Count_Student_Male_White_Kindergarten,4.0,, +geoId/sch4500690,2025,Count_Student_Male_White_Kindergarten,49.0,, +geoId/sch4800203,2025,Count_Student_Male_White_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Student_Male_White_Kindergarten,8.0,, +geoId/sch5500030,2025,Count_Student_Male_White_Kindergarten,6.0,, +geoId/sch0400998,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch1700105,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch1800046,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch2500051,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch3700372,2025,Count_Faculty_ElementarySchoolCounselor,1.36,, +geoId/sch3900305,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch3901480,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch4500690,2025,Count_Faculty_ElementarySchoolCounselor,6.0,, +geoId/sch4800203,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch4801453,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch4807380,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch5100033,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, +geoId/sch5500030,2025,Count_Faculty_ElementarySchoolCounselor,1.0,, +geoId/sch0400998,2025,Count_Teacher_ElementaryTeacher,6.84,, +geoId/sch1700024,2025,Count_Teacher_ElementaryTeacher,45.6,, +geoId/sch1700105,2025,Count_Teacher_ElementaryTeacher,19.65,, +geoId/sch1800046,2025,Count_Teacher_ElementaryTeacher,0.07,, +geoId/sch2500051,2025,Count_Teacher_ElementaryTeacher,85.04,, +geoId/sch2700106,2025,Count_Teacher_ElementaryTeacher,31.01,, +geoId/sch3500187,2025,Count_Teacher_ElementaryTeacher,7.4,, +geoId/sch3700372,2025,Count_Teacher_ElementaryTeacher,23.04,, +geoId/sch3900305,2025,Count_Teacher_ElementaryTeacher,14.52,, +geoId/sch3901480,2025,Count_Teacher_ElementaryTeacher,3.0,, +geoId/sch4200091,2025,Count_Teacher_ElementaryTeacher,0.2,, +geoId/sch4500690,2025,Count_Teacher_ElementaryTeacher,124.8,, +geoId/sch4800203,2025,Count_Teacher_ElementaryTeacher,28.58,, +geoId/sch4801453,2025,Count_Teacher_ElementaryTeacher,0.94,, +geoId/sch4807380,2025,Count_Teacher_ElementaryTeacher,8.86,, +geoId/sch5100033,2025,Count_Teacher_ElementaryTeacher,0.0,, +geoId/sch5500030,2025,Count_Teacher_ElementaryTeacher,25.95,, +geoId/sch0400998,2025,Count_Teacher,21.89,, +geoId/sch1700024,2025,Count_Teacher,69.75,, +geoId/sch1700105,2025,Count_Teacher,30.4,, +geoId/sch1800046,2025,Count_Teacher,10.0,, +geoId/sch2500051,2025,Count_Teacher,125.99,, +geoId/sch2700106,2025,Count_Teacher,74.14,, +geoId/sch3500187,2025,Count_Teacher,36.2,, +geoId/sch3700372,2025,Count_Teacher,28.46,, +geoId/sch3900305,2025,Count_Teacher,28.0,, +geoId/sch3901480,2025,Count_Teacher,4.0,, +geoId/sch4200091,2025,Count_Teacher,55.4,, +geoId/sch4280010,2025,Count_Teacher,35.0,, +geoId/sch4500690,2025,Count_Teacher,222.8,, +geoId/sch4800203,2025,Count_Teacher,89.67,, +geoId/sch4801453,2025,Count_Teacher,9.06,, +geoId/sch4807380,2025,Count_Teacher,24.21,, +geoId/sch5100033,2025,Count_Teacher,9.55,, +geoId/sch5500030,2025,Count_Teacher,58.59,, +geoId/sch0400998,2025,Count_Teacher_Kindergarten,0.0,, +geoId/sch1700105,2025,Count_Teacher_Kindergarten,1.0,, +geoId/sch1800046,2025,Count_Teacher_Kindergarten,0.0,, +geoId/sch2500051,2025,Count_Teacher_Kindergarten,7.51,, +geoId/sch2700106,2025,Count_Teacher_Kindergarten,3.0,, +geoId/sch3700372,2025,Count_Teacher_Kindergarten,5.42,, +geoId/sch3900305,2025,Count_Teacher_Kindergarten,2.66,, +geoId/sch3901480,2025,Count_Teacher_Kindergarten,1.0,, +geoId/sch4500690,2025,Count_Teacher_Kindergarten,12.0,, +geoId/sch4800203,2025,Count_Teacher_Kindergarten,4.04,, +geoId/sch4801453,2025,Count_Teacher_Kindergarten,0.0,, +geoId/sch4807380,2025,Count_Teacher_Kindergarten,1.1,, +geoId/sch5100033,2025,Count_Teacher_Kindergarten,0.0,, +geoId/sch5500030,2025,Count_Teacher_Kindergarten,2.0,, +geoId/sch0400998,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, +geoId/sch1700024,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, +geoId/sch1700105,2025,Count_Faculty_LEAAdministrativeSupportStaff,2.0,, +geoId/sch1800046,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, +geoId/sch2500051,2025,Count_Faculty_LEAAdministrativeSupportStaff,5.0,, +geoId/sch2700106,2025,Count_Faculty_LEAAdministrativeSupportStaff,2.0,, +geoId/sch3500187,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, +geoId/sch3900305,2025,Count_Faculty_LEAAdministrativeSupportStaff,7.0,, +geoId/sch3901480,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, +geoId/sch4200091,2025,Count_Faculty_LEAAdministrativeSupportStaff,7.0,, +geoId/sch4280010,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, +geoId/sch4500690,2025,Count_Faculty_LEAAdministrativeSupportStaff,19.0,, +geoId/sch4800203,2025,Count_Faculty_LEAAdministrativeSupportStaff,16.5,, +geoId/sch4801453,2025,Count_Faculty_LEAAdministrativeSupportStaff,1.0,, +geoId/sch4807380,2025,Count_Faculty_LEAAdministrativeSupportStaff,1.7,, +geoId/sch5100033,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, +geoId/sch5500030,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, +geoId/sch0400998,2025,Count_Faculty_LEAAdministrator,0.0,, +geoId/sch1700024,2025,Count_Faculty_LEAAdministrator,0.0,, +geoId/sch1700105,2025,Count_Faculty_LEAAdministrator,1.0,, +geoId/sch1800046,2025,Count_Faculty_LEAAdministrator,4.5,, +geoId/sch2500051,2025,Count_Faculty_LEAAdministrator,11.0,, +geoId/sch2700106,2025,Count_Faculty_LEAAdministrator,1.07,, +geoId/sch3500187,2025,Count_Faculty_LEAAdministrator,2.0,, +geoId/sch3900305,2025,Count_Faculty_LEAAdministrator,3.0,, +geoId/sch3901480,2025,Count_Faculty_LEAAdministrator,1.0,, +geoId/sch4200091,2025,Count_Faculty_LEAAdministrator,5.0,, +geoId/sch4280010,2025,Count_Faculty_LEAAdministrator,2.0,, +geoId/sch4500690,2025,Count_Faculty_LEAAdministrator,8.0,, +geoId/sch4800203,2025,Count_Faculty_LEAAdministrator,4.0,, +geoId/sch4801453,2025,Count_Faculty_LEAAdministrator,2.6,, +geoId/sch4807380,2025,Count_Faculty_LEAAdministrator,2.0,, +geoId/sch5100033,2025,Count_Faculty_LEAAdministrator,0.0,, +geoId/sch5500030,2025,Count_Faculty_LEAAdministrator,1.33,, +geoId/sch0400998,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch1700024,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch1700105,2025,Count_Faculty_MediaSupportStaff,2.0,, +geoId/sch1800046,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch2500051,2025,Count_Faculty_MediaSupportStaff,4.0,, +geoId/sch2700106,2025,Count_Faculty_MediaSupportStaff,1.36,, +geoId/sch3900305,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch3901480,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch4200091,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch4280010,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch4500690,2025,Count_Faculty_MediaSupportStaff,1.0,, +geoId/sch4800203,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch4801453,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch4807380,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch5100033,2025,Count_Faculty_MediaSupportStaff,0.0,, +geoId/sch5500030,2025,Count_Faculty_MediaSupportStaff,1.44,, +geoId/sch3700372,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, +geoId/sch3900305,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, +geoId/sch3901480,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, +geoId/sch4200091,2025,Count_Faculty_SchoolOtherGuidanceCounselor,6.0,, +geoId/sch4280010,2025,Count_Faculty_SchoolOtherGuidanceCounselor,2.0,, +geoId/sch4800203,2025,Count_Faculty_SchoolOtherGuidanceCounselor,3.7,, +geoId/sch4801453,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, +geoId/sch4807380,2025,Count_Faculty_SchoolOtherGuidanceCounselor,1.0,, +geoId/sch5500030,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, +geoId/sch0400998,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,0.0,, +geoId/sch1700024,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,112.79,, +geoId/sch1700105,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,7.0,, +geoId/sch1800046,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,44.0,, +geoId/sch2500051,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,28.0,, +geoId/sch2700106,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,27.99,, +geoId/sch3500187,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,11.0,, +geoId/sch3900305,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,4.0,, +geoId/sch3901480,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,0.0,, +geoId/sch4200091,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,28.0,, +geoId/sch4280010,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,10.0,, +geoId/sch4500690,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,56.5,, +geoId/sch4800203,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,27.46,, +geoId/sch4801453,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,3.0,, +geoId/sch4807380,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,6.51,, +geoId/sch5100033,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,1.0,, +geoId/sch5500030,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,23.04,, +geoId/sch0400998,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch1700105,2025,Count_Teacher_PreKindergarten,2.0,, +geoId/sch1800046,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch2500051,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch2700106,2025,Count_Teacher_PreKindergarten,5.0,, +geoId/sch3900305,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch3901480,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch4500690,2025,Count_Teacher_PreKindergarten,7.0,, +geoId/sch4801453,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch4807380,2025,Count_Teacher_PreKindergarten,1.08,, +geoId/sch5100033,2025,Count_Teacher_PreKindergarten,0.0,, +geoId/sch5500030,2025,Count_Teacher_PreKindergarten,3.0,, +geoId/sch0400998,2025,Percent_Student_AsAFractionOf_Count_Teacher,16.9,, +geoId/sch1700105,2025,Percent_Student_AsAFractionOf_Count_Teacher,10.33,, +geoId/sch1800046,2025,Percent_Student_AsAFractionOf_Count_Teacher,118.0,, +geoId/sch2500051,2025,Percent_Student_AsAFractionOf_Count_Teacher,11.32,, +geoId/sch2700106,2025,Percent_Student_AsAFractionOf_Count_Teacher,12.04,, +geoId/sch3500187,2025,Percent_Student_AsAFractionOf_Count_Teacher,10.25,, +geoId/sch3700372,2025,Percent_Student_AsAFractionOf_Count_Teacher,14.79,, +geoId/sch3900305,2025,Percent_Student_AsAFractionOf_Count_Teacher,8.82,, +geoId/sch3901480,2025,Percent_Student_AsAFractionOf_Count_Teacher,26.75,, +geoId/sch4200091,2025,Percent_Student_AsAFractionOf_Count_Teacher,17.98,, +geoId/sch4280010,2025,Percent_Student_AsAFractionOf_Count_Teacher,0.2,, +geoId/sch4500690,2025,Percent_Student_AsAFractionOf_Count_Teacher,12.32,, +geoId/sch4800203,2025,Percent_Student_AsAFractionOf_Count_Teacher,18.71,, +geoId/sch4801453,2025,Percent_Student_AsAFractionOf_Count_Teacher,22.41,, +geoId/sch4807380,2025,Percent_Student_AsAFractionOf_Count_Teacher,11.73,, +geoId/sch5500030,2025,Percent_Student_AsAFractionOf_Count_Teacher,13.64,, +geoId/sch0400998,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, +geoId/sch1700024,2025,Count_Faculty_SchoolAdministrativeSupportStaff,15.0,, +geoId/sch1700105,2025,Count_Faculty_SchoolAdministrativeSupportStaff,3.0,, +geoId/sch1800046,2025,Count_Faculty_SchoolAdministrativeSupportStaff,8.0,, +geoId/sch2500051,2025,Count_Faculty_SchoolAdministrativeSupportStaff,4.0,, +geoId/sch2700106,2025,Count_Faculty_SchoolAdministrativeSupportStaff,1.0,, +geoId/sch3500187,2025,Count_Faculty_SchoolAdministrativeSupportStaff,4.0,, +geoId/sch3900305,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, +geoId/sch3901480,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, +geoId/sch4200091,2025,Count_Faculty_SchoolAdministrativeSupportStaff,12.0,, +geoId/sch4280010,2025,Count_Faculty_SchoolAdministrativeSupportStaff,9.0,, +geoId/sch4500690,2025,Count_Faculty_SchoolAdministrativeSupportStaff,14.0,, +geoId/sch4800203,2025,Count_Faculty_SchoolAdministrativeSupportStaff,11.25,, +geoId/sch4801453,2025,Count_Faculty_SchoolAdministrativeSupportStaff,2.5,, +geoId/sch4807380,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.5,, +geoId/sch5100033,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, +geoId/sch5500030,2025,Count_Faculty_SchoolAdministrativeSupportStaff,3.73,, +geoId/sch0400998,2025,Count_Faculty_SchoolAdministrator,0.0,, +geoId/sch1700024,2025,Count_Faculty_SchoolAdministrator,11.0,, +geoId/sch1700105,2025,Count_Faculty_SchoolAdministrator,2.4,, +geoId/sch1800046,2025,Count_Faculty_SchoolAdministrator,5.0,, +geoId/sch2500051,2025,Count_Faculty_SchoolAdministrator,9.5,, +geoId/sch2700106,2025,Count_Faculty_SchoolAdministrator,3.0,, +geoId/sch3500187,2025,Count_Faculty_SchoolAdministrator,1.6,, +geoId/sch3900305,2025,Count_Faculty_SchoolAdministrator,0.0,, +geoId/sch3901480,2025,Count_Faculty_SchoolAdministrator,0.0,, +geoId/sch4200091,2025,Count_Faculty_SchoolAdministrator,5.0,, +geoId/sch4280010,2025,Count_Faculty_SchoolAdministrator,3.0,, +geoId/sch4500690,2025,Count_Faculty_SchoolAdministrator,16.0,, +geoId/sch4800203,2025,Count_Faculty_SchoolAdministrator,6.37,, +geoId/sch4801453,2025,Count_Faculty_SchoolAdministrator,0.64,, +geoId/sch4807380,2025,Count_Faculty_SchoolAdministrator,1.0,, +geoId/sch5100033,2025,Count_Faculty_SchoolAdministrator,1.0,, +geoId/sch5500030,2025,Count_Faculty_SchoolAdministrator,2.0,, +geoId/sch0400998,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch1700105,2025,Count_Faculty_SecondarySchoolCounselor,1.0,, +geoId/sch1800046,2025,Count_Faculty_SecondarySchoolCounselor,2.0,, +geoId/sch2500051,2025,Count_Faculty_SecondarySchoolCounselor,5.0,, +geoId/sch2700106,2025,Count_Faculty_SecondarySchoolCounselor,1.83,, +geoId/sch3700372,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch3900305,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch3901480,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch4500690,2025,Count_Faculty_SecondarySchoolCounselor,5.0,, +geoId/sch4800203,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch4801453,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch4807380,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch5100033,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, +geoId/sch5500030,2025,Count_Faculty_SecondarySchoolCounselor,1.0,, +geoId/sch0400998,2025,Count_Teacher_SecondaryTeacher,15.05,, +geoId/sch1700024,2025,Count_Teacher_SecondaryTeacher,24.15,, +geoId/sch1700105,2025,Count_Teacher_SecondaryTeacher,7.75,, +geoId/sch1800046,2025,Count_Teacher_SecondaryTeacher,9.93,, +geoId/sch2500051,2025,Count_Teacher_SecondaryTeacher,33.44,, +geoId/sch2700106,2025,Count_Teacher_SecondaryTeacher,27.85,, +geoId/sch3500187,2025,Count_Teacher_SecondaryTeacher,21.4,, +geoId/sch3700372,2025,Count_Teacher_SecondaryTeacher,0.0,, +geoId/sch3900305,2025,Count_Teacher_SecondaryTeacher,2.32,, +geoId/sch3901480,2025,Count_Teacher_SecondaryTeacher,0.0,, +geoId/sch4200091,2025,Count_Teacher_SecondaryTeacher,45.1,, +geoId/sch4280010,2025,Count_Teacher_SecondaryTeacher,31.0,, +geoId/sch4500690,2025,Count_Teacher_SecondaryTeacher,79.0,, +geoId/sch4800203,2025,Count_Teacher_SecondaryTeacher,43.23,, +geoId/sch4801453,2025,Count_Teacher_SecondaryTeacher,7.12,, +geoId/sch4807380,2025,Count_Teacher_SecondaryTeacher,12.37,, +geoId/sch5100033,2025,Count_Teacher_SecondaryTeacher,9.55,, +geoId/sch5500030,2025,Count_Teacher_SecondaryTeacher,27.55,, +geoId/sch0400998,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, +geoId/sch1700105,2025,Count_Faculty_TotalGuidanceCounselor,1.0,, +geoId/sch1800046,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, +geoId/sch2500051,2025,Count_Faculty_TotalGuidanceCounselor,5.0,, +geoId/sch2700106,2025,Count_Faculty_TotalGuidanceCounselor,1.83,, +geoId/sch3700372,2025,Count_Faculty_TotalGuidanceCounselor,1.36,, +geoId/sch3900305,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, +geoId/sch3901480,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, +geoId/sch4200091,2025,Count_Faculty_TotalGuidanceCounselor,6.0,, +geoId/sch4280010,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, +geoId/sch4500690,2025,Count_Faculty_TotalGuidanceCounselor,11.0,, +geoId/sch4800203,2025,Count_Faculty_TotalGuidanceCounselor,3.7,, +geoId/sch4801453,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, +geoId/sch4807380,2025,Count_Faculty_TotalGuidanceCounselor,1.0,, +geoId/sch5100033,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, +geoId/sch5500030,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, +geoId/sch0400998,2025,Count_Faculty,21.89,, +geoId/sch1700024,2025,Count_Faculty,277.64,, +geoId/sch1700105,2025,Count_Faculty,88.5,, +geoId/sch1800046,2025,Count_Faculty,101.5,, +geoId/sch2500051,2025,Count_Faculty,214.53,, +geoId/sch2700106,2025,Count_Faculty,139.95,, +geoId/sch3500187,2025,Count_Faculty,63.4,, +geoId/sch3900305,2025,Count_Faculty,51.0,, +geoId/sch3901480,2025,Count_Faculty,9.0,, +geoId/sch4200091,2025,Count_Faculty,149.5,, +geoId/sch4280010,2025,Count_Faculty,76.0,, +geoId/sch4500690,2025,Count_Faculty,501.25,, +geoId/sch4800203,2025,Count_Faculty,221.5,, +geoId/sch4801453,2025,Count_Faculty,18.8,, +geoId/sch4807380,2025,Count_Faculty,43.57,, +geoId/sch5100033,2025,Count_Faculty,12.15,, +geoId/sch5500030,2025,Count_Faculty,112.22,, +geoId/sch2700106,2025,Count_Teacher_UngradedTeacher,7.28,, +geoId/sch3500187,2025,Count_Teacher_UngradedTeacher,7.4,, +geoId/sch3900305,2025,Count_Teacher_UngradedTeacher,8.5,, +geoId/sch3901480,2025,Count_Teacher_UngradedTeacher,0.0,, +geoId/sch4200091,2025,Count_Teacher_UngradedTeacher,10.1,, +geoId/sch4280010,2025,Count_Teacher_UngradedTeacher,4.0,, +geoId/sch4800203,2025,Count_Teacher_UngradedTeacher,13.82,, +geoId/sch4801453,2025,Count_Teacher_UngradedTeacher,1.0,, +geoId/sch4807380,2025,Count_Teacher_UngradedTeacher,0.8,, +geoId/sch5500030,2025,Count_Teacher_UngradedTeacher,0.09,, diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf index e69de29bb2..25099e3eee 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf @@ -0,0 +1,12 @@ +Node: dcid:Count_Faculty +measuredProperty: dcs:count +populationType: dcs:Faculty +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Faculty_MediaSupportStaff +facultyType: dcs:MediaSupportStaff +measuredProperty: dcs:count +populationType: dcs:Faculty +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable \ No newline at end of file From c56f916f9457f77f25971061c8ede9e6800db593 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 24 Aug 2026 12:16:09 +0000 Subject: [PATCH 05/17] Made changes as per CRA review --- .../demographics/school_district/process.py | 1 - ...ELSI_csv_export_6391562517590103315108.csv | 30 - ...ELSI_csv_export_6391562518333892767879.csv | 30 - .../ELSI_csv_export_639156251962159479138.csv | 30 - .../ELSI_csv_export_639156252163594862185.csv | 30 - .../us_nces_demographics_district_place.csv | 28 +- .../us_nces_demographics_district_school.csv | 3021 ----------------- .../us_nces_demographics_district_school.mcf | 12 - 8 files changed, 14 insertions(+), 3168 deletions(-) delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv diff --git a/scripts/us_nces/demographics/school_district/process.py b/scripts/us_nces/demographics/school_district/process.py index a9d6e40f1e..dfeb183cf0 100644 --- a/scripts/us_nces/demographics/school_district/process.py +++ b/scripts/us_nces/demographics/school_district/process.py @@ -102,4 +102,3 @@ class NCESDistrictSchool(USEducation): error_msg = str(e)[:1000] logging.fatal( f"Error While Running District School Process: {error_msg}") - raise diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv deleted file mode 100644 index 2677e39fde..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562517590103315108.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Two or More Races - male [District] 2024-25,Two or More Races - female [District] 2024-25,Prekindergarten Students - male [District] 2024-25,Prekindergarten Students - female [District] 2024-25,Kindergarten Students - male [District] 2024-25,Kindergarten Students - female [District] 2024-25,Grade 1 Students - male [District] 2024-25,Grade 1 Students - female [District] 2024-25,Grade 2 Students - male [District] 2024-25,Grade 2 Students - female [District] 2024-25,Grade 3 Students - male [District] 2024-25,Grade 3 Students - female [District] 2024-25,Grade 4 Students - male [District] 2024-25,Grade 4 Students - female [District] 2024-25,Grade 5 Students - male [District] 2024-25,Grade 5 Students - female [District] 2024-25,Grade 6 Students - male [District] 2024-25,Grade 6 Students - female [District] 2024-25,Grade 7 Students - male [District] 2024-25,Grade 7 Students - female [District] 2024-25,Grade 8 Students - male [District] 2024-25,Grade 8 Students - female [District] 2024-25,Grade 9 Students - male [District] 2024-25,Grade 9 Students - female [District] 2024-25,Grade 10 Students - male [District] 2024-25,Grade 10 Students - female [District] 2024-25,Grade 11 Students - male [District] 2024-25,Grade 11 Students - female [District] 2024-25,Grade 12 Students - male [District] 2024-25,Grade 12 Students - female [District] 2024-25,Grade 13 Students - male [District] 2024-25,Grade 13 Students - female [District] 2024-25,Ungraded Students - male [District] 2024-25,Ungraded Students - female [District] 2024-25,Adult Education Students - male [District] 2024-25,Adult Education Students - female [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander [District] 2024-25,Prekindergarten Students - Hispanic [District] 2024-25,Prekindergarten Students - Black or African American [District] 2024-25,Prekindergarten Students - White [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Prekindergarten Students Two or More Races [District] 2024-25,Kindergarten Students - American Indian/Alaska Native [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander [District] 2024-25,Kindergarten Students - Hispanic [District] 2024-25,Kindergarten Students - Black or African American [District] 2024-25,Kindergarten Students White [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Kindergarten Students Two or More Races [District] 2024-25,Grade 1 Students - American Indian/Alaska Native [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 1 Students - Hispanic [District] 2024-25,Grade 1 Students - Black or African American [District] 2024-25,Grade 1 Students - White [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 1 Students - Two or More Races [District] 2024-25,Grade 2 Students - American Indian/Alaska Native [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,10,16,†,†,56,51,44,43,45,56,39,43,36,45,50,48,34,33,43,50,38,46,57,61,37,50,47,41,36,51,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,5,101,0,0,1,0,0,5,80,0,0,2,1,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,26,50,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9,11,33,20,32,45,99,103,91,102,100,145,90,116,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,12,16,†,†,†,†,8,8,11,13,11,11,20,18,22,22,31,39,40,46,45,26,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,10,0,2,0,4,0,0,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,1,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,2,4,0,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A+ ACADEMY,Texas,3,3,67,80,43,51,57,60,40,52,51,47,59,53,57,56,66,49,81,63,80,57,76,64,92,54,54,56,44,69,†,†,†,†,†,†,0,0,132,12,3,0,0,0,1,88,3,2,0,0,0,0,108,6,3,0,0,0,0,4800203 -A+ ARTS ACADEMY,Ohio,11,5,†,†,15,22,19,12,16,7,16,21,19,6,14,14,13,13,9,10,8,13,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,2,6,26,2,0,1,0,0,2,26,0,0,3,0,0,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,12,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24,31,24,16,20,19,40,21,30,29,45,30,28,13,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,5,8,†,†,13,10,13,6,9,8,8,10,3,2,6,3,8,8,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,11,6,0,3,0,0,2,10,7,0,0,0,0,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,8,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,31,20,24,24,27,30,17,19,8,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,5,5,16,12,9,7,6,15,11,9,10,13,9,12,11,11,14,8,10,14,7,14,9,12,11,8,15,14,15,12,†,†,†,†,†,†,0,0,0,0,27,0,1,0,0,0,0,14,0,2,0,0,0,0,21,0,0,0,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,5,8,†,†,26,26,19,26,19,29,31,22,21,19,24,20,27,22,29,25,20,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,1,5,43,2,0,0,0,2,6,37,0,0,0,0,0,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,15,16,20,10,37,32,39,36,38,32,34,28,33,30,35,37,29,33,36,31,35,25,33,30,43,33,28,28,41,27,†,†,†,†,†,†,1,0,6,0,22,0,1,0,1,15,0,52,0,1,0,0,12,0,61,0,2,0,0,2700106 -ABBEVILLE 60,South Carolina,38,42,54,48,89,106,111,116,100,80,110,96,91,97,105,95,115,96,96,88,104,106,128,115,114,95,103,83,121,83,†,†,†,†,†,†,0,0,4,38,57,0,3,0,1,5,66,119,0,4,0,0,9,87,123,0,8,1,1,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,6,9,30,30,24,28,26,24,35,27,21,25,26,27,28,24,27,29,27,36,27,30,29,19,32,19,39,30,36,44,†,†,†,†,†,†,0,0,41,0,17,0,2,0,0,33,0,16,0,3,0,0,38,0,12,0,0,0,3,5500030 -ABBOTT ISD,Texas,1,6,3,9,12,9,14,5,15,8,13,7,10,13,12,9,10,6,7,14,11,10,15,11,15,10,6,11,13,6,†,†,†,†,†,†,0,0,1,0,11,0,0,0,0,6,0,14,0,1,0,0,3,0,16,0,0,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,37,35,†,†,66,59,56,67,52,73,68,59,50,80,63,65,65,63,45,66,45,63,42,38,42,43,33,47,34,42,†,†,†,†,†,†,†,†,†,†,†,†,†,2,1,44,52,15,0,11,0,5,48,58,10,0,2,1,1,2500051 -ABC UNIFIED,California,638,630,†,†,775,755,525,519,582,611,655,586,673,590,670,624,719,672,727,651,693,662,766,704,710,669,759,695,844,771,†,†,†,†,0,0,†,†,†,†,†,†,†,3,522,707,93,46,7,152,0,361,504,43,37,10,89,2,413,0601620 -ABERDEEN DISTRICT,Idaho,3,2,7,5,27,27,18,15,16,19,18,26,19,31,25,21,22,29,25,22,20,20,23,30,36,23,22,26,29,24,†,†,†,†,†,†,0,0,10,0,2,0,0,0,0,35,0,18,0,1,0,0,19,0,13,1,0,0,0,1600030 -ABERDEEN SCHOOL DISTRICT,Mississippi,9,9,†,†,37,31,31,44,38,34,36,30,32,33,41,32,33,18,39,28,35,40,39,28,38,36,40,55,34,41,1,0,†,†,†,†,†,†,†,†,†,†,†,0,1,1,63,2,0,1,0,0,0,72,3,0,0,0,1,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,125,111,78,61,92,87,114,88,99,83,103,113,105,100,106,98,110,125,113,113,104,126,131,141,130,136,154,149,152,168,†,†,†,†,†,†,7,–,64,5,53,–,10,5,3,71,1,88,0,11,5,0,81,0,94,0,22,5,1,5300030 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,149,138,0,0,168,123,149,169,185,167,148,176,153,140,168,142,158,172,146,152,173,160,169,146,168,145,185,173,207,191,†,†,†,†,†,†,0,0,0,0,0,0,0,19,9,39,7,194,0,23,10,7,49,9,214,3,26,28,13,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv deleted file mode 100644 index 6e520de181..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562518333892767879.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 2 Students - Hispanic [District] 2024-25,Grade 2 Students - Black or African American [District] 2024-25,Grade 2 Students - White [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 2 Students - Two or More Races [District] 2024-25,Grade 3 Students - American Indian/Alaska Native [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 3 Students - Hispanic [District] 2024-25,Grade 3 Students - Black or African American [District] 2024-25,Grade 3 Students - White [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 3 Students - Two or More Races [District] 2024-25,Grade 4 Students - American Indian/Alaska Native [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 4 Students - Hispanic [District] 2024-25,Grade 4 Students - Black or African American [District] 2024-25,Grade 4 Students - White [District] 2024-25,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 4 Students - Two or More Races [District] 2024-25,Grade 5 Students - American Indian/Alaska Native [District] 2024-25,Grade 5 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 5 Students - Hispanic [District] 2024-25,Grade 5 Students - Black or African American [District] 2024-25,Grade 5 Students - White [District] 2024-25,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 5 Students - Two or More Races [District] 2024-25,Grade 6 Students - American Indian/Alaska Native [District] 2024-25,Grade 6 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 6 Students - Hispanic [District] 2024-25,Grade 6 Students - Black or African American [District] 2024-25,Grade 6 Students - White [District] 2024-25,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 6 Students - Two or More Races [District] 2024-25,Grade 7 Students - American Indian/Alaska Native [District] 2024-25,Grade 7 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 7 Students - Hispanic [District] 2024-25,Grade 7 Students - Black or African American [District] 2024-25,Grade 7 Students - White [District] 2024-25,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 7 Students - Two or More Races [District] 2024-25,Grade 8 Students - American Indian/Alaska Native [District] 2024-25,Grade 8 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 8 Students - Hispanic [District] 2024-25,Grade 8 Students - Black or African American [District] 2024-25,Grade 8 Students - White [District] 2024-25,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 8 Students - Two or More Races [District] 2024-25,Grade 9 Students - American Indian/Alaska Native [District] 2024-25,Grade 9 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 9 Students - Hispanic [District] 2024-25,Grade 9 Students - Black or African American [District] 2024-25,Grade 9 Students - White [District] 2024-25,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 9 Students - Two or More Races [District] 2024-25,Grade 10 Students - American Indian/Alaska Native [District] 2024-25,Grade 10 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 10 Students - Hispanic [District] 2024-25,Grade 10 Students - Black or African American [District] 2024-25,Grade 10 Students - White [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,3,95,0,0,2,0,0,6,73,0,0,3,0,0,5,72,0,0,4,0,0,5,91,0,0,2,0,0,7,60,0,0,0,0,0,3,88,0,0,2,0,0,5,77,0,0,2,0,0,8,109,0,0,1,0,0,3,80,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,2,14,0,4,1,1,8,6,32,1,4,0,1,4,14,51,0,7,0,4,19,34,130,1,14,0,1,10,39,127,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,8,2,13,0,1,2,0,1,0,15,0,4,0,0,11,3,22,0,2,2,0,4,1,34,0,3,1,0,16,3,43,0,7,1,2,7,4,70,0,2,1,1,2,4,58,0,5,†,†,†,†,†,†,†,†,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,1,4280010 -A+ ACADEMY,Texas,89,2,1,0,0,0,0,95,2,1,0,0,0,0,108,3,0,0,1,0,2,104,3,3,0,1,0,0,112,2,1,0,0,0,1,137,2,3,0,1,1,1,128,3,3,0,1,0,0,132,5,1,0,2,0,0,140,4,2,4800203 -A+ ARTS ACADEMY,Ohio,3,18,0,0,2,0,0,2,34,1,0,0,0,0,1,21,1,0,2,1,0,0,24,0,0,3,1,0,0,22,1,0,2,0,0,0,17,0,0,2,0,0,0,20,0,0,1,†,†,†,†,†,†,†,†,†,†,†,†,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,16,7,24,0,7,0,0,18,6,12,0,4,1,0,15,7,14,0,2,0,1,28,5,23,0,4,4,2,23,8,18,0400998 -A+ CHILDREN'S ACADEMY,Ohio,1,9,4,0,3,0,1,0,7,9,0,1,0,0,0,0,3,0,2,0,1,0,4,4,0,0,0,0,1,8,3,0,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,23,23,1,0,4,0,0,21,22,2,0,3,0,0,18,34,3,0,2,0,0,12,23,0,0,1,0,0,5,6,0,4801453 -A-C CENTRAL CUSD 262,Illinois,1,0,19,0,0,0,0,0,0,23,0,0,0,0,0,1,19,0,1,0,0,0,0,21,0,1,0,0,0,0,22,0,0,0,0,0,0,22,0,2,0,0,1,0,19,0,1,0,0,1,0,20,0,0,0,0,3,0,15,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,11,35,1,0,1,0,1,6,44,1,0,1,0,0,7,32,0,0,1,0,0,7,33,1,0,3,0,1,8,37,1,0,2,0,1,14,32,2,0,5,0,1,4,30,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,10,0,60,0,0,1,0,4,0,54,0,3,0,1,12,0,46,0,4,0,0,9,0,60,0,3,0,0,6,0,52,0,4,1,1,6,0,56,0,3,0,0,9,0,48,0,3,1,0,11,0,50,0,1,1,0,9,0,62,2700106 -ABBEVILLE 60,South Carolina,3,59,106,0,10,1,0,3,79,120,0,3,2,0,4,63,113,0,6,0,0,4,76,113,0,7,0,0,3,65,139,0,4,0,1,5,54,116,0,8,1,1,8,62,135,0,3,0,2,7,70,154,0,10,0,0,8,60,138,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,43,0,16,0,0,0,0,39,0,7,0,0,0,2,36,0,13,0,2,0,2,38,0,12,0,0,0,1,42,0,11,0,2,0,1,49,0,11,0,2,0,5,30,0,22,0,0,0,3,28,1,13,0,3,0,2,26,1,22,5500030 -ABBOTT ISD,Texas,2,0,20,0,1,0,0,2,1,17,0,0,0,0,5,0,18,0,0,0,0,1,1,19,0,0,0,0,5,1,9,0,1,0,0,5,0,15,0,1,0,0,2,0,18,0,1,0,0,8,0,17,0,1,0,0,5,0,20,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,42,64,10,0,7,1,0,41,69,11,0,5,3,4,17,76,16,0,14,1,5,22,71,18,0,11,0,4,28,72,17,0,7,0,8,24,59,14,0,6,0,2,28,61,14,1,2,0,2,11,48,15,0,4,0,3,10,60,9,2500051 -ABC UNIFIED,California,536,83,52,3,104,1,419,548,82,51,5,135,2,431,547,87,49,4,143,3,442,570,72,62,7,138,4,518,602,99,66,15,87,4,471,661,98,63,9,72,3,495,606,106,65,9,71,1,547,657,106,71,7,81,1,478,674,85,72,0601620 -ABERDEEN DISTRICT,Idaho,23,0,12,0,0,0,0,28,0,16,0,0,1,0,28,0,21,0,0,0,0,33,0,13,0,0,0,0,32,0,19,0,0,0,0,34,1,12,0,0,0,0,28,0,12,0,0,1,0,35,0,16,0,1,0,1,38,0,19,1600030 -ABERDEEN SCHOOL DISTRICT,Mississippi,0,67,4,0,0,0,0,0,62,4,0,0,0,0,0,61,4,0,0,0,1,0,71,0,0,1,0,0,0,46,3,0,2,0,0,0,67,0,0,0,0,0,2,66,4,0,3,0,0,0,63,2,0,2,0,0,0,69,4,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,80,2,87,0,7,5,1,89,2,105,0,14,3,1,82,1,103,1,14,5,1,67,2,110,1,18,5,1,96,1,115,0,17,4,2,81,4,108,0,27,2,1,80,6,122,1,18,5,4,89,3,145,0,26,5,3,93,5,144,5300030 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,50,8,224,2,27,16,19,40,5,216,4,24,13,14,30,7,211,2,16,18,14,33,9,215,2,19,21,12,32,9,231,1,24,21,20,23,4,197,3,30,24,10,26,6,236,3,28,21,9,29,10,224,1,21,19,6,31,7,236,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv deleted file mode 100644 index b51f78bcff..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251962159479138.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Kindergarten Students - White - male [District] 2024-25,Kindergarten Students - White - female [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Kindergarten Students - Two or More Races - male [District] 2024-25,Kindergarten Students - Two or More Races - female [District] 2024-25,Grade 1 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 1 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 1 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 1 Students - Hispanic - male [District] 2024-25,Grade 1 Students - Hispanic - female [District] 2024-25,Grade 1 Students - Black or African American - male [District] 2024-25,Grade 1 Students - Black or African American - female [District] 2024-25,Grade 1 Students - White - male [District] 2024-25,Grade 1 Students - White - female [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 1 Students - Two or More Races - male [District] 2024-25,Grade 1 Students - Two or More Races - female [District] 2024-25,Grade 2 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 2 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 2 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 2 Students - Hispanic - male [District] 2024-25,Grade 2 Students - Hispanic - female [District] 2024-25,Grade 2 Students - Black or African American - male [District] 2024-25,Grade 2 Students - Black or African American - female [District] 2024-25,Grade 2 Students - White - male [District] 2024-25,Grade 2 Students - White - female [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 2 Students - Two or More Races - male [District] 2024-25,Grade 2 Students - Two or More Races - female [District] 2024-25,Grade 3 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 3 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 3 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 3 Students - Hispanic - male [District] 2024-25,Grade 3 Students - Hispanic - female [District] 2024-25,Grade 3 Students - Black or African American - male [District] 2024-25,Grade 3 Students - Black or African American - female [District] 2024-25,Grade 3 Students - White - male [District] 2024-25,Grade 3 Students - White - female [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 3 Students - Two or More Races - male [District] 2024-25,Grade 3 Students - Two or More Races - female [District] 2024-25,Grade 4 Students - American Indian/Alaska Native - male [District] 2024-25,Grade 4 Students - American Indian/Alaska Native - female [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Grade 4 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 4 Students - Hispanic - male [District] 2024-25,Grade 4 Students - Hispanic - female [District] 2024-25,Grade 4 Students - Black or African American - male [District] 2024-25,Grade 4 Students - Black or African American - female [District] 2024-25,Grade 4 Students - White - male [District] 2024-25,Grade 4 Students - White - female [District] 2024-25,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,0,0,0,0,1,0,0,0,0,0,3,2,41,39,0,0,0,0,0,2,1,0,0,0,1,2,43,52,0,0,0,0,0,2,0,0,0,0,4,2,34,39,0,0,0,0,1,2,0,0,0,0,1,4,32,40,0,0,0,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,0,0,0,0,6,4,0,0,0,2,0,0,2,2,0,0,0,0,3,5,2,0,6,7,0,0,0,1,1,1,0,0,1,0,0,0,7,8,0,0,2,2,0,0,0,0,6,5,2,1,11,11,0,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A+ ACADEMY,Texas,0,2,0,0,0,0,0,0,0,0,53,55,3,3,1,2,0,0,0,0,0,0,0,0,37,52,2,0,1,0,0,0,0,0,0,0,0,0,50,45,1,1,0,1,0,0,0,0,0,0,0,0,56,52,3,0,0,0,0,4800203 -A+ ARTS ACADEMY,Ohio,0,2,0,0,1,0,0,0,0,0,0,2,18,8,0,0,0,0,1,2,0,0,0,0,2,1,12,6,0,0,0,0,2,0,0,0,0,0,1,1,15,19,0,1,0,0,0,0,0,0,0,0,0,1,16,5,1,0,0,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,4,2,0,0,2,1,0,0,0,0,1,1,5,5,7,0,0,0,0,0,0,0,0,0,0,1,5,4,3,1,0,0,1,2,0,0,1,0,0,0,5,2,2,7,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,9,5,0,0,0,2,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,1,0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,10,13,0,0,0,0,0,0,0,0,0,0,0,1,8,11,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,1,1,0,0,0,0,0,0,0,2,3,3,16,21,0,0,0,0,0,0,0,0,0,0,3,8,15,20,1,0,0,0,0,1,0,0,1,0,4,2,25,19,0,1,0,0,1,0,0,0,0,0,5,2,16,16,0,0,0,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,29,23,0,0,0,1,0,0,0,0,3,9,0,0,34,27,0,0,2,0,0,0,0,0,3,7,0,0,35,25,0,0,0,0,0,1,0,0,2,2,0,0,31,23,0,0,1,2,0,0,0,1,5,7,0,0,25,21,0,2700106 -ABBEVILLE 60,South Carolina,49,70,0,0,3,1,0,0,0,0,7,2,43,44,59,64,0,0,2,6,1,0,0,1,1,2,34,25,60,46,0,0,4,6,0,1,0,0,2,1,38,41,70,50,0,0,0,3,1,1,0,0,2,2,29,34,56,57,0,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,6,10,0,0,1,2,0,0,0,0,19,19,0,0,7,5,0,0,0,0,0,0,2,1,23,20,0,0,10,6,0,0,0,0,0,0,0,0,17,22,0,0,4,3,0,0,0,0,0,0,1,1,16,20,0,0,8,5,0,5500030 -ABBOTT ISD,Texas,8,6,0,0,1,0,0,0,0,0,1,2,0,0,13,3,0,0,0,0,0,0,0,0,2,0,0,0,13,7,0,0,0,1,0,0,0,0,1,1,0,1,12,5,0,0,0,0,0,0,0,0,2,3,0,0,8,10,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,8,7,0,0,3,8,0,0,3,2,24,24,24,34,5,5,0,0,0,2,1,0,0,1,15,27,25,39,6,4,0,0,5,2,1,0,0,0,21,20,37,32,6,5,0,0,3,2,1,2,1,3,7,10,26,50,8,8,0,2500051 -ABC UNIFIED,California,31,15,3,4,77,75,0,0,187,174,247,257,20,23,16,21,6,4,49,40,1,1,206,207,261,275,41,42,25,27,1,2,47,57,1,0,219,200,290,258,41,41,29,22,3,2,72,63,2,0,215,216,308,239,50,37,23,26,1,0601620 -ABERDEEN DISTRICT,Idaho,10,8,0,0,1,0,0,0,0,0,9,10,0,0,9,4,0,1,0,0,0,0,0,0,10,13,0,0,6,6,0,0,0,0,0,0,0,0,11,17,0,0,7,9,0,0,0,0,0,1,0,0,12,16,0,0,7,14,0,1600030 -ABERDEEN SCHOOL DISTRICT,Washington,48,40,0,0,2,9,1,4,0,0,43,38,0,0,58,36,0,0,12,10,2,3,0,1,44,36,1,1,50,37,0,0,2,5,2,3,0,1,43,46,2,0,48,57,0,0,8,6,1,2,1,0,45,37,1,0,48,55,1,5300030 -ABERDEEN SCHOOL DISTRICT,Mississippi,1,1,0,0,1,0,0,0,0,0,0,0,29,43,2,1,0,0,0,0,0,0,1,0,0,0,35,32,2,2,0,0,0,0,0,0,0,0,0,0,35,27,1,3,0,0,0,0,0,0,0,0,0,0,29,32,3,1,0,2800360 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,118,76,0,0,15,8,4,6,4,3,23,26,4,5,102,112,0,3,12,14,13,15,9,4,24,26,3,5,121,103,0,2,15,12,6,10,7,12,15,25,1,4,104,112,2,2,13,11,7,6,10,4,17,13,3,4,106,105,1,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv deleted file mode 100644 index fe7f0bae0d..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156252163594862185.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 13 Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Grade 13 Students - Hispanic - male [District] 2024-25,Grade 13 Students - Hispanic - female [District] 2024-25,Grade 13 Students - Black or African American - male [District] 2024-25,Grade 13 Students - Black or African American - female [District] 2024-25,Grade 13 Students - White - male [District] 2024-25,Grade 13 Students - White - female [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Grade 13 Students - Two or More Races - male [District] 2024-25,Grade 13 Students - Two or More Races - female [District] 2024-25,Ungraded Students - American Indian/Alaska Native - male [District] 2024-25,Ungraded Students - American Indian/Alaska Native - female [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Ungraded Students - Hispanic - male [District] 2024-25,Ungraded Students - Hispanic - female [District] 2024-25,Ungraded Students - Black or African American - male [District] 2024-25,Ungraded Students - Black or African American - female [District] 2024-25,Ungraded Students - White - male [District] 2024-25,Ungraded Students - White - female [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Ungraded Students - Two or More Races - male [District] 2024-25,Ungraded Students - Two or More Races - female [District] 2024-25,Adult Education Students - American Indian/Alaska Native - male [District] 2024-25,Adult Education Students - American Indian/Alaska Native - female [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Adult Education Students - Hispanic - male [District] 2024-25,Adult Education Students - Hispanic - female [District] 2024-25,Adult Education Students - Black or African American - male [District] 2024-25,Adult Education Students - Black or African American - female [District] 2024-25,Adult Education Students - White - male [District] 2024-25,Adult Education Students - White - female [District] 2024-25,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Adult Education Students - Two or More Races - male [District] 2024-25,Adult Education Students - Two or More Races - female [District] 2024-25,Full-Time Equivalent (FTE) Teachers [District] 2024-25,Pupil/Teacher Ratio [District] 2024-25,Prekindergarten Teachers [District] 2024-25,Kindergarten Teachers [District] 2024-25,Elementary Teachers [District] 2024-25,Secondary Teachers [District] 2024-25,Ungraded Teachers [District] 2024-25,Total Staff [District] 2024-25,Paraprofessionals/Instructional Aides [District] 2024-25,Instructional Coordinators [District] 2024-25,Elementary School Counselor [District] 2024-25,Secondary School Counselor [District] 2024-25,Other Guidance Counselors [District] 2024-25,Total Guidance Counselors [District] 2024-25,Librarians/media specialists [District] 2024-25,Media Support Staff [District] 2024-25,LEA Administrators [District] 2024-25,LEA Administrative Support Staff [District] 2024-25,School Administrators [District] 2024-25,School Administrative Support Staff [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,10.00,118.00,0.00,0.00,0.07,9.93,†,101.50,44.00,2.00,0.00,2.00,†,2.00,0.00,0.00,4.50,3.00,5.00,8.00,1800046 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,55.40,17.98,†,†,0.20,45.10,10.10,149.50,28.00,3.00,–,–,6.00,6.00,–,0.00,5.00,7.00,5.00,12.00,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,36.20,10.25,–,–,7.40,21.40,7.40,63.40,11.00,1.20,–,–,†,–,–,–,2.00,0.00,1.60,4.00,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,69.75,–,†,†,45.60,24.15,†,277.64,112.79,–,†,†,†,–,–,0.00,0.00,0.00,11.00,15.00,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,35.00,0.20,†,†,†,31.00,4.00,76.00,10.00,–,†,–,2.00,2.00,–,0.00,2.00,0.00,3.00,9.00,4280010 -A+ ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,89.67,18.71,–,4.04,28.58,43.23,13.82,221.50,27.46,1.50,0.00,0.00,3.70,3.70,0.00,0.00,4.00,16.50,6.37,11.25,4800203 -A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,28.00,8.82,0.00,2.66,14.52,2.32,8.50,51.00,4.00,1.00,0.00,0.00,0.00,0.00,0.00,0.00,3.00,7.00,0.00,0.00,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,21.89,16.90,0.00,0.00,6.84,15.05,†,21.89,0.00,0.00,0.00,0.00,†,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0400998 -A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4.00,26.75,0.00,1.00,3.00,0.00,0.00,9.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,1.00,3.00,0.00,0.00,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9.06,22.41,0.00,0.00,0.94,7.12,1.00,18.80,3.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,2.60,1.00,0.64,2.50,4801453 -A-C CENTRAL CUSD 262,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,30.40,10.33,2.00,1.00,19.65,7.75,†,88.50,7.00,0.00,0.00,1.00,†,1.00,2.00,2.00,1.00,2.00,2.40,3.00,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9.55,–,0.00,0.00,0.00,9.55,†,12.15,1.00,0.00,0.00,0.00,†,0.00,0.00,0.00,0.00,0.00,1.00,0.00,5100033 -A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,28.46,14.79,†,5.42,23.04,0.00,†,‡,‡,‡,1.36,0.00,0.00,1.36,‡,‡,‡,‡,‡,‡,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,74.14,12.04,5.00,3.00,31.01,27.85,7.28,139.95,27.99,0.47,–,1.83,†,1.83,0.00,1.36,1.07,2.00,3.00,1.00,2700106 -ABBEVILLE 60,South Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,222.80,12.32,7.00,12.00,124.80,79.00,†,501.25,56.50,3.00,6.00,5.00,†,11.00,7.60,1.00,8.00,19.00,16.00,14.00,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,58.59,13.64,3.00,2.00,25.95,27.55,0.09,112.22,23.04,3.00,1.00,1.00,0.00,2.00,0.32,1.44,1.33,3.00,2.00,3.73,5500030 -ABBOTT ISD,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24.21,11.73,1.08,1.10,8.86,12.37,0.80,43.57,6.51,1.00,0.00,0.00,1.00,1.00,0.00,0.00,2.00,1.70,1.00,0.50,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,125.99,11.32,0.00,7.51,85.04,33.44,†,214.53,28.00,2.00,0.00,5.00,†,5.00,0.04,4.00,11.00,5.00,9.50,4.00,2500051 -ABC UNIFIED,California,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779.33,22.60,†,73.93,425.74,279.66,†,1612.68,77.39,11.50,12.20,15.50,4.10,31.80,0.00,0.00,16.00,31.75,56.00,76.00,0601620 -ABERDEEN DISTRICT,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,45.01,13.89,0.33,2.00,21.00,21.68,†,89.75,8.89,0.75,–,–,2.00,2.00,1.00,0.48,1.00,1.90,3.00,4.22,1600030 -ABERDEEN SCHOOL DISTRICT,Mississippi,0,0,0,1,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,73.58,12.56,0.00,0.00,33.00,35.00,5.58,173.82,19.30,1.00,0.00,0.00,†,0.00,2.00,–,5.00,9.00,8.00,8.00,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,170.80,18.64,7.50,11.79,65.11,86.40,†,382.24,57.77,10.62,3.25,5.89,†,9.14,–,0.00,3.81,9.86,11.27,14.96,5300030 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,303.21,13.96,4.84,15.00,162.41,67.96,53.00,559.98,92.17,0.00,0.00,0.00,14.07,14.07,4.00,0.00,8.00,4.50,14.00,10.00,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv index 6b0bbd7a43..4bdb9ca8cf 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv @@ -1,19 +1,19 @@ "school_state_code","ZIP","Location_ZIP4","County_code","District_School_name","School_ID","State_school_ID","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","Lowest_Grade_Dist","Highest_Grade_Dist","year","geoID","ContainedInPlace","Validated_State_Abbr","School_Management" "geoId/sch0400998","85138","","geoId/04021","A+ Charter Schools (1000166)","0400998","AZ-1000166","5202655589","ARIZONA","AZ","geoId/04","33.042533","-112.015895","dcs:NCES_SuburbSmall","41600 W Smith-Enke Rd Maricopa AZ 85138","Maricopa","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch0400998","dcs:geoId/04","AZ","" "geoId/sch1700024","60459","","geoId/17031","A E R O Spec Educ Coop","1700024","IL-07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.75345","-87.757423","dcs:NCES_SuburbLarge","5400 W 77Th St Burbank IL 60459","Burbank","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" -"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" -"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" -"geoId/sch2500051","1606","","geoId/25027","Abby Kelley Foster Charter Public","2500051","MA-0445","5088548400","Massachusetts","MA","geoId/25","42.305635","-71.801599","dcs:NCES_CityMidsize","10 New Bond Street Worcester MA 1606","Worcester","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch2500051","dcs:geoId/25","MA","" -"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" -"geoId/sch3500187","87110","","geoId/35001","21St Century Public Academy","3500187","NM-35580000","5052540280","NEW MEXICO","NM","geoId/35","35.105101","-106.599226","dcs:NCES_CityLarge","4300 Cutler Ave. Ne Albuquerque NM 87110","ALBUQUERQUE","dcs:SchoolGrade1","dcs:SchoolGrade8","2024","sch3500187","dcs:geoId/35","NM","" -"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" -"geoId/sch3900305","43205","1543","geoId/39049","A+ Arts Academy","3900305","OH-000556","6147251305","Ohio","OH","geoId/39","39.963397","-82.962898","dcs:NCES_CityLarge","1395 Fair Ave Columbus OH 43205-1543","Columbus","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3900305","dcs:geoId/39","OH","" -"geoId/sch3901480","43207","4031","geoId/39049","A+ Children'S Academy","3901480","OH-013232","6144918502","Ohio","OH","geoId/39","39.882382","-82.996978","dcs:NCES_CityLarge","114 Obetz Rd Columbus OH 43207-4031","Columbus","dcs:Kindergarten","dcs:SchoolGrade6","2024","sch3901480","dcs:geoId/39","OH","" -"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" -"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" -"geoId/sch4500690","29620","","geoId/45001","Abbeville 60","4500690","SC-0160","8643665427","South Carolina","SC","geoId/45","34.185163","-82.380158","dcs:NCES_RuralDistant","400 Greenville Street Abbeville SC 29620","Abbeville","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4500690","dcs:geoId/45","SC","" -"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" -"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" -"geoId/sch4807380","76621","0226","geoId/48217","Abbott Isd","4807380","TX-109901","2545823011","Texas","TX","geoId/48","31.883393","-97.07685","dcs:NCES_RuralDistant","219 S First St Abbott TX 76621-0226","ABBOTT","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4807380","dcs:geoId/48","TX","" "geoId/sch5100033","24210","","geoId/51191","A. Linwood Holton Governor'S School","5100033","VA-268","2766194326","Virginia","VA","geoId/51","36.696706","-82.00065","dcs:NCES_SuburbSmall","One Partnership Circle Abingdon VA 24210","Abingdon","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch5100033","dcs:geoId/51","VA","" +"geoId/sch4807380","76621","0226","geoId/48217","Abbott Isd","4807380","TX-109901","2545823011","Texas","TX","geoId/48","31.883393","-97.07685","dcs:NCES_RuralDistant","219 S First St Abbott TX 76621-0226","ABBOTT","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4807380","dcs:geoId/48","TX","" +"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" +"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" +"geoId/sch4500690","29620","","geoId/45001","Abbeville 60","4500690","SC-0160","8643665427","South Carolina","SC","geoId/45","34.185163","-82.380158","dcs:NCES_RuralDistant","400 Greenville Street Abbeville SC 29620","Abbeville","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4500690","dcs:geoId/45","SC","" +"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" +"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" +"geoId/sch3901480","43207","4031","geoId/39049","A+ Children'S Academy","3901480","OH-013232","6144918502","Ohio","OH","geoId/39","39.882382","-82.996978","dcs:NCES_CityLarge","114 Obetz Rd Columbus OH 43207-4031","Columbus","dcs:Kindergarten","dcs:SchoolGrade6","2024","sch3901480","dcs:geoId/39","OH","" +"geoId/sch3900305","43205","1543","geoId/39049","A+ Arts Academy","3900305","OH-000556","6147251305","Ohio","OH","geoId/39","39.963397","-82.962898","dcs:NCES_CityLarge","1395 Fair Ave Columbus OH 43205-1543","Columbus","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3900305","dcs:geoId/39","OH","" +"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" +"geoId/sch3500187","87110","","geoId/35001","21St Century Public Academy","3500187","NM-35580000","5052540280","NEW MEXICO","NM","geoId/35","35.105101","-106.599226","dcs:NCES_CityLarge","4300 Cutler Ave. Ne Albuquerque NM 87110","ALBUQUERQUE","dcs:SchoolGrade1","dcs:SchoolGrade8","2024","sch3500187","dcs:geoId/35","NM","" +"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" +"geoId/sch2500051","1606","","geoId/25027","Abby Kelley Foster Charter Public","2500051","MA-0445","5088548400","Massachusetts","MA","geoId/25","42.305635","-71.801599","dcs:NCES_CityMidsize","10 New Bond Street Worcester MA 1606","Worcester","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch2500051","dcs:geoId/25","MA","" +"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" +"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" "geoId/sch5500030","54405","","geoId/55019","Abbotsford School District","5500030","WI-0007","7152236715","Wisconsin","WI","geoId/55","44.949886","-90.332138","dcs:NCES_RuralRemote","510 W Hemlock St Abbotsford WI 54405","Abbotsford","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch5500030","dcs:geoId/55","WI","" diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv index 454bfc8fce..b23f4d3e94 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv @@ -198,3024 +198,3 @@ geoId/sch0400998,2025,Count_Student_SchoolGrade12,41.0,, geoId/sch1700105,2025,Count_Student_SchoolGrade12,27.0,, geoId/sch1800046,2025,Count_Student_SchoolGrade12,87.0,, geoId/sch2500051,2025,Count_Student_SchoolGrade12,76.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade12,68.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade12,206.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade12,1.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade12,204.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade12,113.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade12,19.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade12,80.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade2,20.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade2,101.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade2,125.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade2,70.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade2,24.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade2,48.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade2,23.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade2,17.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade2,180.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade2,92.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade2,23.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade2,62.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade3,23.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade3,82.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade3,127.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade3,62.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade3,22.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade3,53.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade3,37.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade3,18.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade3,206.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade3,98.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade3,20.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade3,46.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade4,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade4,81.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade4,130.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade4,63.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade4,38.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade4,40.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade4,25.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade4,5.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade4,188.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade4,112.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade4,23.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade4,53.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade5,22.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade5,98.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade5,128.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade5,72.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade5,44.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade5,44.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade5,28.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade5,9.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade5,200.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade5,113.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade5,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade5,52.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade6,55.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade6,22.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade6,67.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade6,128.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade6,62.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade6,70.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade6,49.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade6,26.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade6,16.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade6,20.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade6,211.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade6,115.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade6,51.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade6,16.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade6,56.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade7,40.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade7,24.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade7,93.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade7,111.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade7,67.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade7,86.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade7,54.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade7,19.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade7,53.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade7,184.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade7,144.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade7,48.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade7,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade7,63.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade8,39.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade8,84.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade8,108.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade8,60.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade8,71.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade8,36.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade8,77.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade8,210.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade8,137.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade8,57.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade8,57.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade9,61.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade9,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade9,118.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade9,80.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade9,63.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade9,202.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade9,243.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade9,140.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade9,36.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade9,26.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade9,48.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade1To8,134.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade1To8,174.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade1To8,693.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade1To8,980.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade1To8,531.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade1To8,371.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade1To8,369.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade1To8,210.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade1To8,84.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade1To8,150.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade1To8,1606.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade1To8,928.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade1To8,156.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade1To8,164.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade1To8,439.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade9To12,236.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade9To12,96.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade9To12,380.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade9To12,321.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade9To12,263.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade9To12,846.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade9To12,7.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade9To12,842.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade9To12,509.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade9To12,47.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade9To12,87.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade9To12,248.0,, -geoId/sch0400998,2025,Count_Student_Female_HispanicOrLatino,67.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino,1.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino,37.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino,175.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino,64.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino,29.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino,38.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino,10.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino,4.0,, -geoId/sch4200091,2025,Count_Student_Female_HispanicOrLatino,42.0,, -geoId/sch4280010,2025,Count_Student_Female_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino,32.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino,765.0,, -geoId/sch4801453,2025,Count_Student_Female_HispanicOrLatino,34.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino,20.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino,261.0,, -geoId/sch0400998,2025,Count_Student_Male_HispanicOrLatino,87.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino,7.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino,27.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino,172.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino,60.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino,30.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino,30.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino,4.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino,3.0,, -geoId/sch4200091,2025,Count_Student_Male_HispanicOrLatino,36.0,, -geoId/sch4280010,2025,Count_Student_Male_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino,45.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino,820.0,, -geoId/sch4801453,2025,Count_Student_Male_HispanicOrLatino,45.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino,29.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino,268.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino,154.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino,8.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino,64.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino,347.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino,124.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino,59.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino,68.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino,14.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino,7.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino,78.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino,77.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino,1585.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino,79.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino,49.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino,529.0,, -geoId/sch1700105,2025,Count_Student_Kindergarten,16.0,, -geoId/sch1800046,2025,Count_Student_Kindergarten,107.0,, -geoId/sch2500051,2025,Count_Student_Kindergarten,125.0,, -geoId/sch2700106,2025,Count_Student_Kindergarten,69.0,, -geoId/sch3700372,2025,Count_Student_Kindergarten,52.0,, -geoId/sch3900305,2025,Count_Student_Kindergarten,37.0,, -geoId/sch3901480,2025,Count_Student_Kindergarten,23.0,, -geoId/sch4500690,2025,Count_Student_Kindergarten,196.0,, -geoId/sch4800203,2025,Count_Student_Kindergarten,94.0,, -geoId/sch4807380,2025,Count_Student_Kindergarten,21.0,, -geoId/sch5500030,2025,Count_Student_Kindergarten,52.0,, -geoId/sch0400998,2025,Count_Student_Male,211.0,, -geoId/sch1700105,2025,Count_Student_Male,153.0,, -geoId/sch1800046,2025,Count_Student_Male,562.0,, -geoId/sch2500051,2025,Count_Student_Male,661.0,, -geoId/sch2700106,2025,Count_Student_Male,481.0,, -geoId/sch3500187,2025,Count_Student_Male,188.0,, -geoId/sch3700372,2025,Count_Student_Male,216.0,, -geoId/sch3900305,2025,Count_Student_Male,129.0,, -geoId/sch3901480,2025,Count_Student_Male,60.0,, -geoId/sch4200091,2025,Count_Student_Male,454.0,, -geoId/sch4280010,2025,Count_Student_Male,4.0,, -geoId/sch4500690,2025,Count_Student_Male,1441.0,, -geoId/sch4800203,2025,Count_Student_Male,867.0,, -geoId/sch4801453,2025,Count_Student_Male,107.0,, -geoId/sch4807380,2025,Count_Student_Male,156.0,, -geoId/sch5500030,2025,Count_Student_Male,407.0,, -geoId/sch0400998,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4280010,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch0400998,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,2.0,, -geoId/sch4280010,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1700105,2025,Count_Student_PreKindergarten,28.0,, -geoId/sch2700106,2025,Count_Student_PreKindergarten,30.0,, -geoId/sch4500690,2025,Count_Student_PreKindergarten,102.0,, -geoId/sch4800203,2025,Count_Student_PreKindergarten,147.0,, -geoId/sch4807380,2025,Count_Student_PreKindergarten,12.0,, -geoId/sch5500030,2025,Count_Student_PreKindergarten,60.0,, -geoId/sch0400998,2025,Count_Student,370.0,, -geoId/sch1700105,2025,Count_Student,314.0,, -geoId/sch1800046,2025,Count_Student,1180.0,, -geoId/sch2500051,2025,Count_Student,1426.0,, -geoId/sch2700106,2025,Count_Student,893.0,, -geoId/sch3500187,2025,Count_Student,371.0,, -geoId/sch3700372,2025,Count_Student,421.0,, -geoId/sch3900305,2025,Count_Student,247.0,, -geoId/sch3901480,2025,Count_Student,107.0,, -geoId/sch4200091,2025,Count_Student,996.0,, -geoId/sch4280010,2025,Count_Student,7.0,, -geoId/sch4500690,2025,Count_Student,2746.0,, -geoId/sch4800203,2025,Count_Student,1678.0,, -geoId/sch4801453,2025,Count_Student,203.0,, -geoId/sch4807380,2025,Count_Student,284.0,, -geoId/sch5500030,2025,Count_Student,799.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces,23.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces,10.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces,26.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces,72.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces,31.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces,28.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces,13.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces,16.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces,13.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces,76.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces,2.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces,80.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces,6.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces,10.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces,7.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces,15.0,, -geoId/sch0400998,2025,Count_Student_Female_White,55.0,, -geoId/sch1700105,2025,Count_Student_Female_White,154.0,, -geoId/sch1800046,2025,Count_Student_Female_White,1.0,, -geoId/sch2500051,2025,Count_Student_Female_White,92.0,, -geoId/sch2700106,2025,Count_Student_Female_White,324.0,, -geoId/sch3500187,2025,Count_Student_Female_White,125.0,, -geoId/sch3700372,2025,Count_Student_Female_White,2.0,, -geoId/sch3900305,2025,Count_Student_Female_White,3.0,, -geoId/sch3901480,2025,Count_Student_Female_White,11.0,, -geoId/sch4200091,2025,Count_Student_Female_White,361.0,, -geoId/sch4280010,2025,Count_Student_Female_White,2.0,, -geoId/sch4500690,2025,Count_Student_Female_White,801.0,, -geoId/sch4800203,2025,Count_Student_Female_White,15.0,, -geoId/sch4801453,2025,Count_Student_Female_White,2.0,, -geoId/sch4807380,2025,Count_Student_Female_White,101.0,, -geoId/sch5500030,2025,Count_Student_Female_White,109.0,, -geoId/sch0400998,2025,Count_Student_Male_White,82.0,, -geoId/sch1700105,2025,Count_Student_Male_White,140.0,, -geoId/sch1800046,2025,Count_Student_Male_White,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White,71.0,, -geoId/sch2700106,2025,Count_Student_Male_White,404.0,, -geoId/sch3500187,2025,Count_Student_Male_White,132.0,, -geoId/sch3700372,2025,Count_Student_Male_White,7.0,, -geoId/sch3900305,2025,Count_Student_Male_White,2.0,, -geoId/sch3901480,2025,Count_Student_Male_White,25.0,, -geoId/sch4200091,2025,Count_Student_Male_White,304.0,, -geoId/sch4280010,2025,Count_Student_Male_White,3.0,, -geoId/sch4500690,2025,Count_Student_Male_White,878.0,, -geoId/sch4800203,2025,Count_Student_Male_White,11.0,, -geoId/sch4801453,2025,Count_Student_Male_White,4.0,, -geoId/sch4807380,2025,Count_Student_Male_White,124.0,, -geoId/sch5500030,2025,Count_Student_Male_White,117.0,, -geoId/sch0400998,2025,Count_Student_White,137.0,, -geoId/sch1700105,2025,Count_Student_White,294.0,, -geoId/sch1800046,2025,Count_Student_White,1.0,, -geoId/sch2500051,2025,Count_Student_White,163.0,, -geoId/sch2700106,2025,Count_Student_White,728.0,, -geoId/sch3500187,2025,Count_Student_White,257.0,, -geoId/sch3700372,2025,Count_Student_White,9.0,, -geoId/sch3900305,2025,Count_Student_White,5.0,, -geoId/sch3901480,2025,Count_Student_White,36.0,, -geoId/sch4200091,2025,Count_Student_White,665.0,, -geoId/sch4280010,2025,Count_Student_White,5.0,, -geoId/sch4500690,2025,Count_Student_White,1679.0,, -geoId/sch4800203,2025,Count_Student_White,26.0,, -geoId/sch4801453,2025,Count_Student_White,6.0,, -geoId/sch4807380,2025,Count_Student_White,225.0,, -geoId/sch5500030,2025,Count_Student_White,226.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade1,5.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade1,2.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade1,80.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade1,58.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade1,37.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade1,26.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade1,10.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade1,87.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade1,6.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade1,5.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade1,48.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade1,12.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade1,10.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade1,6.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade1,9.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade1,108.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade1,3.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade1,38.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,4.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,3.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,8.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade1,21.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade1,10.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade1,61.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade1,2.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade1,7.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade1,123.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade1,3.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade1,16.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade1,12.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade1,15.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade1,43.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade1,67.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade1,36.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade1,8.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade1,26.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade1,12.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade1,6.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade1,116.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade1,60.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade1,5.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade1,24.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade1,6.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade1,44.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade1,56.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade1,39.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade1,8.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade1,19.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade1,19.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade1,13.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade1,111.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade1,57.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade1,14.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade1,26.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade10,29.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade10,8.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade10,50.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade10,43.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade10,33.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade10,102.0,, -geoId/sch4280010,2025,Count_Student_Female_SchoolGrade10,2.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade10,95.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade10,54.0,, -geoId/sch4801453,2025,Count_Student_Female_SchoolGrade10,3.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade10,10.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade10,19.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade10,30.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade10,11.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade10,37.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade10,42.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade10,43.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade10,91.0,, -geoId/sch4280010,2025,Count_Student_Male_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade10,114.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade10,92.0,, -geoId/sch4801453,2025,Count_Student_Male_SchoolGrade10,8.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade10,15.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade10,32.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade11,30.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade11,14.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade11,41.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade11,47.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade11,28.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade11,145.0,, -geoId/sch4280010,2025,Count_Student_Female_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade11,83.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade11,56.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade11,11.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade11,30.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade11,45.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade11,15.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade11,47.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade11,33.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade11,28.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade11,100.0,, -geoId/sch4280010,2025,Count_Student_Male_SchoolGrade11,4.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade11,103.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade11,54.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade11,6.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade11,39.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade12,13.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade12,12.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade12,51.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade12,42.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade12,27.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade12,116.0,, -geoId/sch4280010,2025,Count_Student_Female_SchoolGrade12,1.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade12,83.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade12,69.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade12,6.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade12,44.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade12,28.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade12,15.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade12,36.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade12,34.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade12,41.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade12,90.0,, -geoId/sch4280010,2025,Count_Student_Male_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade12,121.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade12,44.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade12,13.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade12,36.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade2,1.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade2,1.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade2,3.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade2,9.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade2,56.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade2,73.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade2,32.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade2,13.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade2,29.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade2,7.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade2,8.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade2,80.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade2,52.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade2,8.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade2,27.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade2,11.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade2,45.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade2,52.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade2,38.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade2,11.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade2,19.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade2,16.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade2,9.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade2,100.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade2,40.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade2,15.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade2,35.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade3,13.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade3,43.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade3,59.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade3,28.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade3,11.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade3,22.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade3,21.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade3,10.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade3,96.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade3,47.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade3,7.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade3,25.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade3,10.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade3,39.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade3,68.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade3,34.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade3,11.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade3,31.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade3,16.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade3,8.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade3,110.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade3,51.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade3,13.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade3,21.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade4,12.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade4,45.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade4,80.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade4,30.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade4,18.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade4,19.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade4,6.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade4,2.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade4,97.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade4,53.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade4,13.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade4,27.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade4,9.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade4,36.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade4,50.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade4,33.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade4,20.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade4,21.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade4,19.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade4,3.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade4,91.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade4,59.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade4,10.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade4,26.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade5,11.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade5,48.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade5,65.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade5,37.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade5,22.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade5,20.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade5,14.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade5,3.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade5,95.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade5,56.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade5,9.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade5,24.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade5,11.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade5,50.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade5,63.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade5,35.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade5,22.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade5,24.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade5,14.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade5,6.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade5,105.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade5,57.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade5,12.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade5,28.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade6,31.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade6,8.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade6,33.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade6,63.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade6,33.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade6,39.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade6,22.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade6,13.0,, -geoId/sch3901480,2025,Count_Student_Female_SchoolGrade6,8.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade6,11.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade6,96.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade6,49.0,, -geoId/sch4801453,2025,Count_Student_Female_SchoolGrade6,20.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade6,6.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade6,29.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade6,24.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade6,14.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade6,34.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade6,65.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade6,29.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade6,31.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade6,27.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade6,13.0,, -geoId/sch3901480,2025,Count_Student_Male_SchoolGrade6,8.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade6,9.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade6,115.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade6,66.0,, -geoId/sch4801453,2025,Count_Student_Male_SchoolGrade6,31.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade6,10.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade6,27.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade7,16.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade7,14.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade7,50.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade7,66.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade7,31.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade7,46.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade7,25.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade7,10.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade7,20.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade7,88.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade7,63.0,, -geoId/sch4801453,2025,Count_Student_Female_SchoolGrade7,24.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade7,14.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade7,36.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade7,24.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade7,10.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade7,43.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade7,45.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade7,36.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade7,40.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade7,29.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade7,9.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade7,33.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade7,96.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade7,81.0,, -geoId/sch4801453,2025,Count_Student_Male_SchoolGrade7,24.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade7,7.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade7,27.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade8,19.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade8,14.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade8,46.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade8,63.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade8,25.0,, -geoId/sch3500187,2025,Count_Student_Female_SchoolGrade8,26.0,, -geoId/sch3700372,2025,Count_Student_Female_SchoolGrade8,16.0,, -geoId/sch3900305,2025,Count_Student_Female_SchoolGrade8,13.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade8,45.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade8,106.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade8,57.0,, -geoId/sch4801453,2025,Count_Student_Female_SchoolGrade8,30.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade8,10.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade8,30.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade8,20.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade8,7.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade8,38.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade8,45.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade8,35.0,, -geoId/sch3500187,2025,Count_Student_Male_SchoolGrade8,45.0,, -geoId/sch3700372,2025,Count_Student_Male_SchoolGrade8,20.0,, -geoId/sch3900305,2025,Count_Student_Male_SchoolGrade8,8.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade8,32.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade8,104.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade8,80.0,, -geoId/sch4801453,2025,Count_Student_Male_SchoolGrade8,27.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade8,11.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade8,27.0,, -geoId/sch0400998,2025,Count_Student_Female_SchoolGrade9,21.0,, -geoId/sch1700105,2025,Count_Student_Female_SchoolGrade9,12.0,, -geoId/sch1800046,2025,Count_Student_Female_SchoolGrade9,61.0,, -geoId/sch2500051,2025,Count_Student_Female_SchoolGrade9,38.0,, -geoId/sch2700106,2025,Count_Student_Female_SchoolGrade9,30.0,, -geoId/sch4200091,2025,Count_Student_Female_SchoolGrade9,103.0,, -geoId/sch4280010,2025,Count_Student_Female_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_Female_SchoolGrade9,115.0,, -geoId/sch4800203,2025,Count_Student_Female_SchoolGrade9,64.0,, -geoId/sch4801453,2025,Count_Student_Female_SchoolGrade9,19.0,, -geoId/sch4807380,2025,Count_Student_Female_SchoolGrade9,11.0,, -geoId/sch5500030,2025,Count_Student_Female_SchoolGrade9,19.0,, -geoId/sch0400998,2025,Count_Student_Male_SchoolGrade9,40.0,, -geoId/sch1700105,2025,Count_Student_Male_SchoolGrade9,9.0,, -geoId/sch1800046,2025,Count_Student_Male_SchoolGrade9,57.0,, -geoId/sch2500051,2025,Count_Student_Male_SchoolGrade9,42.0,, -geoId/sch2700106,2025,Count_Student_Male_SchoolGrade9,33.0,, -geoId/sch4200091,2025,Count_Student_Male_SchoolGrade9,99.0,, -geoId/sch4280010,2025,Count_Student_Male_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_Male_SchoolGrade9,128.0,, -geoId/sch4800203,2025,Count_Student_Male_SchoolGrade9,76.0,, -geoId/sch4801453,2025,Count_Student_Male_SchoolGrade9,17.0,, -geoId/sch4807380,2025,Count_Student_Male_SchoolGrade9,15.0,, -geoId/sch5500030,2025,Count_Student_Male_SchoolGrade9,29.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,2.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_Kindergarten,1.0,, -geoId/sch2700106,2025,Count_Student_Asian_Kindergarten,1.0,, -geoId/sch3700372,2025,Count_Student_Asian_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_Asian_Kindergarten,2.0,, -geoId/sch3901480,2025,Count_Student_Asian_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_Kindergarten,1.0,, -geoId/sch4800203,2025,Count_Student_Asian_Kindergarten,1.0,, -geoId/sch4807380,2025,Count_Student_Asian_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Black_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Black_Kindergarten,101.0,, -geoId/sch2500051,2025,Count_Student_Black_Kindergarten,52.0,, -geoId/sch2700106,2025,Count_Student_Black_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Black_Kindergarten,43.0,, -geoId/sch3900305,2025,Count_Student_Black_Kindergarten,26.0,, -geoId/sch3901480,2025,Count_Student_Black_Kindergarten,11.0,, -geoId/sch4500690,2025,Count_Student_Black_Kindergarten,66.0,, -geoId/sch4800203,2025,Count_Student_Black_Kindergarten,3.0,, -geoId/sch4807380,2025,Count_Student_Black_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Black_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_Kindergarten,44.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_Kindergarten,15.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_Kindergarten,6.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_Kindergarten,3.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_Kindergarten,5.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_Kindergarten,88.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_Kindergarten,6.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_Kindergarten,33.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Kindergarten,7.0,, -geoId/sch1800046,2025,Count_Student_Female_Kindergarten,51.0,, -geoId/sch2500051,2025,Count_Student_Female_Kindergarten,59.0,, -geoId/sch2700106,2025,Count_Student_Female_Kindergarten,32.0,, -geoId/sch3700372,2025,Count_Student_Female_Kindergarten,26.0,, -geoId/sch3900305,2025,Count_Student_Female_Kindergarten,22.0,, -geoId/sch3901480,2025,Count_Student_Female_Kindergarten,10.0,, -geoId/sch4500690,2025,Count_Student_Female_Kindergarten,106.0,, -geoId/sch4800203,2025,Count_Student_Female_Kindergarten,51.0,, -geoId/sch4807380,2025,Count_Student_Female_Kindergarten,9.0,, -geoId/sch5500030,2025,Count_Student_Female_Kindergarten,28.0,, -geoId/sch1700105,2025,Count_Student_Male_Kindergarten,9.0,, -geoId/sch1800046,2025,Count_Student_Male_Kindergarten,56.0,, -geoId/sch2500051,2025,Count_Student_Male_Kindergarten,66.0,, -geoId/sch2700106,2025,Count_Student_Male_Kindergarten,37.0,, -geoId/sch3700372,2025,Count_Student_Male_Kindergarten,26.0,, -geoId/sch3900305,2025,Count_Student_Male_Kindergarten,15.0,, -geoId/sch3901480,2025,Count_Student_Male_Kindergarten,13.0,, -geoId/sch4500690,2025,Count_Student_Male_Kindergarten,89.0,, -geoId/sch4800203,2025,Count_Student_Male_Kindergarten,43.0,, -geoId/sch4807380,2025,Count_Student_Male_Kindergarten,12.0,, -geoId/sch5500030,2025,Count_Student_Male_Kindergarten,24.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_Kindergarten,2.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_Kindergarten,11.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_Kindergarten,3.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_Kindergarten,4.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_Kindergarten,3.0,, -geoId/sch1700105,2025,Count_Student_White_Kindergarten,14.0,, -geoId/sch1800046,2025,Count_Student_White_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_White_Kindergarten,15.0,, -geoId/sch2700106,2025,Count_Student_White_Kindergarten,52.0,, -geoId/sch3700372,2025,Count_Student_White_Kindergarten,2.0,, -geoId/sch3900305,2025,Count_Student_White_Kindergarten,2.0,, -geoId/sch3901480,2025,Count_Student_White_Kindergarten,6.0,, -geoId/sch4500690,2025,Count_Student_White_Kindergarten,119.0,, -geoId/sch4800203,2025,Count_Student_White_Kindergarten,2.0,, -geoId/sch4807380,2025,Count_Student_White_Kindergarten,14.0,, -geoId/sch5500030,2025,Count_Student_White_Kindergarten,16.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Black_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Black_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Black_PreKindergarten,38.0,, -geoId/sch4800203,2025,Count_Student_Black_PreKindergarten,12.0,, -geoId/sch4807380,2025,Count_Student_Black_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Black_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_PreKindergarten,6.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_PreKindergarten,4.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_PreKindergarten,132.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_PreKindergarten,1.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_PreKindergarten,41.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_White_PreKindergarten,27.0,, -geoId/sch2700106,2025,Count_Student_White_PreKindergarten,22.0,, -geoId/sch4500690,2025,Count_Student_White_PreKindergarten,57.0,, -geoId/sch4800203,2025,Count_Student_White_PreKindergarten,3.0,, -geoId/sch4807380,2025,Count_Student_White_PreKindergarten,11.0,, -geoId/sch5500030,2025,Count_Student_White_PreKindergarten,17.0,, -geoId/sch1700105,2025,Count_Student_Female_PreKindergarten,12.0,, -geoId/sch2700106,2025,Count_Student_Female_PreKindergarten,10.0,, -geoId/sch4500690,2025,Count_Student_Female_PreKindergarten,48.0,, -geoId/sch4800203,2025,Count_Student_Female_PreKindergarten,80.0,, -geoId/sch4807380,2025,Count_Student_Female_PreKindergarten,9.0,, -geoId/sch5500030,2025,Count_Student_Female_PreKindergarten,30.0,, -geoId/sch1700105,2025,Count_Student_Male_PreKindergarten,16.0,, -geoId/sch2700106,2025,Count_Student_Male_PreKindergarten,20.0,, -geoId/sch4500690,2025,Count_Student_Male_PreKindergarten,54.0,, -geoId/sch4800203,2025,Count_Student_Male_PreKindergarten,67.0,, -geoId/sch4807380,2025,Count_Student_Male_PreKindergarten,3.0,, -geoId/sch5500030,2025,Count_Student_Male_PreKindergarten,30.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,3.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_PreKindergarten,2.0,, -geoId/sch0400998,2025,Count_Student_Female_TwoOrMoreRaces,11.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces,5.0,, -geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, -geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces,35.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, -geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces,16.0,, -geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces,8.0,, -geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces,5.0,, -geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces,8.0,, -geoId/sch4200091,2025,Count_Student_Female_TwoOrMoreRaces,50.0,, -geoId/sch4280010,2025,Count_Student_Female_TwoOrMoreRaces,1.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces,42.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces,3.0,, -geoId/sch4801453,2025,Count_Student_Female_TwoOrMoreRaces,2.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces,6.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces,9.0,, -geoId/sch0400998,2025,Count_Student_Male_TwoOrMoreRaces,12.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, -geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces,10.0,, -geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces,37.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces,15.0,, -geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces,12.0,, -geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, -geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces,11.0,, -geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces,5.0,, -geoId/sch4200091,2025,Count_Student_Male_TwoOrMoreRaces,26.0,, -geoId/sch4280010,2025,Count_Student_Male_TwoOrMoreRaces,1.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces,38.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces,3.0,, -geoId/sch4801453,2025,Count_Student_Male_TwoOrMoreRaces,8.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces,1.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces,6.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,4.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,1.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade10,2.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade10,3.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade10,1.0,, -geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade10,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade10,2.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade10,8.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade10,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade10,80.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade10,60.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade10,0.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade10,39.0,, -geoId/sch4280010,2025,Count_Student_Black_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade10,60.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade10,4.0,, -geoId/sch4801453,2025,Count_Student_Black_SchoolGrade10,6.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade10,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade10,1.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade10,23.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade10,3.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade10,3.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade10,10.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade10,9.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade10,10.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade10,8.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade10,140.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade10,5.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade10,5.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade10,26.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade10,18.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade10,15.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade10,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade10,9.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade10,62.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade10,127.0,, -geoId/sch4280010,2025,Count_Student_White_SchoolGrade10,1.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade10,138.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade10,2.0,, -geoId/sch4801453,2025,Count_Student_White_SchoolGrade10,0.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade10,20.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade10,22.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade2,95.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade2,64.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade2,2.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade2,35.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade2,18.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade2,9.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade2,59.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade2,2.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade2,42.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade2,10.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade2,8.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade2,11.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade2,89.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade2,2.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade2,43.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,7.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,3.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,10.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade2,19.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade2,10.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade2,60.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade2,13.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade2,1.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade2,4.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade2,106.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade2,1.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade2,20.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade2,16.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,2.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade3,1.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade3,73.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade3,69.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade3,44.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade3,34.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade3,7.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade3,79.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade3,2.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade3,1.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade3,6.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade3,41.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade3,4.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade3,6.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade3,3.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade3,95.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade3,39.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,5.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,4.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,3.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade3,23.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade3,11.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade3,54.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade3,15.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade3,1.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade3,9.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade3,120.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade3,1.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade3,17.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade3,7.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,3.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,2.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade4,4.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade4,1.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade4,2.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade4,1.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade4,72.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade4,76.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade4,3.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade4,32.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade4,21.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade4,63.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade4,3.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade4,5.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade4,17.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade4,12.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade4,11.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade4,7.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade4,1.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade4,4.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade4,108.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade4,5.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade4,36.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,4.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,14.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,4.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,6.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,1.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade4,2.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade4,19.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade4,16.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade4,46.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade4,22.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade4,1.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade4,3.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade4,113.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade4,18.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade4,13.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,1.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,2.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,1.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade5,5.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade5,1.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade5,2.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade5,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade5,2.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade5,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade5,91.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade5,71.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade5,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade5,1.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade5,33.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade5,24.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade5,4.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade5,76.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade5,3.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade5,1.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade5,0.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade5,5.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade5,22.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade5,9.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade5,4.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade5,7.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade5,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade5,4.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade5,104.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade5,1.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade5,38.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,1.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,11.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,3.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,7.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,1.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade5,0.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade5,21.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade5,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade5,18.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade5,60.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade5,34.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade5,1.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade5,0.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade5,4.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade5,113.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade5,3.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade5,19.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade5,12.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade6,1.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade6,4.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade6,1.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch3901480,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade6,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade6,1.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade6,7.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade6,60.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade6,72.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade6,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade6,3.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade6,37.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade6,22.0,, -geoId/sch3901480,2025,Count_Student_Black_SchoolGrade6,8.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade6,2.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade6,65.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade6,2.0,, -geoId/sch4801453,2025,Count_Student_Black_SchoolGrade6,23.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade6,1.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade6,0.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade6,16.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade6,7.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade6,28.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade6,6.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade6,16.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade6,8.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino_SchoolGrade6,1.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade6,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade6,3.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade6,112.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade6,23.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade6,5.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade6,42.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,7.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,0.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,4.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade6,2.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade6,24.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade6,22.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade6,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade6,17.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade6,52.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade6,43.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade6,1.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade6,1.0,, -geoId/sch3901480,2025,Count_Student_White_SchoolGrade6,3.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade6,14.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade6,139.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade6,1.0,, -geoId/sch4801453,2025,Count_Student_White_SchoolGrade6,1.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade6,9.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade6,11.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade7,8.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade7,2.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade7,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade7,1.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade7,6.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade7,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade7,88.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade7,59.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade7,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade7,4.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade7,32.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade7,17.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade7,6.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade7,54.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade7,2.0,, -geoId/sch4801453,2025,Count_Student_Black_SchoolGrade7,22.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade7,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade7,0.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade7,18.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade7,0.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade7,3.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade7,24.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade7,6.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade7,7.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade7,14.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade7,0.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade7,8.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade7,5.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade7,137.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade7,21.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade7,5.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade7,49.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,1.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,4.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,6.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,3.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,5.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,4.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,8.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,1.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,3.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade7,2.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade7,12.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade7,22.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade7,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade7,14.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade7,56.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade7,70.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade7,2.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade7,0.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade7,32.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade7,116.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade7,3.0,, -geoId/sch4801453,2025,Count_Student_White_SchoolGrade7,2.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade7,15.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade7,11.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade8,2.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch3500187,2025,Count_Student_Asian_SchoolGrade8,1.0,, -geoId/sch3700372,2025,Count_Student_Asian_SchoolGrade8,1.0,, -geoId/sch3900305,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade8,1.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade8,1.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade8,1.0,, -geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade8,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade8,5.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade8,7.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade8,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade8,77.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade8,61.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade8,0.0,, -geoId/sch3500187,2025,Count_Student_Black_SchoolGrade8,4.0,, -geoId/sch3700372,2025,Count_Student_Black_SchoolGrade8,30.0,, -geoId/sch3900305,2025,Count_Student_Black_SchoolGrade8,20.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade8,14.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade8,62.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade8,3.0,, -geoId/sch4801453,2025,Count_Student_Black_SchoolGrade8,34.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade8,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade8,0.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade8,15.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade8,1.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade8,5.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade8,28.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade8,9.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino_SchoolGrade8,2.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino_SchoolGrade8,4.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino_SchoolGrade8,0.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade8,4.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade8,8.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade8,128.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade8,18.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade8,2.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade8,30.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,1.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,3.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,5.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,0.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,7.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,3.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,2.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade8,0.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade8,14.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade8,19.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade8,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade8,14.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade8,48.0,, -geoId/sch3500187,2025,Count_Student_White_SchoolGrade8,58.0,, -geoId/sch3700372,2025,Count_Student_White_SchoolGrade8,1.0,, -geoId/sch3900305,2025,Count_Student_White_SchoolGrade8,0.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade8,51.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade8,135.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade8,3.0,, -geoId/sch4801453,2025,Count_Student_White_SchoolGrade8,3.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade8,18.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade8,22.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,1.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade9,1.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade9,2.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade9,4.0,, -geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade9,2.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch4801453,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade9,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade9,3.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade9,5.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade9,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade9,109.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade9,48.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade9,0.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade9,34.0,, -geoId/sch4280010,2025,Count_Student_Black_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade9,70.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade9,5.0,, -geoId/sch4801453,2025,Count_Student_Black_SchoolGrade9,23.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade9,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade9,1.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade9,28.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade9,1.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade9,8.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade9,11.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade9,11.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade9,19.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade9,7.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade9,132.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino_SchoolGrade9,12.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade9,8.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade9,28.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,1.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,4.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,4.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,14.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,10.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,2.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade9,3.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade9,23.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade9,20.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade9,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade9,15.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade9,50.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade9,130.0,, -geoId/sch4280010,2025,Count_Student_White_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade9,154.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade9,1.0,, -geoId/sch4801453,2025,Count_Student_White_SchoolGrade9,0.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade9,17.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade9,13.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,1.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,1.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,4.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,4.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,16.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,1.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade11,3.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade11,4.0,, -geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade11,3.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade11,1.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade11,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade11,3.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade11,8.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade11,1.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade11,84.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade11,61.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade11,0.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade11,30.0,, -geoId/sch4280010,2025,Count_Student_Black_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade11,63.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade11,3.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade11,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade11,0.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade11,35.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade11,1.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade11,3.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade11,12.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade11,9.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade11,24.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade11,6.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade11,106.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade11,3.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade11,41.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,1.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,2.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,15.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade11,29.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade11,27.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade11,0.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade11,4.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade11,46.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade11,171.0,, -geoId/sch4280010,2025,Count_Student_White_SchoolGrade11,3.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade11,112.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade11,0.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade11,13.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade11,25.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, -geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch1700105,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch2500051,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch2700106,2025,Count_Student_Asian_SchoolGrade12,2.0,, -geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade12,6.0,, -geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch4807380,2025,Count_Student_Asian_SchoolGrade12,0.0,, -geoId/sch5500030,2025,Count_Student_Asian_SchoolGrade12,5.0,, -geoId/sch0400998,2025,Count_Student_Black_SchoolGrade12,3.0,, -geoId/sch1700105,2025,Count_Student_Black_SchoolGrade12,0.0,, -geoId/sch1800046,2025,Count_Student_Black_SchoolGrade12,78.0,, -geoId/sch2500051,2025,Count_Student_Black_SchoolGrade12,46.0,, -geoId/sch2700106,2025,Count_Student_Black_SchoolGrade12,0.0,, -geoId/sch4200091,2025,Count_Student_Black_SchoolGrade12,31.0,, -geoId/sch4280010,2025,Count_Student_Black_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_Black_SchoolGrade12,51.0,, -geoId/sch4800203,2025,Count_Student_Black_SchoolGrade12,4.0,, -geoId/sch4807380,2025,Count_Student_Black_SchoolGrade12,0.0,, -geoId/sch5500030,2025,Count_Student_Black_SchoolGrade12,0.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade12,19.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino_SchoolGrade12,1.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade12,6.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino_SchoolGrade12,20.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino_SchoolGrade12,6.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade12,13.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino_SchoolGrade12,8.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade12,106.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino_SchoolGrade12,1.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino_SchoolGrade12,45.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,1.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,2.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,16.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,10.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, -geoId/sch0400998,2025,Count_Student_White_SchoolGrade12,17.0,, -geoId/sch1700105,2025,Count_Student_White_SchoolGrade12,25.0,, -geoId/sch1800046,2025,Count_Student_White_SchoolGrade12,1.0,, -geoId/sch2500051,2025,Count_Student_White_SchoolGrade12,10.0,, -geoId/sch2700106,2025,Count_Student_White_SchoolGrade12,59.0,, -geoId/sch4200091,2025,Count_Student_White_SchoolGrade12,140.0,, -geoId/sch4280010,2025,Count_Student_White_SchoolGrade12,1.0,, -geoId/sch4500690,2025,Count_Student_White_SchoolGrade12,134.0,, -geoId/sch4800203,2025,Count_Student_White_SchoolGrade12,3.0,, -geoId/sch4807380,2025,Count_Student_White_SchoolGrade12,18.0,, -geoId/sch5500030,2025,Count_Student_White_SchoolGrade12,29.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,2.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_Kindergarten,1.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_Kindergarten,1.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian_Kindergarten,1.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian_Kindergarten,2.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_Kindergarten,1.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Black_Kindergarten,49.0,, -geoId/sch2500051,2025,Count_Student_Female_Black_Kindergarten,27.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Black_Kindergarten,21.0,, -geoId/sch3900305,2025,Count_Student_Female_Black_Kindergarten,15.0,, -geoId/sch3901480,2025,Count_Student_Female_Black_Kindergarten,6.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_Kindergarten,30.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Black_Kindergarten,52.0,, -geoId/sch2500051,2025,Count_Student_Male_Black_Kindergarten,25.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Black_Kindergarten,22.0,, -geoId/sch3900305,2025,Count_Student_Male_Black_Kindergarten,11.0,, -geoId/sch3901480,2025,Count_Student_Male_Black_Kindergarten,5.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_Kindergarten,36.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_Kindergarten,3.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,2.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,17.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,7.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,3.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,5.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,5.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,48.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,3.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,16.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,3.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,27.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,8.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,2.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,1.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,2.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,40.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,3.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,17.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_PreKindergarten,19.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_PreKindergarten,10.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_PreKindergarten,19.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_PreKindergarten,2.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,2.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,1.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,69.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,1.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,19.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,4.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,3.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,63.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,22.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,2.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,1.0,, -geoId/sch1700105,2025,Count_Student_Female_White_PreKindergarten,11.0,, -geoId/sch2700106,2025,Count_Student_Female_White_PreKindergarten,6.0,, -geoId/sch4500690,2025,Count_Student_Female_White_PreKindergarten,27.0,, -geoId/sch4800203,2025,Count_Student_Female_White_PreKindergarten,1.0,, -geoId/sch4807380,2025,Count_Student_Female_White_PreKindergarten,8.0,, -geoId/sch5500030,2025,Count_Student_Female_White_PreKindergarten,10.0,, -geoId/sch1700105,2025,Count_Student_Male_White_PreKindergarten,16.0,, -geoId/sch2700106,2025,Count_Student_Male_White_PreKindergarten,16.0,, -geoId/sch4500690,2025,Count_Student_Male_White_PreKindergarten,30.0,, -geoId/sch4800203,2025,Count_Student_Male_White_PreKindergarten,2.0,, -geoId/sch4807380,2025,Count_Student_Male_White_PreKindergarten,3.0,, -geoId/sch5500030,2025,Count_Student_Male_White_PreKindergarten,7.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade1,2.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade1,2.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade1,3.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade1,39.0,, -geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade1,34.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade1,21.0,, -geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade1,8.0,, -geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade1,5.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade1,44.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade1,3.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade1,41.0,, -geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade1,24.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade1,16.0,, -geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade1,18.0,, -geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade1,5.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade1,43.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade1,3.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,24.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,9.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,4.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,3.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,55.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade1,19.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,24.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,6.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,3.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,7.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,53.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade1,19.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,6.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1.0,, -geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0.0,, -geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade1,15.0,, -geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade1,5.0,, -geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade1,27.0,, -geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade1,2.0,, -geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade1,0.0,, -geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade1,64.0,, -geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade1,2.0,, -geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade1,3.0,, -geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade1,5.0,, -geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade1,6.0,, -geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade1,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade1,5.0,, -geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade1,34.0,, -geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade1,0.0,, -geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade1,0.0,, -geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade1,0.0,, -geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade1,7.0,, -geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade1,59.0,, -geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade1,1.0,, -geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade1,13.0,, -geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade1,7.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade2,1.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade2,2.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade2,52.0,, -geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade2,39.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade2,20.0,, -geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade2,6.0,, -geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade2,4.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade2,25.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade2,43.0,, -geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade2,25.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade2,2.0,, -geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade2,15.0,, -geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade2,12.0,, -geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade2,5.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade2,34.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade2,2.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,27.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,7.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,5.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,8.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,52.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade2,20.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,15.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,37.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade2,23.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,6.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,5.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,2.0,, -geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,4.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0.0,, -geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade2,9.0,, -geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade2,4.0,, -geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade2,25.0,, -geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade2,7.0,, -geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade2,0.0,, -geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade2,1.0,, -geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade2,46.0,, -geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade2,0.0,, -geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade2,7.0,, -geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade2,6.0,, -geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade2,10.0,, -geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade2,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade2,6.0,, -geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade2,35.0,, -geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade2,6.0,, -geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade2,1.0,, -geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade2,0.0,, -geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade2,3.0,, -geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade2,60.0,, -geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade2,1.0,, -geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade2,13.0,, -geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade2,10.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade3,1.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade3,39.0,, -geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade3,32.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade3,19.0,, -geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade3,19.0,, -geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade3,2.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade3,41.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade3,1.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade3,1.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade3,34.0,, -geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade3,37.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade3,25.0,, -geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade3,15.0,, -geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade3,5.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade3,38.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade3,1.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,20.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,45.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade3,22.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,21.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,50.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade3,17.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, -geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, -geoId/sch3500187,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2.0,, -geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,3.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,3.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch3500187,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2.0,, -geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0.0,, -geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade3,13.0,, -geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade3,5.0,, -geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade3,23.0,, -geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade3,8.0,, -geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade3,1.0,, -geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade3,1.0,, -geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade3,7.0,, -geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade3,50.0,, -geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade3,1.0,, -geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade3,5.0,, -geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade3,3.0,, -geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade3,10.0,, -geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade3,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade3,6.0,, -geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade3,31.0,, -geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade3,7.0,, -geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade3,0.0,, -geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade3,0.0,, -geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade3,2.0,, -geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade3,70.0,, -geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade3,0.0,, -geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade3,12.0,, -geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade3,4.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,2.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,1.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian_SchoolGrade4,3.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian_SchoolGrade4,1.0,, -geoId/sch3500187,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian_SchoolGrade4,1.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian_SchoolGrade4,1.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian_SchoolGrade4,1.0,, -geoId/sch1700105,2025,Count_Student_Female_Black_SchoolGrade4,1.0,, -geoId/sch1800046,2025,Count_Student_Female_Black_SchoolGrade4,40.0,, -geoId/sch2500051,2025,Count_Student_Female_Black_SchoolGrade4,50.0,, -geoId/sch2700106,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Black_SchoolGrade4,1.0,, -geoId/sch3700372,2025,Count_Student_Female_Black_SchoolGrade4,16.0,, -geoId/sch3900305,2025,Count_Student_Female_Black_SchoolGrade4,5.0,, -geoId/sch3901480,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Black_SchoolGrade4,34.0,, -geoId/sch4800203,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Black_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Black_SchoolGrade4,32.0,, -geoId/sch2500051,2025,Count_Student_Male_Black_SchoolGrade4,26.0,, -geoId/sch2700106,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Black_SchoolGrade4,2.0,, -geoId/sch3700372,2025,Count_Student_Male_Black_SchoolGrade4,16.0,, -geoId/sch3900305,2025,Count_Student_Male_Black_SchoolGrade4,16.0,, -geoId/sch3901480,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Black_SchoolGrade4,29.0,, -geoId/sch4800203,2025,Count_Student_Male_Black_SchoolGrade4,3.0,, -geoId/sch4807380,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Black_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,4.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,10.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,7.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,5.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,1.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,52.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino_SchoolGrade4,20.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,7.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,5.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,6.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,5.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,56.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino_SchoolGrade4,16.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0.0,, -geoId/sch1700105,2025,Count_Student_Female_White_SchoolGrade4,11.0,, -geoId/sch1800046,2025,Count_Student_Female_White_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Female_White_SchoolGrade4,8.0,, -geoId/sch2700106,2025,Count_Student_Female_White_SchoolGrade4,21.0,, -geoId/sch3500187,2025,Count_Student_Female_White_SchoolGrade4,11.0,, -geoId/sch3700372,2025,Count_Student_Female_White_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Female_White_SchoolGrade4,0.0,, -geoId/sch3901480,2025,Count_Student_Female_White_SchoolGrade4,0.0,, -geoId/sch4500690,2025,Count_Student_Female_White_SchoolGrade4,57.0,, -geoId/sch4800203,2025,Count_Student_Female_White_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Female_White_SchoolGrade4,10.0,, -geoId/sch5500030,2025,Count_Student_Female_White_SchoolGrade4,5.0,, -geoId/sch1700105,2025,Count_Student_Male_White_SchoolGrade4,8.0,, -geoId/sch1800046,2025,Count_Student_Male_White_SchoolGrade4,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White_SchoolGrade4,8.0,, -geoId/sch2700106,2025,Count_Student_Male_White_SchoolGrade4,25.0,, -geoId/sch3500187,2025,Count_Student_Male_White_SchoolGrade4,11.0,, -geoId/sch3700372,2025,Count_Student_Male_White_SchoolGrade4,0.0,, -geoId/sch3900305,2025,Count_Student_Male_White_SchoolGrade4,1.0,, -geoId/sch3901480,2025,Count_Student_Male_White_SchoolGrade4,3.0,, -geoId/sch4500690,2025,Count_Student_Male_White_SchoolGrade4,56.0,, -geoId/sch4800203,2025,Count_Student_Male_White_SchoolGrade4,0.0,, -geoId/sch4807380,2025,Count_Student_Male_White_SchoolGrade4,8.0,, -geoId/sch5500030,2025,Count_Student_Male_White_SchoolGrade4,8.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2.0,, -geoId/sch1800046,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,8.0,, -geoId/sch2700106,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch3700372,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch4500690,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2.0,, -geoId/sch1700105,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch1800046,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch2500051,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,3.0,, -geoId/sch2700106,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch3700372,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch3900305,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch3901480,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2.0,, -geoId/sch4500690,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,3.0,, -geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch5500030,2025,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1.0,, -geoId/sch1700105,2025,Count_Student_Female_White_Kindergarten,5.0,, -geoId/sch1800046,2025,Count_Student_Female_White_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Female_White_Kindergarten,7.0,, -geoId/sch2700106,2025,Count_Student_Female_White_Kindergarten,23.0,, -geoId/sch3700372,2025,Count_Student_Female_White_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_Female_White_Kindergarten,2.0,, -geoId/sch3901480,2025,Count_Student_Female_White_Kindergarten,2.0,, -geoId/sch4500690,2025,Count_Student_Female_White_Kindergarten,70.0,, -geoId/sch4800203,2025,Count_Student_Female_White_Kindergarten,2.0,, -geoId/sch4807380,2025,Count_Student_Female_White_Kindergarten,6.0,, -geoId/sch5500030,2025,Count_Student_Female_White_Kindergarten,10.0,, -geoId/sch1700105,2025,Count_Student_Male_White_Kindergarten,9.0,, -geoId/sch1800046,2025,Count_Student_Male_White_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White_Kindergarten,8.0,, -geoId/sch2700106,2025,Count_Student_Male_White_Kindergarten,29.0,, -geoId/sch3700372,2025,Count_Student_Male_White_Kindergarten,1.0,, -geoId/sch3900305,2025,Count_Student_Male_White_Kindergarten,0.0,, -geoId/sch3901480,2025,Count_Student_Male_White_Kindergarten,4.0,, -geoId/sch4500690,2025,Count_Student_Male_White_Kindergarten,49.0,, -geoId/sch4800203,2025,Count_Student_Male_White_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Student_Male_White_Kindergarten,8.0,, -geoId/sch5500030,2025,Count_Student_Male_White_Kindergarten,6.0,, -geoId/sch0400998,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch1700105,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch1800046,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch2500051,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch3700372,2025,Count_Faculty_ElementarySchoolCounselor,1.36,, -geoId/sch3900305,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch3901480,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch4500690,2025,Count_Faculty_ElementarySchoolCounselor,6.0,, -geoId/sch4800203,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch4801453,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch4807380,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch5100033,2025,Count_Faculty_ElementarySchoolCounselor,0.0,, -geoId/sch5500030,2025,Count_Faculty_ElementarySchoolCounselor,1.0,, -geoId/sch0400998,2025,Count_Teacher_ElementaryTeacher,6.84,, -geoId/sch1700024,2025,Count_Teacher_ElementaryTeacher,45.6,, -geoId/sch1700105,2025,Count_Teacher_ElementaryTeacher,19.65,, -geoId/sch1800046,2025,Count_Teacher_ElementaryTeacher,0.07,, -geoId/sch2500051,2025,Count_Teacher_ElementaryTeacher,85.04,, -geoId/sch2700106,2025,Count_Teacher_ElementaryTeacher,31.01,, -geoId/sch3500187,2025,Count_Teacher_ElementaryTeacher,7.4,, -geoId/sch3700372,2025,Count_Teacher_ElementaryTeacher,23.04,, -geoId/sch3900305,2025,Count_Teacher_ElementaryTeacher,14.52,, -geoId/sch3901480,2025,Count_Teacher_ElementaryTeacher,3.0,, -geoId/sch4200091,2025,Count_Teacher_ElementaryTeacher,0.2,, -geoId/sch4500690,2025,Count_Teacher_ElementaryTeacher,124.8,, -geoId/sch4800203,2025,Count_Teacher_ElementaryTeacher,28.58,, -geoId/sch4801453,2025,Count_Teacher_ElementaryTeacher,0.94,, -geoId/sch4807380,2025,Count_Teacher_ElementaryTeacher,8.86,, -geoId/sch5100033,2025,Count_Teacher_ElementaryTeacher,0.0,, -geoId/sch5500030,2025,Count_Teacher_ElementaryTeacher,25.95,, -geoId/sch0400998,2025,Count_Teacher,21.89,, -geoId/sch1700024,2025,Count_Teacher,69.75,, -geoId/sch1700105,2025,Count_Teacher,30.4,, -geoId/sch1800046,2025,Count_Teacher,10.0,, -geoId/sch2500051,2025,Count_Teacher,125.99,, -geoId/sch2700106,2025,Count_Teacher,74.14,, -geoId/sch3500187,2025,Count_Teacher,36.2,, -geoId/sch3700372,2025,Count_Teacher,28.46,, -geoId/sch3900305,2025,Count_Teacher,28.0,, -geoId/sch3901480,2025,Count_Teacher,4.0,, -geoId/sch4200091,2025,Count_Teacher,55.4,, -geoId/sch4280010,2025,Count_Teacher,35.0,, -geoId/sch4500690,2025,Count_Teacher,222.8,, -geoId/sch4800203,2025,Count_Teacher,89.67,, -geoId/sch4801453,2025,Count_Teacher,9.06,, -geoId/sch4807380,2025,Count_Teacher,24.21,, -geoId/sch5100033,2025,Count_Teacher,9.55,, -geoId/sch5500030,2025,Count_Teacher,58.59,, -geoId/sch0400998,2025,Count_Teacher_Kindergarten,0.0,, -geoId/sch1700105,2025,Count_Teacher_Kindergarten,1.0,, -geoId/sch1800046,2025,Count_Teacher_Kindergarten,0.0,, -geoId/sch2500051,2025,Count_Teacher_Kindergarten,7.51,, -geoId/sch2700106,2025,Count_Teacher_Kindergarten,3.0,, -geoId/sch3700372,2025,Count_Teacher_Kindergarten,5.42,, -geoId/sch3900305,2025,Count_Teacher_Kindergarten,2.66,, -geoId/sch3901480,2025,Count_Teacher_Kindergarten,1.0,, -geoId/sch4500690,2025,Count_Teacher_Kindergarten,12.0,, -geoId/sch4800203,2025,Count_Teacher_Kindergarten,4.04,, -geoId/sch4801453,2025,Count_Teacher_Kindergarten,0.0,, -geoId/sch4807380,2025,Count_Teacher_Kindergarten,1.1,, -geoId/sch5100033,2025,Count_Teacher_Kindergarten,0.0,, -geoId/sch5500030,2025,Count_Teacher_Kindergarten,2.0,, -geoId/sch0400998,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, -geoId/sch1700024,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, -geoId/sch1700105,2025,Count_Faculty_LEAAdministrativeSupportStaff,2.0,, -geoId/sch1800046,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, -geoId/sch2500051,2025,Count_Faculty_LEAAdministrativeSupportStaff,5.0,, -geoId/sch2700106,2025,Count_Faculty_LEAAdministrativeSupportStaff,2.0,, -geoId/sch3500187,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, -geoId/sch3900305,2025,Count_Faculty_LEAAdministrativeSupportStaff,7.0,, -geoId/sch3901480,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, -geoId/sch4200091,2025,Count_Faculty_LEAAdministrativeSupportStaff,7.0,, -geoId/sch4280010,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, -geoId/sch4500690,2025,Count_Faculty_LEAAdministrativeSupportStaff,19.0,, -geoId/sch4800203,2025,Count_Faculty_LEAAdministrativeSupportStaff,16.5,, -geoId/sch4801453,2025,Count_Faculty_LEAAdministrativeSupportStaff,1.0,, -geoId/sch4807380,2025,Count_Faculty_LEAAdministrativeSupportStaff,1.7,, -geoId/sch5100033,2025,Count_Faculty_LEAAdministrativeSupportStaff,0.0,, -geoId/sch5500030,2025,Count_Faculty_LEAAdministrativeSupportStaff,3.0,, -geoId/sch0400998,2025,Count_Faculty_LEAAdministrator,0.0,, -geoId/sch1700024,2025,Count_Faculty_LEAAdministrator,0.0,, -geoId/sch1700105,2025,Count_Faculty_LEAAdministrator,1.0,, -geoId/sch1800046,2025,Count_Faculty_LEAAdministrator,4.5,, -geoId/sch2500051,2025,Count_Faculty_LEAAdministrator,11.0,, -geoId/sch2700106,2025,Count_Faculty_LEAAdministrator,1.07,, -geoId/sch3500187,2025,Count_Faculty_LEAAdministrator,2.0,, -geoId/sch3900305,2025,Count_Faculty_LEAAdministrator,3.0,, -geoId/sch3901480,2025,Count_Faculty_LEAAdministrator,1.0,, -geoId/sch4200091,2025,Count_Faculty_LEAAdministrator,5.0,, -geoId/sch4280010,2025,Count_Faculty_LEAAdministrator,2.0,, -geoId/sch4500690,2025,Count_Faculty_LEAAdministrator,8.0,, -geoId/sch4800203,2025,Count_Faculty_LEAAdministrator,4.0,, -geoId/sch4801453,2025,Count_Faculty_LEAAdministrator,2.6,, -geoId/sch4807380,2025,Count_Faculty_LEAAdministrator,2.0,, -geoId/sch5100033,2025,Count_Faculty_LEAAdministrator,0.0,, -geoId/sch5500030,2025,Count_Faculty_LEAAdministrator,1.33,, -geoId/sch0400998,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch1700024,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch1700105,2025,Count_Faculty_MediaSupportStaff,2.0,, -geoId/sch1800046,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch2500051,2025,Count_Faculty_MediaSupportStaff,4.0,, -geoId/sch2700106,2025,Count_Faculty_MediaSupportStaff,1.36,, -geoId/sch3900305,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch3901480,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch4200091,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch4280010,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch4500690,2025,Count_Faculty_MediaSupportStaff,1.0,, -geoId/sch4800203,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch4801453,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch4807380,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch5100033,2025,Count_Faculty_MediaSupportStaff,0.0,, -geoId/sch5500030,2025,Count_Faculty_MediaSupportStaff,1.44,, -geoId/sch3700372,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, -geoId/sch3900305,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, -geoId/sch3901480,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, -geoId/sch4200091,2025,Count_Faculty_SchoolOtherGuidanceCounselor,6.0,, -geoId/sch4280010,2025,Count_Faculty_SchoolOtherGuidanceCounselor,2.0,, -geoId/sch4800203,2025,Count_Faculty_SchoolOtherGuidanceCounselor,3.7,, -geoId/sch4801453,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, -geoId/sch4807380,2025,Count_Faculty_SchoolOtherGuidanceCounselor,1.0,, -geoId/sch5500030,2025,Count_Faculty_SchoolOtherGuidanceCounselor,0.0,, -geoId/sch0400998,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,0.0,, -geoId/sch1700024,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,112.79,, -geoId/sch1700105,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,7.0,, -geoId/sch1800046,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,44.0,, -geoId/sch2500051,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,28.0,, -geoId/sch2700106,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,27.99,, -geoId/sch3500187,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,11.0,, -geoId/sch3900305,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,4.0,, -geoId/sch3901480,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,0.0,, -geoId/sch4200091,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,28.0,, -geoId/sch4280010,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,10.0,, -geoId/sch4500690,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,56.5,, -geoId/sch4800203,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,27.46,, -geoId/sch4801453,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,3.0,, -geoId/sch4807380,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,6.51,, -geoId/sch5100033,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,1.0,, -geoId/sch5500030,2025,Count_Faculty_ParaProfessionalsAidesOrInstructionalAide,23.04,, -geoId/sch0400998,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch1700105,2025,Count_Teacher_PreKindergarten,2.0,, -geoId/sch1800046,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch2500051,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch2700106,2025,Count_Teacher_PreKindergarten,5.0,, -geoId/sch3900305,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch3901480,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch4500690,2025,Count_Teacher_PreKindergarten,7.0,, -geoId/sch4801453,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch4807380,2025,Count_Teacher_PreKindergarten,1.08,, -geoId/sch5100033,2025,Count_Teacher_PreKindergarten,0.0,, -geoId/sch5500030,2025,Count_Teacher_PreKindergarten,3.0,, -geoId/sch0400998,2025,Percent_Student_AsAFractionOf_Count_Teacher,16.9,, -geoId/sch1700105,2025,Percent_Student_AsAFractionOf_Count_Teacher,10.33,, -geoId/sch1800046,2025,Percent_Student_AsAFractionOf_Count_Teacher,118.0,, -geoId/sch2500051,2025,Percent_Student_AsAFractionOf_Count_Teacher,11.32,, -geoId/sch2700106,2025,Percent_Student_AsAFractionOf_Count_Teacher,12.04,, -geoId/sch3500187,2025,Percent_Student_AsAFractionOf_Count_Teacher,10.25,, -geoId/sch3700372,2025,Percent_Student_AsAFractionOf_Count_Teacher,14.79,, -geoId/sch3900305,2025,Percent_Student_AsAFractionOf_Count_Teacher,8.82,, -geoId/sch3901480,2025,Percent_Student_AsAFractionOf_Count_Teacher,26.75,, -geoId/sch4200091,2025,Percent_Student_AsAFractionOf_Count_Teacher,17.98,, -geoId/sch4280010,2025,Percent_Student_AsAFractionOf_Count_Teacher,0.2,, -geoId/sch4500690,2025,Percent_Student_AsAFractionOf_Count_Teacher,12.32,, -geoId/sch4800203,2025,Percent_Student_AsAFractionOf_Count_Teacher,18.71,, -geoId/sch4801453,2025,Percent_Student_AsAFractionOf_Count_Teacher,22.41,, -geoId/sch4807380,2025,Percent_Student_AsAFractionOf_Count_Teacher,11.73,, -geoId/sch5500030,2025,Percent_Student_AsAFractionOf_Count_Teacher,13.64,, -geoId/sch0400998,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, -geoId/sch1700024,2025,Count_Faculty_SchoolAdministrativeSupportStaff,15.0,, -geoId/sch1700105,2025,Count_Faculty_SchoolAdministrativeSupportStaff,3.0,, -geoId/sch1800046,2025,Count_Faculty_SchoolAdministrativeSupportStaff,8.0,, -geoId/sch2500051,2025,Count_Faculty_SchoolAdministrativeSupportStaff,4.0,, -geoId/sch2700106,2025,Count_Faculty_SchoolAdministrativeSupportStaff,1.0,, -geoId/sch3500187,2025,Count_Faculty_SchoolAdministrativeSupportStaff,4.0,, -geoId/sch3900305,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, -geoId/sch3901480,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, -geoId/sch4200091,2025,Count_Faculty_SchoolAdministrativeSupportStaff,12.0,, -geoId/sch4280010,2025,Count_Faculty_SchoolAdministrativeSupportStaff,9.0,, -geoId/sch4500690,2025,Count_Faculty_SchoolAdministrativeSupportStaff,14.0,, -geoId/sch4800203,2025,Count_Faculty_SchoolAdministrativeSupportStaff,11.25,, -geoId/sch4801453,2025,Count_Faculty_SchoolAdministrativeSupportStaff,2.5,, -geoId/sch4807380,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.5,, -geoId/sch5100033,2025,Count_Faculty_SchoolAdministrativeSupportStaff,0.0,, -geoId/sch5500030,2025,Count_Faculty_SchoolAdministrativeSupportStaff,3.73,, -geoId/sch0400998,2025,Count_Faculty_SchoolAdministrator,0.0,, -geoId/sch1700024,2025,Count_Faculty_SchoolAdministrator,11.0,, -geoId/sch1700105,2025,Count_Faculty_SchoolAdministrator,2.4,, -geoId/sch1800046,2025,Count_Faculty_SchoolAdministrator,5.0,, -geoId/sch2500051,2025,Count_Faculty_SchoolAdministrator,9.5,, -geoId/sch2700106,2025,Count_Faculty_SchoolAdministrator,3.0,, -geoId/sch3500187,2025,Count_Faculty_SchoolAdministrator,1.6,, -geoId/sch3900305,2025,Count_Faculty_SchoolAdministrator,0.0,, -geoId/sch3901480,2025,Count_Faculty_SchoolAdministrator,0.0,, -geoId/sch4200091,2025,Count_Faculty_SchoolAdministrator,5.0,, -geoId/sch4280010,2025,Count_Faculty_SchoolAdministrator,3.0,, -geoId/sch4500690,2025,Count_Faculty_SchoolAdministrator,16.0,, -geoId/sch4800203,2025,Count_Faculty_SchoolAdministrator,6.37,, -geoId/sch4801453,2025,Count_Faculty_SchoolAdministrator,0.64,, -geoId/sch4807380,2025,Count_Faculty_SchoolAdministrator,1.0,, -geoId/sch5100033,2025,Count_Faculty_SchoolAdministrator,1.0,, -geoId/sch5500030,2025,Count_Faculty_SchoolAdministrator,2.0,, -geoId/sch0400998,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch1700105,2025,Count_Faculty_SecondarySchoolCounselor,1.0,, -geoId/sch1800046,2025,Count_Faculty_SecondarySchoolCounselor,2.0,, -geoId/sch2500051,2025,Count_Faculty_SecondarySchoolCounselor,5.0,, -geoId/sch2700106,2025,Count_Faculty_SecondarySchoolCounselor,1.83,, -geoId/sch3700372,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch3900305,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch3901480,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch4500690,2025,Count_Faculty_SecondarySchoolCounselor,5.0,, -geoId/sch4800203,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch4801453,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch4807380,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch5100033,2025,Count_Faculty_SecondarySchoolCounselor,0.0,, -geoId/sch5500030,2025,Count_Faculty_SecondarySchoolCounselor,1.0,, -geoId/sch0400998,2025,Count_Teacher_SecondaryTeacher,15.05,, -geoId/sch1700024,2025,Count_Teacher_SecondaryTeacher,24.15,, -geoId/sch1700105,2025,Count_Teacher_SecondaryTeacher,7.75,, -geoId/sch1800046,2025,Count_Teacher_SecondaryTeacher,9.93,, -geoId/sch2500051,2025,Count_Teacher_SecondaryTeacher,33.44,, -geoId/sch2700106,2025,Count_Teacher_SecondaryTeacher,27.85,, -geoId/sch3500187,2025,Count_Teacher_SecondaryTeacher,21.4,, -geoId/sch3700372,2025,Count_Teacher_SecondaryTeacher,0.0,, -geoId/sch3900305,2025,Count_Teacher_SecondaryTeacher,2.32,, -geoId/sch3901480,2025,Count_Teacher_SecondaryTeacher,0.0,, -geoId/sch4200091,2025,Count_Teacher_SecondaryTeacher,45.1,, -geoId/sch4280010,2025,Count_Teacher_SecondaryTeacher,31.0,, -geoId/sch4500690,2025,Count_Teacher_SecondaryTeacher,79.0,, -geoId/sch4800203,2025,Count_Teacher_SecondaryTeacher,43.23,, -geoId/sch4801453,2025,Count_Teacher_SecondaryTeacher,7.12,, -geoId/sch4807380,2025,Count_Teacher_SecondaryTeacher,12.37,, -geoId/sch5100033,2025,Count_Teacher_SecondaryTeacher,9.55,, -geoId/sch5500030,2025,Count_Teacher_SecondaryTeacher,27.55,, -geoId/sch0400998,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, -geoId/sch1700105,2025,Count_Faculty_TotalGuidanceCounselor,1.0,, -geoId/sch1800046,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, -geoId/sch2500051,2025,Count_Faculty_TotalGuidanceCounselor,5.0,, -geoId/sch2700106,2025,Count_Faculty_TotalGuidanceCounselor,1.83,, -geoId/sch3700372,2025,Count_Faculty_TotalGuidanceCounselor,1.36,, -geoId/sch3900305,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, -geoId/sch3901480,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, -geoId/sch4200091,2025,Count_Faculty_TotalGuidanceCounselor,6.0,, -geoId/sch4280010,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, -geoId/sch4500690,2025,Count_Faculty_TotalGuidanceCounselor,11.0,, -geoId/sch4800203,2025,Count_Faculty_TotalGuidanceCounselor,3.7,, -geoId/sch4801453,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, -geoId/sch4807380,2025,Count_Faculty_TotalGuidanceCounselor,1.0,, -geoId/sch5100033,2025,Count_Faculty_TotalGuidanceCounselor,0.0,, -geoId/sch5500030,2025,Count_Faculty_TotalGuidanceCounselor,2.0,, -geoId/sch0400998,2025,Count_Faculty,21.89,, -geoId/sch1700024,2025,Count_Faculty,277.64,, -geoId/sch1700105,2025,Count_Faculty,88.5,, -geoId/sch1800046,2025,Count_Faculty,101.5,, -geoId/sch2500051,2025,Count_Faculty,214.53,, -geoId/sch2700106,2025,Count_Faculty,139.95,, -geoId/sch3500187,2025,Count_Faculty,63.4,, -geoId/sch3900305,2025,Count_Faculty,51.0,, -geoId/sch3901480,2025,Count_Faculty,9.0,, -geoId/sch4200091,2025,Count_Faculty,149.5,, -geoId/sch4280010,2025,Count_Faculty,76.0,, -geoId/sch4500690,2025,Count_Faculty,501.25,, -geoId/sch4800203,2025,Count_Faculty,221.5,, -geoId/sch4801453,2025,Count_Faculty,18.8,, -geoId/sch4807380,2025,Count_Faculty,43.57,, -geoId/sch5100033,2025,Count_Faculty,12.15,, -geoId/sch5500030,2025,Count_Faculty,112.22,, -geoId/sch2700106,2025,Count_Teacher_UngradedTeacher,7.28,, -geoId/sch3500187,2025,Count_Teacher_UngradedTeacher,7.4,, -geoId/sch3900305,2025,Count_Teacher_UngradedTeacher,8.5,, -geoId/sch3901480,2025,Count_Teacher_UngradedTeacher,0.0,, -geoId/sch4200091,2025,Count_Teacher_UngradedTeacher,10.1,, -geoId/sch4280010,2025,Count_Teacher_UngradedTeacher,4.0,, -geoId/sch4800203,2025,Count_Teacher_UngradedTeacher,13.82,, -geoId/sch4801453,2025,Count_Teacher_UngradedTeacher,1.0,, -geoId/sch4807380,2025,Count_Teacher_UngradedTeacher,0.8,, -geoId/sch5500030,2025,Count_Teacher_UngradedTeacher,0.09,, diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf index 25099e3eee..e69de29bb2 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf @@ -1,12 +0,0 @@ -Node: dcid:Count_Faculty -measuredProperty: dcs:count -populationType: dcs:Faculty -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Faculty_MediaSupportStaff -facultyType: dcs:MediaSupportStaff -measuredProperty: dcs:count -populationType: dcs:Faculty -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable \ No newline at end of file From bcdd01485c0d4177cdb47b24b46c421a73d13896 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 24 Aug 2026 13:28:06 +0000 Subject: [PATCH 06/17] Updated test_data --- .../ELSI_csv_export_639156251902613595159.csv | 30 -- .../us_nces_demographics_district_place.csv | 24 +- .../us_nces_demographics_district_school.csv | 346 ++++++++++++++++++ 3 files changed, 358 insertions(+), 42 deletions(-) delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv deleted file mode 100644 index b18bf60ef0..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 10 Students - Two or More Races [District] 2024-25,Grade 11 Students - American Indian/Alaska Native [District] 2024-25,Grade 11 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 11 Students - Hispanic [District] 2024-25,Grade 11 Students - Black or African American [District] 2024-25,Grade 11 Students - White [District] 2024-25,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 11 Students - Two or More Races [District] 2024-25,Grade 12 Students - American Indian/Alaska Native [District] 2024-25,Grade 12 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 12 Students - Hispanic [District] 2024-25,Grade 12 Students - Black or African American [District] 2024-25,Grade 12 Students - White [District] 2024-25,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 12 Students - Two or More Races [District] 2024-25,Grade 13 Students - American Indian/Alaska Native [District] 2024-25,Grade 13 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 13 Students - Hispanic [District] 2024-25,Grade 13 Students - Black or African American [District] 2024-25,Grade 13 Students - White [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 13 Students - Two or More Races [District] 2024-25,Ungraded Students - American Indian/Alaska Native [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander [District] 2024-25,Ungraded Students - Hispanic [District] 2024-25,Ungraded Students - Black or African American [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Ungraded Students - White [District] 2024-25,Ungraded Students - Two or More Races [District] 2024-25,Adult Education Students - American Indian/Alaska Native [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander [District] 2024-25,Adult Education Students - Hispanic [District] 2024-25,Adult Education Students - Black or African American [District] 2024-25,Adult Education Students - White [District] 2024-25,Adult Education - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Adult Education Students - Two or More Races [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Prekindergarten Students - Hispanic - male [District] 2024-25,Prekindergarten Students - Hispanic - female [District] 2024-25,Prekindergarten Students - Black or African American - male [District] 2024-25,Prekindergarten Students - Black or African American - female [District] 2024-25,Prekindergarten Students - White - male [District] 2024-25,Prekindergarten Students - White - female [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Prekindergarten Students - Two or More Races - male [District] 2024-25,Prekindergarten Students - Two or More Races - female [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Kindergarten Students - Hispanic - male [District] 2024-25,Kindergarten Students - Hispanic - female [District] 2024-25,Kindergarten Students - Black or African American - male [District] 2024-25,Kindergarten Students - Black or African American - female [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year -21ST CENTURY CHARTER SCH OF GARY,Indiana,0,4,0,0,3,84,0,0,1,0,0,6,78,1,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,2,52,49,1800046 -21ST CENTURY CYBER CS,Pennsylvania,0,16,0,4,24,30,171,1,15,0,6,13,31,140,0,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 -A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 -A W BEATTIE CAREER CENTER,Pennsylvania,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 -A+ ACADEMY,Texas,0,0,0,1,106,3,0,0,0,0,0,106,4,3,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,63,69,2,10,2,1,0,0,0,0,0,0,0,1,40,48,3,0,4800203 -A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,0,1,5,11,15,3900305 -A+ CHARTER SCHOOLS (1000166),ARIZONA,1,3,1,0,35,8,29,0,2,1,0,19,3,17,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 -A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,2,1,5,6,3901480 -A+ UNLIMITED POTENTIAL,TEXAS,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 -A-C CENTRAL CUSD 262,Illinois,0,1,0,0,1,1,27,0,0,0,0,1,0,25,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,16,11,0,0,0,1,0,0,0,0,0,0,0,0,1700105 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 -A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,1,0,2,3,22,21,3700372 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,0,4,0,0,9,0,46,0,1,0,2,6,0,59,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,0,0,4,2,0,0,16,6,0,0,0,1,0,0,0,1,8,7,0,0,2700106 -ABBEVILLE 60,South Carolina,0,3,1,3,6,63,112,0,1,0,0,8,51,134,1,10,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,1,19,19,30,27,0,0,2,1,0,0,1,0,0,5,36,30,4500690 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,0,0,0,3,41,0,25,0,0,0,5,45,0,29,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,22,19,0,0,7,10,0,0,1,1,0,0,0,0,17,16,0,0,5500030 -ABBOTT ISD,Texas,0,0,0,0,3,0,13,0,1,0,0,1,0,18,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,1,0,0,3,8,0,0,0,0,0,0,0,0,3,3,0,0,4807380 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,0,3,0,3,12,61,4,0,0,0,0,20,46,10,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,0,1,0,27,17,25,27,2500051 -ABC UNIFIED,California,5,64,5,527,678,101,78,6,59,5,584,753,119,76,5,73,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,1,263,259,348,359,51,42,0601620 -ABERDEEN DISTRICT,Idaho,0,1,0,0,28,1,17,0,2,0,0,34,1,18,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,5,5,0,0,2,0,0,0,0,0,0,0,0,0,16,19,0,0,1600030 -ABERDEEN SCHOOL DISTRICT,Mississippi,0,1,0,0,3,87,0,0,5,0,0,0,71,1,0,3,0,0,0,1,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,1,1,0,34,29,2800360 -ABERDEEN SCHOOL DISTRICT,Washington,1,15,6,5,106,4,160,1,21,10,4,118,6,166,0,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5,2,–,–,34,30,2,3,32,21,–,–,5,5,4,1,2,1,36,35,0,1,5300030 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,2,12,27,13,29,7,257,3,22,26,10,32,7,305,3,15,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,5,4,18,21,5,2,4602070 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv index 4bdb9ca8cf..e760916915 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv @@ -1,19 +1,19 @@ "school_state_code","ZIP","Location_ZIP4","County_code","District_School_name","School_ID","State_school_ID","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","Lowest_Grade_Dist","Highest_Grade_Dist","year","geoID","ContainedInPlace","Validated_State_Abbr","School_Management" -"geoId/sch0400998","85138","","geoId/04021","A+ Charter Schools (1000166)","0400998","AZ-1000166","5202655589","ARIZONA","AZ","geoId/04","33.042533","-112.015895","dcs:NCES_SuburbSmall","41600 W Smith-Enke Rd Maricopa AZ 85138","Maricopa","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch0400998","dcs:geoId/04","AZ","" -"geoId/sch1700024","60459","","geoId/17031","A E R O Spec Educ Coop","1700024","IL-07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.75345","-87.757423","dcs:NCES_SuburbLarge","5400 W 77Th St Burbank IL 60459","Burbank","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" -"geoId/sch5100033","24210","","geoId/51191","A. Linwood Holton Governor'S School","5100033","VA-268","2766194326","Virginia","VA","geoId/51","36.696706","-82.00065","dcs:NCES_SuburbSmall","One Partnership Circle Abingdon VA 24210","Abingdon","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch5100033","dcs:geoId/51","VA","" +"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" +"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" "geoId/sch4807380","76621","0226","geoId/48217","Abbott Isd","4807380","TX-109901","2545823011","Texas","TX","geoId/48","31.883393","-97.07685","dcs:NCES_RuralDistant","219 S First St Abbott TX 76621-0226","ABBOTT","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4807380","dcs:geoId/48","TX","" -"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" -"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" +"geoId/sch5500030","54405","","geoId/55019","Abbotsford School District","5500030","WI-0007","7152236715","Wisconsin","WI","geoId/55","44.949886","-90.332138","dcs:NCES_RuralRemote","510 W Hemlock St Abbotsford WI 54405","Abbotsford","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch5500030","dcs:geoId/55","WI","" "geoId/sch4500690","29620","","geoId/45001","Abbeville 60","4500690","SC-0160","8643665427","South Carolina","SC","geoId/45","34.185163","-82.380158","dcs:NCES_RuralDistant","400 Greenville Street Abbeville SC 29620","Abbeville","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4500690","dcs:geoId/45","SC","" -"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" -"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" +"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" +"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" +"geoId/sch5100033","24210","","geoId/51191","A. Linwood Holton Governor'S School","5100033","VA-268","2766194326","Virginia","VA","geoId/51","36.696706","-82.00065","dcs:NCES_SuburbSmall","One Partnership Circle Abingdon VA 24210","Abingdon","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch5100033","dcs:geoId/51","VA","" +"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" +"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" "geoId/sch3901480","43207","4031","geoId/39049","A+ Children'S Academy","3901480","OH-013232","6144918502","Ohio","OH","geoId/39","39.882382","-82.996978","dcs:NCES_CityLarge","114 Obetz Rd Columbus OH 43207-4031","Columbus","dcs:Kindergarten","dcs:SchoolGrade6","2024","sch3901480","dcs:geoId/39","OH","" +"geoId/sch0400998","85138","","geoId/04021","A+ Charter Schools (1000166)","0400998","AZ-1000166","5202655589","ARIZONA","AZ","geoId/04","33.042533","-112.015895","dcs:NCES_SuburbSmall","41600 W Smith-Enke Rd Maricopa AZ 85138","Maricopa","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch0400998","dcs:geoId/04","AZ","" "geoId/sch3900305","43205","1543","geoId/39049","A+ Arts Academy","3900305","OH-000556","6147251305","Ohio","OH","geoId/39","39.963397","-82.962898","dcs:NCES_CityLarge","1395 Fair Ave Columbus OH 43205-1543","Columbus","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3900305","dcs:geoId/39","OH","" -"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" +"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" +"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" +"geoId/sch1700024","60459","","geoId/17031","A E R O Spec Educ Coop","1700024","IL-07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.75345","-87.757423","dcs:NCES_SuburbLarge","5400 W 77Th St Burbank IL 60459","Burbank","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" "geoId/sch3500187","87110","","geoId/35001","21St Century Public Academy","3500187","NM-35580000","5052540280","NEW MEXICO","NM","geoId/35","35.105101","-106.599226","dcs:NCES_CityLarge","4300 Cutler Ave. Ne Albuquerque NM 87110","ALBUQUERQUE","dcs:SchoolGrade1","dcs:SchoolGrade8","2024","sch3500187","dcs:geoId/35","NM","" -"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" "geoId/sch2500051","1606","","geoId/25027","Abby Kelley Foster Charter Public","2500051","MA-0445","5088548400","Massachusetts","MA","geoId/25","42.305635","-71.801599","dcs:NCES_CityMidsize","10 New Bond Street Worcester MA 1606","Worcester","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch2500051","dcs:geoId/25","MA","" -"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" -"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" -"geoId/sch5500030","54405","","geoId/55019","Abbotsford School District","5500030","WI-0007","7152236715","Wisconsin","WI","geoId/55","44.949886","-90.332138","dcs:NCES_RuralRemote","510 W Hemlock St Abbotsford WI 54405","Abbotsford","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch5500030","dcs:geoId/55","WI","" diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv index b23f4d3e94..2dfe256516 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv @@ -198,3 +198,349 @@ geoId/sch0400998,2025,Count_Student_SchoolGrade12,41.0,, geoId/sch1700105,2025,Count_Student_SchoolGrade12,27.0,, geoId/sch1800046,2025,Count_Student_SchoolGrade12,87.0,, geoId/sch2500051,2025,Count_Student_SchoolGrade12,76.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade12,68.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade12,206.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade12,1.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade12,204.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade12,113.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade12,19.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade12,80.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade2,20.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade2,101.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade2,125.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade2,70.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade2,24.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade2,48.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade2,23.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade2,17.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade2,180.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade2,92.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade2,23.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade2,62.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade3,23.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade3,82.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade3,127.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade3,62.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade3,22.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade3,53.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade3,37.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade3,18.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade3,206.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade3,98.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade3,20.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade3,46.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade4,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade4,81.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade4,130.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade4,63.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade4,38.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade4,40.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade4,25.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade4,5.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade4,188.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade4,112.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade4,23.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade4,53.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade5,22.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade5,98.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade5,128.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade5,72.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade5,44.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade5,44.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade5,28.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade5,9.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade5,200.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade5,113.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade5,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade5,52.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade6,55.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade6,22.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade6,67.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade6,128.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade6,62.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade6,70.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade6,49.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade6,26.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade6,16.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade6,20.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade6,211.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade6,115.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade6,51.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade6,16.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade6,56.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade7,40.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade7,24.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade7,93.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade7,111.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade7,67.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade7,86.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade7,54.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade7,19.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade7,53.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade7,184.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade7,144.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade7,48.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade7,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade7,63.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade8,39.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade8,84.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade8,108.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade8,60.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade8,71.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade8,36.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade8,77.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade8,210.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade8,137.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade8,57.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade8,21.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade8,57.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade9,61.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade9,21.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade9,118.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade9,80.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade9,63.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade9,202.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade9,0.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade9,243.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade9,140.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade9,36.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade9,26.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade9,48.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade1To8,134.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade1To8,174.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade1To8,693.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade1To8,980.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade1To8,531.0,, +geoId/sch3500187,2025,Count_Student_SchoolGrade1To8,371.0,, +geoId/sch3700372,2025,Count_Student_SchoolGrade1To8,369.0,, +geoId/sch3900305,2025,Count_Student_SchoolGrade1To8,210.0,, +geoId/sch3901480,2025,Count_Student_SchoolGrade1To8,84.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade1To8,150.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade1To8,1606.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade1To8,928.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade1To8,156.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade1To8,164.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade1To8,439.0,, +geoId/sch0400998,2025,Count_Student_SchoolGrade9To12,236.0,, +geoId/sch1700105,2025,Count_Student_SchoolGrade9To12,96.0,, +geoId/sch1800046,2025,Count_Student_SchoolGrade9To12,380.0,, +geoId/sch2500051,2025,Count_Student_SchoolGrade9To12,321.0,, +geoId/sch2700106,2025,Count_Student_SchoolGrade9To12,263.0,, +geoId/sch4200091,2025,Count_Student_SchoolGrade9To12,846.0,, +geoId/sch4280010,2025,Count_Student_SchoolGrade9To12,7.0,, +geoId/sch4500690,2025,Count_Student_SchoolGrade9To12,842.0,, +geoId/sch4800203,2025,Count_Student_SchoolGrade9To12,509.0,, +geoId/sch4801453,2025,Count_Student_SchoolGrade9To12,47.0,, +geoId/sch4807380,2025,Count_Student_SchoolGrade9To12,87.0,, +geoId/sch5500030,2025,Count_Student_SchoolGrade9To12,248.0,, +geoId/sch0400998,2025,Count_Student_Female_HispanicOrLatino,67.0,, +geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino,1.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino,37.0,, +geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino,175.0,, +geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino,64.0,, +geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino,29.0,, +geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino,38.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino,10.0,, +geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino,4.0,, +geoId/sch4200091,2025,Count_Student_Female_HispanicOrLatino,42.0,, +geoId/sch4280010,2025,Count_Student_Female_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino,32.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino,765.0,, +geoId/sch4801453,2025,Count_Student_Female_HispanicOrLatino,34.0,, +geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino,20.0,, +geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino,261.0,, +geoId/sch0400998,2025,Count_Student_Male_HispanicOrLatino,87.0,, +geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino,7.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino,27.0,, +geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino,172.0,, +geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino,60.0,, +geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino,30.0,, +geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino,30.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino,4.0,, +geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino,3.0,, +geoId/sch4200091,2025,Count_Student_Male_HispanicOrLatino,36.0,, +geoId/sch4280010,2025,Count_Student_Male_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino,45.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino,820.0,, +geoId/sch4801453,2025,Count_Student_Male_HispanicOrLatino,45.0,, +geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino,29.0,, +geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino,268.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino,154.0,, +geoId/sch1700105,2025,Count_Student_HispanicOrLatino,8.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino,64.0,, +geoId/sch2500051,2025,Count_Student_HispanicOrLatino,347.0,, +geoId/sch2700106,2025,Count_Student_HispanicOrLatino,124.0,, +geoId/sch3500187,2025,Count_Student_HispanicOrLatino,59.0,, +geoId/sch3700372,2025,Count_Student_HispanicOrLatino,68.0,, +geoId/sch3900305,2025,Count_Student_HispanicOrLatino,14.0,, +geoId/sch3901480,2025,Count_Student_HispanicOrLatino,7.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino,78.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino,0.0,, +geoId/sch4500690,2025,Count_Student_HispanicOrLatino,77.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino,1585.0,, +geoId/sch4801453,2025,Count_Student_HispanicOrLatino,79.0,, +geoId/sch4807380,2025,Count_Student_HispanicOrLatino,49.0,, +geoId/sch5500030,2025,Count_Student_HispanicOrLatino,529.0,, +geoId/sch1700105,2025,Count_Student_Kindergarten,16.0,, +geoId/sch1800046,2025,Count_Student_Kindergarten,107.0,, +geoId/sch2500051,2025,Count_Student_Kindergarten,125.0,, +geoId/sch2700106,2025,Count_Student_Kindergarten,69.0,, +geoId/sch3700372,2025,Count_Student_Kindergarten,52.0,, +geoId/sch3900305,2025,Count_Student_Kindergarten,37.0,, +geoId/sch3901480,2025,Count_Student_Kindergarten,23.0,, +geoId/sch4500690,2025,Count_Student_Kindergarten,196.0,, +geoId/sch4800203,2025,Count_Student_Kindergarten,94.0,, +geoId/sch4807380,2025,Count_Student_Kindergarten,21.0,, +geoId/sch5500030,2025,Count_Student_Kindergarten,52.0,, +geoId/sch0400998,2025,Count_Student_Male,211.0,, +geoId/sch1700105,2025,Count_Student_Male,153.0,, +geoId/sch1800046,2025,Count_Student_Male,562.0,, +geoId/sch2500051,2025,Count_Student_Male,661.0,, +geoId/sch2700106,2025,Count_Student_Male,481.0,, +geoId/sch3500187,2025,Count_Student_Male,188.0,, +geoId/sch3700372,2025,Count_Student_Male,216.0,, +geoId/sch3900305,2025,Count_Student_Male,129.0,, +geoId/sch3901480,2025,Count_Student_Male,60.0,, +geoId/sch4200091,2025,Count_Student_Male,454.0,, +geoId/sch4280010,2025,Count_Student_Male,4.0,, +geoId/sch4500690,2025,Count_Student_Male,1441.0,, +geoId/sch4800203,2025,Count_Student_Male,867.0,, +geoId/sch4801453,2025,Count_Student_Male,107.0,, +geoId/sch4807380,2025,Count_Student_Male,156.0,, +geoId/sch5500030,2025,Count_Student_Male,407.0,, +geoId/sch0400998,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4280010,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400998,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,2.0,, +geoId/sch4280010,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1700105,2025,Count_Student_PreKindergarten,28.0,, +geoId/sch2700106,2025,Count_Student_PreKindergarten,30.0,, +geoId/sch4500690,2025,Count_Student_PreKindergarten,102.0,, +geoId/sch4800203,2025,Count_Student_PreKindergarten,147.0,, +geoId/sch4807380,2025,Count_Student_PreKindergarten,12.0,, +geoId/sch5500030,2025,Count_Student_PreKindergarten,60.0,, +geoId/sch0400998,2025,Count_Student,370.0,, +geoId/sch1700105,2025,Count_Student,314.0,, +geoId/sch1800046,2025,Count_Student,1180.0,, +geoId/sch2500051,2025,Count_Student,1426.0,, +geoId/sch2700106,2025,Count_Student,893.0,, +geoId/sch3500187,2025,Count_Student,371.0,, +geoId/sch3700372,2025,Count_Student,421.0,, +geoId/sch3900305,2025,Count_Student,247.0,, +geoId/sch3901480,2025,Count_Student,107.0,, +geoId/sch4200091,2025,Count_Student,996.0,, +geoId/sch4280010,2025,Count_Student,7.0,, +geoId/sch4500690,2025,Count_Student,2746.0,, +geoId/sch4800203,2025,Count_Student,1678.0,, +geoId/sch4801453,2025,Count_Student,203.0,, +geoId/sch4807380,2025,Count_Student,284.0,, +geoId/sch5500030,2025,Count_Student,799.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces,23.0,, +geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces,10.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces,26.0,, +geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces,72.0,, +geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces,31.0,, +geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces,28.0,, +geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces,13.0,, +geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces,16.0,, +geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces,13.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces,76.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces,2.0,, +geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces,80.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces,6.0,, +geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces,10.0,, +geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces,7.0,, +geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces,15.0,, +geoId/sch0400998,2025,Count_Student_Female_White,55.0,, +geoId/sch1700105,2025,Count_Student_Female_White,154.0,, +geoId/sch1800046,2025,Count_Student_Female_White,1.0,, +geoId/sch2500051,2025,Count_Student_Female_White,92.0,, +geoId/sch2700106,2025,Count_Student_Female_White,324.0,, +geoId/sch3500187,2025,Count_Student_Female_White,125.0,, +geoId/sch3700372,2025,Count_Student_Female_White,2.0,, +geoId/sch3900305,2025,Count_Student_Female_White,3.0,, +geoId/sch3901480,2025,Count_Student_Female_White,11.0,, +geoId/sch4200091,2025,Count_Student_Female_White,361.0,, +geoId/sch4280010,2025,Count_Student_Female_White,2.0,, +geoId/sch4500690,2025,Count_Student_Female_White,801.0,, +geoId/sch4800203,2025,Count_Student_Female_White,15.0,, +geoId/sch4801453,2025,Count_Student_Female_White,2.0,, +geoId/sch4807380,2025,Count_Student_Female_White,101.0,, +geoId/sch5500030,2025,Count_Student_Female_White,109.0,, +geoId/sch0400998,2025,Count_Student_Male_White,82.0,, +geoId/sch1700105,2025,Count_Student_Male_White,140.0,, +geoId/sch1800046,2025,Count_Student_Male_White,0.0,, +geoId/sch2500051,2025,Count_Student_Male_White,71.0,, +geoId/sch2700106,2025,Count_Student_Male_White,404.0,, +geoId/sch3500187,2025,Count_Student_Male_White,132.0,, +geoId/sch3700372,2025,Count_Student_Male_White,7.0,, +geoId/sch3900305,2025,Count_Student_Male_White,2.0,, +geoId/sch3901480,2025,Count_Student_Male_White,25.0,, +geoId/sch4200091,2025,Count_Student_Male_White,304.0,, +geoId/sch4280010,2025,Count_Student_Male_White,3.0,, +geoId/sch4500690,2025,Count_Student_Male_White,878.0,, +geoId/sch4800203,2025,Count_Student_Male_White,11.0,, +geoId/sch4801453,2025,Count_Student_Male_White,4.0,, +geoId/sch4807380,2025,Count_Student_Male_White,124.0,, +geoId/sch5500030,2025,Count_Student_Male_White,117.0,, +geoId/sch0400998,2025,Count_Student_White,137.0,, +geoId/sch1700105,2025,Count_Student_White,294.0,, +geoId/sch1800046,2025,Count_Student_White,1.0,, +geoId/sch2500051,2025,Count_Student_White,163.0,, +geoId/sch2700106,2025,Count_Student_White,728.0,, +geoId/sch3500187,2025,Count_Student_White,257.0,, +geoId/sch3700372,2025,Count_Student_White,9.0,, +geoId/sch3900305,2025,Count_Student_White,5.0,, +geoId/sch3901480,2025,Count_Student_White,36.0,, +geoId/sch4200091,2025,Count_Student_White,665.0,, +geoId/sch4280010,2025,Count_Student_White,5.0,, +geoId/sch4500690,2025,Count_Student_White,1679.0,, +geoId/sch4800203,2025,Count_Student_White,26.0,, +geoId/sch4801453,2025,Count_Student_White,6.0,, +geoId/sch4807380,2025,Count_Student_White,225.0,, +geoId/sch5500030,2025,Count_Student_White,226.0,, From 344e70547493378fc65a0cb665c1cfd6ec291a3f Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Sun, 30 Aug 2026 16:30:44 +0000 Subject: [PATCH 07/17] Adding files for PublicSchool --- scripts/us_nces/common/us_education.py | 20 +- .../demographics/public_school/manifest.json | 6 +- ...ELSI_csv_export_6386948195254469753875.csv | 75 - .../ELSI_csv_export_638694819899327316336.csv | 75 - .../ELSI_csv_export_638694820125410389699.csv | 75 - .../ELSI_csv_export_638694820363429046615.csv | 75 - .../ELSI_csv_export_638694834689281632733.csv | 75 - .../ELSI_csv_export_638694836076205721316.csv | 75 - .../ELSI_csv_export_638694853401085610521.csv | 75 - .../ELSI_csv_export_638694889856395863889.csv | 75 - ...ELSI_csv_export_6392166529530453281445.csv | 30 + .../us_nces_demographics_public_place.csv | 83 +- .../us_nces_demographics_public_school.csv | 9477 +---------------- .../public_school/validation_config.json | 13 + .../demographics/school_district/config.py | 1 - 15 files changed, 402 insertions(+), 9828 deletions(-) delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6386948195254469753875.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694819899327316336.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820125410389699.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820363429046615.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694834689281632733.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694836076205721316.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694853401085610521.csv delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694889856395863889.csv create mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv create mode 100644 scripts/us_nces/demographics/public_school/validation_config.json diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index 35caef0cbd..bd224ef15d 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -939,20 +939,12 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: if df_dist_tmp.shape[0] > 0: #If current year data is already there in main df - merge the columns - # Remove common columns excluding key columns so as to remove duplicates. - rem_common_columns = list( - set(df_place.columns.to_list()) - - set(self._key_col_place)) - - df_dist_tmp = df_dist_tmp.loc[:, ~df_dist_tmp.columns. - isin(rem_common_columns)] - - # Merge the different files columns of same year with key columns - - df_dist_tmp = pd.merge(df_dist_tmp, - df_place, - how="outer", - on=self._key_col_place) + # Combine place columns of the same year with key columns + df_dist_tmp = ( + df_dist_tmp.set_index(self._key_col_place) + .combine_first(df_place.set_index(self._key_col_place)) + .reset_index() + ) else: # The current year data not present in final df diff --git a/scripts/us_nces/demographics/public_school/manifest.json b/scripts/us_nces/demographics/public_school/manifest.json index 33b3eba897..584cee615f 100644 --- a/scripts/us_nces/demographics/public_school/manifest.json +++ b/scripts/us_nces/demographics/public_school/manifest.json @@ -17,7 +17,8 @@ "import_inputs": [ { "template_mcf": "gcs_folder/output_files/us_nces_demographics_public_school.tmcf", - "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_public_school.csv" + "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_public_school.csv", + "node_mcf": "gcs_folder/output_files/us_nces_demographics_public_school.mcf" }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_public_place.tmcf", @@ -25,9 +26,10 @@ } ], "cron_schedule": "30 3 2 3,6,9,12 *", + "validation_config_file": "validation_config.json", "resource_limits": { "cpu": 32, - "memory": 512, + "memory": 1024, "disk": 300 } } diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6386948195254469753875.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6386948195254469753875.csv deleted file mode 100644 index cfecc4c4b0..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6386948195254469753875.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,State Name [Public School] 2023-24,State Abbr [Public School] Latest available year,School Name [Public School] 2023-24,School ID - NCES Assigned [Public School] Latest available year,Agency Name [Public School] 2023-24,Agency ID - NCES Assigned [Public School] Latest available year,ANSI/FIPS State Code [Public School] Latest available year,Location Address 1 [Public School] 2023-24,Location City [Public School] 2023-24,Location ZIP [Public School] 2023-24,Location ZIP4 [Public School] 2023-24,Phone Number [Public School] 2023-24,School Type [Public School] 2023-24,Charter School [Public School] 2023-24,State School ID [Public School] 2023-24,National School Lunch Program [Public School] 2023-24,School Level (SY 2017-18 onward) [Public School] 2023-24,Lowest Grade Offered [Public School] 2023-24,Highest Grade Offered [Public School] 2023-24,Total Students All Grades (Excludes AE) [Public School] 2023-24,Total Students All Grades (Includes AE) [Public School] 2023-24,Free Lunch Eligible [Public School] 2023-24,Direct Certification [Public School] 2023-24,Reduced-price Lunch Eligible Students [Public School] 2023-24,Free and Reduced Lunch Students [Public School] 2023-24,Grades 1-8 Students [Public School] 2023-24,Grades 9-12 Students [Public School] 2023-24,Prekindergarten Students [Public School] 2023-24,Kindergarten Students [Public School] 2023-24,Grade 1 Students [Public School] 2023-24,Grade 2 Students [Public School] 2023-24,Grade 3 Students [Public School] 2023-24,Grade 4 Students [Public School] 2023-24,Grade 5 Students [Public School] 2023-24,Grade 6 Students [Public School] 2023-24,Grade 7 Students [Public School] 2023-24,Grade 8 Students [Public School] 2023-24,Grade 9 Students [Public School] 2023-24,Grade 10 Students [Public School] 2023-24,Grade 11 Students [Public School] 2023-24,Grade 12 Students [Public School] 2023-24,Grade 13 Students [Public School] 2023-24,Ungraded Students [Public School] 2023-24,Adult Education Students [Public School] 2023-24,Male Students [Public School] 2023-24,Female Students [Public School] 2023-24,American Indian/Alaska Native Students [Public School] 2023-24,Asian or Asian/Pacific Islander Students [Public School] 2023-24,Hispanic Students [Public School] 2023-24,Black or African American Students [Public School] 2023-24,White Students [Public School] 2023-24,Nat. Hawaiian or Other Pacific Isl. Students [Public School] 2023-24,Two or More Races Students [Public School] 2023-24,Total Race/Ethnicity [Public School] 2023-24,American Indian/Alaska Native - male [Public School] 2023-24,American Indian/Alaska Native - female [Public School] 2023-24,Asian or Asian/Pacific Islander - male [Public School] 2023-24,Asian or Asian/Pacific Islander - female [Public School] 2023-24,Hispanic - male [Public School] 2023-24 -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,MASSACHUSETTS,MA ,1 LT Charles W. Whitcomb School,250732002639,Marlborough,2507320,25,25 Union Street,Marlborough,01752, ,5084603502,1-Regular school,2-No,MA-0170-01700045,†,Middle,6th Grade,8th Grade,944,944,–,577,–,–,944,†,†,†,†,†,†,†,†,289,296,359,†,†,†,†,†,†,†,498,446,0,11,611,45,255,0,22,944,0,0,5,6,326 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,NEVADA,NV ,100 Academy of Engineering and Technology ES,320006000670,Clark County,3200060,32,2341 Comstock Dr,N Las Vegas,89032, ,7026362551,1-Regular school,1-Yes,NV-02-02093,†,Elementary,Kindergarten,5th Grade,168,168,165,125,3,168,141,†,†,27,30,27,24,36,24,†,†,†,†,†,†,†,†,0,†,83,85,0,1,32,117,4,2,12,168,0,0,0,1,15 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,NEVADA,NV ,100 Academy of Engineering and Technology MS,320006000756,Clark County,3200060,32,2341 Comstock Dr,N Las Vegas,89032, ,7026362551,1-Regular school,1-Yes,NV-02-02364,†,Middle,6th Grade,8th Grade,71,71,70,55,1,71,71,†,†,†,†,†,†,†,†,25,25,21,†,†,†,†,†,0,†,35,36,1,1,21,42,1,0,5,71,0,1,0,1,11 -10TH STREET SCHOOL,Washington,WASHINGTON,WA ,10th Street School,530486002475,Marysville School District,5304860,53,7204 27th Ave NE,Marysville,98271, ,3609650400,1-Regular school,2-No,WA-31025-1656,†,Middle,6th Grade,8th Grade,163,163,58,52,0,58,163,†,†,†,†,†,†,†,†,58,58,47,†,†,†,†,†,†,†,95,68,18,3,30,2,87,0,23,163,9,9,3,0,21 -112 ALC INDEPENDENT STUDY,Minnesota,MINNESOTA,MN ,112 ALC Independent Study,270819004415,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,MN-010112-010112067,†,High,9th Grade,12th Grade,34,34,6,6,2,8,†,34,†,†,†,†,†,†,†,†,†,†,0,1,1,32,†,†,†,18,16,1,3,6,2,17,0,5,34,0,1,2,1,2 -112 ALC MIDDLE SCHOOL,Minnesota,MINNESOTA,MN ,112 ALC MIDDLE SCHOOL,270819004622,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,MN-010112-010112066,†,Middle,6th Grade,8th Grade,390,390,131,118,17,148,390,†,†,†,†,†,†,†,†,109,140,141,†,†,†,†,†,†,†,181,209,0,12,102,39,213,1,23,390,0,0,7,5,49 -112 ALC SEAT-BASED,MINNESOTA,MINNESOTA,MN ,112 ALC Seat-Based,270819005118,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,MN-010112-010112071,†,High,6th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -12TH STREET ELEMENTARY,Michigan,MICHIGAN,MI ,12th Street Elementary,262895007802,Portage Public Schools,2628950,26,6501 S 12TH ST,PORTAGE,49024,1705,2693236900,1-Regular school,2-No,MI-39140-09848,†,Elementary,Prekindergarten,5th Grade,574,574,162,–,13,175,469,†,0,105,85,87,102,96,99,†,†,†,†,†,†,†,†,†,†,266,308,0,64,49,74,326,0,61,574,0,0,33,31,28 -130-E-SE-2,FLORIDA,FLORIDA,FL ,130-E-SE-2,120144010794,ORANGE,1201440,12,445 W AMELIA ST,ORLANDO,32801, ,4073173200,1-Regular school,2-No,FL-48-1444,†,Not Reported,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -18+ PROGRAM,NEBRASKA,NEBRASKA,NE ,18+ PROGRAM,318009002335,EDUCATIONAL SERVICE UNIT 09,3180090,31,5807 OSBORNE DRIVE WEST,HASTINGS,68901,9158,4024635611,2-Special education school,†,NE-000009000-000009024,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -180 DEGREES / YOUTH SHELTER,MINNESOTA,MINNESOTA,MN ,180 Degrees / Youth Shelter,273351012806,ST. CLOUD PUBLIC SCHOOL DISTRICT,2733510,27,1101 WASHINGTON MEMORIAL DR,SAINT CLOUD,56301,8888,3203708020,4-Alternative Education School,2-No,MN-010742-010742044,†,High,6th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -196ONLINE ELEMENTARY,MINNESOTA,MINNESOTA,MN ,196Online Elementary,273239005353,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,MN-010196-010196766,†,Elementary,Kindergarten,5th Grade,0,0,†,†,†,†,0,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -196ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online High School,273239005352,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6519055857,1-Regular school,2-No,MN-010196-010196067,†,High,9th Grade,12th Grade,111,111,38,35,10,48,†,111,†,†,†,†,†,†,†,†,†,†,18,22,33,38,†,†,†,51,60,2,6,14,20,55,0,14,111,1,1,4,2,6 -196ONLINE MIDDLE SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online Middle School,273239005351,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,MN-010196-010196066,†,Middle,6th Grade,8th Grade,0,0,†,†,†,†,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -199 ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,199 Online High School,271503005356,INVER GROVE HEIGHTS SCHOOLS,2715030,27,2920 80TH ST E,INVER GROVE HEIGHTS,55076,8888,6513067009,1-Regular school,2-No,MN-010199-010199090,†,High,9th Grade,12th Grade,35,35,19,18,3,22,†,35,†,†,†,†,†,†,†,†,†,†,5,6,12,12,†,†,†,17,18,0,1,15,2,12,0,5,35,0,0,1,0,8 -1R ELEMENTARY,Nebraska,NEBRASKA,NE ,1R ELEMENTARY,317458000209,NORTHWEST PUBLIC SCHOOLS,3174580,31,3301 W ONE-R ROAD,GRAND ISLAND,68803,9331,3083856352,1-Regular school,†,NE-400082000-400082003,†,Elementary,Prekindergarten,8th Grade,196,196,44,–,11,55,177,†,0,19,20,22,20,21,21,25,24,24,†,†,†,†,†,†,†,95,101,0,0,18,2,176,0,0,196,0,0,0,0,10 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,PUERTO RICO,PR ,20 DE SEPTIEMBRE DE 1988,720003000010,PUERTO RICO DEPARTMENT OF EDUCATION,7200030,72,CARR ESTATAL 200 ESQ CARR ESTATAL 993,VIEQUES,00765, ,7877413091,1-Regular school,2-No,PR-01-35295,†,Middle,5th Grade,8th Grade,165,165,139,–,11,150,165,†,†,†,†,†,†,†,1,57,64,43,†,†,†,†,†,†,†,78,87,0,0,165,0,0,0,0,165,0,0,0,0,78 -21ST CENTURY CHARTER SCH OF GARY,Indiana,INDIANA,IN ,21st Century Charter Sch of Gary,180004602162,21st Century Charter Sch of Gary,1800046,18,556 Washington St,Gary,46402, ,2198869339,1-Regular school,1-Yes,IN-9545-4164,†,Other,Kindergarten,12th Grade,1213,1213,915,1010,41,956,718,408,†,87,103,101,85,87,67,95,83,97,116,103,101,88,†,†,†,583,630,0,0,52,1130,3,0,28,1213,0,0,0,0,24 -21ST CENTURY CYBER CS,Pennsylvania,PENNSYLVANIA,PA ,21st Century Cyber CS,420009100597,21st Century Cyber CS,4200091,42,1245 Wrights Lane,West Chester,19380, ,4848755400,1-Regular school,1-Yes,PA-124150002-7691,†,High,6th Grade,12th Grade,1103,1103,51,–,6,57,203,900,†,†,†,†,†,†,†,29,65,109,238,225,226,211,†,†,†,482,621,0,4,38,49,997,2,13,1103,0,0,0,4,17 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,CALIFORNIA,CA ,21st Century Learning Institute,060429013779,Beaumont Unified,0604290,06,939 East 10th St.,Beaumont,92223,1927,9517698424,4-Alternative Education School,2-No,CA-3366993-0129882,–,Other,Kindergarten,12th Grade,336,336,208,137,34,242,105,225,†,6,3,6,12,9,9,11,20,35,35,67,58,65,†,†,†,153,181,3,12,207,18,72,0,22,334,2,1,4,8,98 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,WISCONSIN,WI ,21st Century Preparatory School,550004502575,Racine Charter One Inc,5500045,55,1220 Mound Ave,Racine,53404, ,2625980026,1-Regular school,1-Yes,WI-8010-8110,†,Elementary,Prekindergarten,8th Grade,512,512,39,–,0,39,414,†,42,56,59,50,44,57,45,62,47,50,†,†,†,†,†,†,†,258,254,0,0,106,324,30,0,52,512,0,0,0,0,43 -21ST CENTURY PRIMARY CENTER,Illinois,ILLINOIS,IL ,21st Century Primary Center,173081003429,Park Forest SD 163,1730810,17,240 S Orchard Dr,Park Forest,60466,2045,7086689451,1-Regular school,2-No,IL-07-016-1630-02-070161630022008,†,Elementary,Kindergarten,3rd Grade,147,147,–,–,–,120,118,†,†,29,37,39,42,†,†,†,†,†,†,†,†,†,†,†,†,79,68,1,0,23,112,0,0,11,147,1,0,0,0,16 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,350018700811,21ST CENTURY PUBLIC ACADEMY,3500187,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,1-Regular school,1-Yes,NM-580-001,†,Elementary,1st Grade,8th Grade,378,378,162,84,30,192,378,†,†,†,17,15,22,34,42,85,80,83,†,†,†,†,†,†,†,200,178,12,6,26,28,306,0,0,378,3,9,3,3,19 -227 ACADEMY,MONTANA,MONTANA,MT ,227 Academy,300065501146,East Helena K-12,3000655,30,2760 Valley Dr,East Helena,59635, ,4062277700,1-Regular school,†,MT-1240-3029,†,Not Reported,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -270 - HAP - IS,Minnesota,MINNESOTA,MN ,270 - HAP - IS,270002504573,Intermediate School District 287,2700025,27,2400 ROYALS DR,MINNETONKA,55305,8888,9529884509,4-Alternative Education School,2-No,MN-060287-060287794,†,High,10th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -270 HOPKINS ALTERNATIVE,Minnesota,MINNESOTA,MN ,270 HOPKINS ALTERNATIVE,270002502875,Intermediate School District 287,2700025,27,2400 ROYALS DR,MINNETONKA,55305,8888,9529884509,4-Alternative Education School,2-No,MN-060287-060287626,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,MINNESOTA,MN ,270 HOPKINS NORTH JR HIGH ALC,270002503397,Intermediate School District 287,2700025,27,10700 CEDAR LAKE RD,MINNETONKA,55305,6499,9529884843,4-Alternative Education School,2-No,MN-060287-060287709,†,High,7th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -270 HOPKINS WEST JR HIGH ALC,Minnesota,MINNESOTA,MN ,270 HOPKINS WEST JR HIGH ALC,270002503396,Intermediate School District 287,2700025,27,3830 BAKER RD,MINNETONKA,55305,6898,9529884843,4-Alternative Education School,2-No,MN-060287-060287710,†,Middle,7th Grade,9th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,MINNESOTA,MN ,277 WESTONKA AREA LEARNING ACADEMY,270002503554,Intermediate School District 287,2700025,27,5901 SUNNYFIELD RD E,MINNETRISTA,55364,8888,9524918258,4-Alternative Education School,2-No,MN-060287-060287754,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -279 EXCEL,MINNESOTA,MINNESOTA,MN ,279 Excel,272520012756,OSSEO PUBLIC SCHOOL DISTRICT,2725200,27,11200 93RD AVE N,MAPLE GROVE,55369,8888,7633917163,1-Regular school,2-No,MN-010279-010279813,†,High,6th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -279ONLINE LEARNING PROGRAM 6-8,MINNESOTA,MINNESOTA,MN ,279Online Learning Program 6-8,272520005370,OSSEO PUBLIC SCHOOL DISTRICT,2725200,27,7300 BOONE AVE N,BROOKLYN PARK,55428,8888,7633918890,1-Regular school,2-No,MN-010279-010279811,†,Middle,6th Grade,8th Grade,98,98,61,32,9,70,98,†,†,†,†,†,†,†,†,24,25,49,†,†,†,†,†,†,†,41,57,0,16,11,31,30,0,10,98,0,0,8,8,2 -279ONLINE LEARNING PROGRAM 9-12,MINNESOTA,MINNESOTA,MN ,279Online Learning Program 9-12,272520005371,OSSEO PUBLIC SCHOOL DISTRICT,2725200,27,7300 BOONE AVE N,BROOKLYN PARK,55428,8888,7633918890,1-Regular school,2-No,MN-010279-010279812,†,High,9th Grade,12th Grade,182,182,93,48,10,103,†,182,†,†,†,†,†,†,†,†,†,†,27,43,38,74,†,†,†,77,105,0,33,30,58,49,0,12,182,0,0,15,18,9 -279ONLINE LEARNING PROGRAM K-5,MINNESOTA,MINNESOTA,MN ,279Online Learning Program K-5,272520005369,OSSEO PUBLIC SCHOOL DISTRICT,2725200,27,7300 BOONE AVE N,BROOKLYN PARK,55428,8888,7633918890,1-Regular school,2-No,MN-010279-010279810,†,Elementary,Kindergarten,5th Grade,82,82,47,26,7,54,73,†,†,9,9,13,15,15,21,†,†,†,†,†,†,†,†,†,†,39,43,0,19,9,34,12,0,8,82,0,0,8,11,5 -27J ONLINE ACADEMY,COLORADO,COLORADO,CO ,27J Online Academy,080258006836,School District 27J,0802580,08,89 N. 6TH AVENUE,BRIGHTON,80601, ,3036552527,1-Regular school,2-No,CO-0040-6687,No,High,6th Grade,12th Grade,271,271,†,†,†,†,74,197,†,†,†,†,†,†,†,16,21,37,32,51,64,50,†,†,†,120,151,1,7,154,7,91,2,9,271,1,0,5,2,66 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,MINNESOTA,MN ,283 ST LOUIS PK INDEPENDENT STUDY,270002503562,Intermediate School District 287,2700025,27,6425 W 33RD ST,SAINT LOUIS PARK,55426,8888,9529286000,4-Alternative Education School,2-No,MN-060287-060287762,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,MINNESOTA,MN ,283-IND STDY 15 AND UNDER - I.S.,270002504216,Intermediate School District 287,2700025,27,6425 W 33RD ST,SAINT LOUIS PARK,55426,8888,9529286000,4-Alternative Education School,2-No,MN-060287-060287777,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -283-ST. LOUIS PARK ALC,Minnesota,MINNESOTA,MN ,283-ST. LOUIS PARK ALC,270002503561,Intermediate School District 287,2700025,27,6425 W 33RD ST,SAINT LOUIS PARK,55426,8888,9529286000,4-Alternative Education School,2-No,MN-060287-060287761,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3-YEAR-OLD PRESCHOOL,NEBRASKA,NEBRASKA,NE ,3-YEAR-OLD PRESCHOOL,317718002379,SOUTHERN SCHOOL DISTRICT 1,3177180,31,313 W 1ST STREET,BLUE SPRING,68318, ,4026453359,1-Regular school,†,NE-340001000-340001003,†,Prekindergarten,Prekindergarten,Prekindergarten,0,0,†,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,NEW YORK,NY ,30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),360010206477,NEW YORK CITY GEOGRAPHIC DISTRICT #30,3600102,36,28-37 29TH ST,ASTORIA,11102, ,7187260501,1-Regular school,2-No,NY-343000010000-343000010300,†,Elementary,Kindergarten,8th Grade,513,513,130,–,12,142,463,†,†,50,62,61,64,63,53,62,53,45,†,†,†,†,†,†,†,266,246,4,271,62,14,120,4,37,512,2,2,131,140,41 -34-M-W-7 (34-M-N-7),FLORIDA,FLORIDA,FL ,34-M-W-7 (34-M-N-7),120144009033,ORANGE,1201440,12,445 W. AMELIA ST,ORLANDO,32801, ,4073173200,1-Regular school,2-No,FL-48-1961,†,Middle,6th Grade,8th Grade,0,0,†,†,†,†,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -360 HIGH SCHOOL,RHODE ISLAND,RHODE ISLAND,RI ,360 High School,440090000492,Providence,4400900,44,182 Thurbers Avenue,Providence,02905, ,4012744603,1-Regular school,2-No,RI-28-28195,†,High,9th Grade,12th Grade,360,360,275,179,22,297,†,360,†,†,†,†,†,†,†,†,†,†,126,85,83,66,†,†,†,201,155,2,7,272,51,14,0,10,356,1,1,4,3,160 -3B JUVENILE DETENTION CENTER,Idaho,IDAHO,ID ,3B JUVENILE DETENTION CENTER,160153000605,IDAHO FALLS DISTRICT,1601530,16,950 ENVIRONMENTAL WAY,IDAHO FALLS,83401,1621,2085422947,4-Alternative Education School,2-No,ID-091-1152,†,Other,4th Grade,12th Grade,4,4,†,†,†,†,0,4,†,†,†,†,†,0,0,0,0,0,1,3,0,0,†,†,†,4,0,0,0,1,0,3,0,0,4,0,0,0,0,1 -3EA,OHIO,OHIO,OH ,3EA,390487306154,Northridge Local,3904873,39,4407 Payne Ave,Dayton,45414,4526,9372785885,1-Regular school,2-No,OH-048736-019818,†,Secondary,6th Grade,9th Grade,2,2,†,†,†,†,1,1,†,†,†,†,†,†,†,1,†,†,1,†,†,†,†,†,†,1,1,0,0,0,0,2,0,0,2,0,0,0,0,0 -4-J ELEMENTARY SCHOOL,Wyoming,WYOMING,WY ,4-J Elementary School,560147000454,Campbell County School District #1,5601470,56,2830 Highway 50A,Gillette,82718, ,3076823076,1-Regular school,2-No,WY-0301000-0301002,†,Elementary,Kindergarten,6th Grade,36,36,2,3,3,5,33,†,†,3,5,4,5,7,6,6,†,†,†,†,†,†,†,†,†,18,18,0,0,0,0,36,0,0,36,0,0,0,0,0 -4122 - EAGLE RIDGE ACADEMY - ALC,MINNESOTA,MINNESOTA,MN ,4122 - Eagle Ridge Academy - ALC,270002512817,Intermediate School District 287,2700025,27,11111 BREN RD W,MINNETONKA,55343,8888,9527467760,4-Alternative Education School,2-No,MN-060287-060287849,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,MINNESOTA,MN ,4122 - Eagle Ridge Academy - IS,270002504823,Intermediate School District 287,2700025,27,11111 BREN RD W,MINNETONKA,55343,8888,9527467760,4-Alternative Education School,2-No,MN-060287-060287854,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,MINNESOTA,MN ,4126 - PRAIRIE SEEDS ACADEMY - IS,270002504476,Intermediate School District 287,2700025,27,6200 W BROADWAY AVE,BROOKLYN PARK,55428,8888,7634501388,4-Alternative Education School,2-No,MN-060287-060287792,†,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,NEW YORK,NY ,47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),360007705767,NEW YORK CITY GEOGRAPHIC DISTRICT # 2,3600077,36,223 E 23RD ST,NEW YORK,10010, ,9143266609,1-Regular school,2-No,NY-310200010000-310200010347,†,Elementary,Prekindergarten,8th Grade,177,177,137,–,0,137,126,†,37,14,17,23,15,15,5,31,10,10,†,†,†,†,†,†,†,93,84,2,13,88,32,36,0,6,177,0,2,5,8,50 -4K CENTER FOR LITERACY,WISCONSIN,WISCONSIN,WI ,4K Center for Literacy,550747003029,Kimberly Area School District,5507470,55,614 E Kimberly Ave,Kimberly,54136,1513,9204234190,1-Regular school,2-No,WI-2835-0150,†,Prekindergarten,Prekindergarten,Prekindergarten,290,290,31,–,8,39,†,†,290,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,145,145,1,8,16,2,249,0,14,290,0,1,2,6,11 -4K COMMUNITY-BASED,Wisconsin,WISCONSIN,WI ,4K Community-Based,551266002889,Reedsburg School District,5512660,55,401 Alexander Ave,Reedsburg,53959,1592,6087688934,1-Regular school,2-No,WI-4753-0150,†,Prekindergarten,Prekindergarten,Prekindergarten,40,40,25,–,3,28,†,†,40,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,16,24,1,0,9,2,23,0,5,40,1,0,0,0,4 -4K MCFARLAND,Wisconsin,WISCONSIN,WI ,4K McFarland,550891002902,McFarland School District,5508910,55,6009 Johnson St,McFarland,53558, ,6088384602,1-Regular school,2-No,WI-3381-0150,†,Prekindergarten,Prekindergarten,Prekindergarten,120,120,11,–,2,13,†,†,120,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,69,51,0,5,4,2,105,0,4,120,0,0,3,2,1 -4K PK OFF SITE,Wisconsin,WISCONSIN,WI ,4K PK Off Site,550852002475,Madison Metropolitan School District,5508520,55,545 W Dayton St,Madison,53703, ,6082046561,1-Regular school,2-No,WI-3269-0190,†,Prekindergarten,Prekindergarten,Prekindergarten,594,594,27,–,2,29,†,†,594,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,310,284,1,37,135,106,266,0,49,594,1,0,16,21,66 -4TH AND 5TH GRADE CENTER,OKLAHOMA,OKLAHOMA,OK ,4TH AND 5TH GRADE CENTER,400957002918,DEER CREEK,4009570,40,4653 N W 206th Street,Edmond,73012,3012,4055319328,1-Regular school,2-No,OK-55-I006-55-I006-135,†,Elementary,4th Grade,5th Grade,1239,1239,–,267,–,316,1239,†,†,†,†,†,†,615,624,†,†,†,†,†,†,†,†,†,†,651,588,29,120,177,107,689,3,114,1239,16,13,59,61,87 -500 REACH,KANSAS,KANSAS,KS ,500 Reach,200795002097,Kansas City,2007950,20,7704 Parallel Parkway,Kansas City,66612, ,9132871718,1-Regular school,2-No,KS-D0500-8403,†,High,12th Grade,12th Grade,188,188,‡,–,‡,3,†,0,†,†,†,†,†,†,†,†,†,†,†,†,†,0,†,188,†,63,125,1,4,90,58,28,1,6,188,0,1,2,2,32 -509J ON-LINE,OREGON,OREGON,OR ,509J On-Line,410674001907,Jefferson County SD 509J,4106740,41,410 SW 4th St,Madras,97741,1211,5414754820,1-Regular school,2-No,OR-00000000002053-00000000000000005689,†,Elementary,Kindergarten,8th Grade,25,25,†,†,†,†,24,†,†,1,1,2,2,1,3,3,6,6,†,†,†,†,†,†,†,10,15,5,0,7,0,10,0,3,25,3,2,0,0,3 -5280 HIGH SCHOOL,COLORADO,COLORADO,CO ,5280 High School,080336006756,School District No. 1 in the county of Denver and State of C,0803360,08,1200 W MISSISSIPPI AVE,DENVER,80223, ,7209191056,4-Alternative Education School,1-Yes,CO-0880-2994,Yes under Community Eligibility Option (CEO),High,9th Grade,12th Grade,92,92,33,–,4,37,†,92,†,†,†,†,†,†,†,†,†,†,10,25,33,24,†,†,†,51,39,0,0,27,4,57,0,2,90,0,0,0,0,15 -54TH STREET ACADEMY,MICHIGAN,MICHIGAN,MI ,54th Street Academy,262016008622,Kelloggsville Public Schools,2620160,26,173 54TH ST SW,GRAND RAPIDS,49548,5611,6165317433,4-Alternative Education School,2-No,MI-41140-02449,†,High,9th Grade,12th Grade,80,80,71,–,0,71,†,80,†,†,†,†,†,†,†,†,†,†,0,8,25,47,†,†,†,47,33,0,1,31,39,7,0,2,80,0,0,1,0,17 -56 BUILDING AT GEORGETOWN,MICHIGAN,MICHIGAN,MI ,56 Building at Georgetown,261884009043,Hudsonville Public School District,2618840,26,8175 36TH AVE,HUDSONVILLE,49426, ,6162727100,1-Regular school,2-No,MI-70190-04231,†,Middle,5th Grade,6th Grade,618,618,100,–,29,129,618,†,†,†,†,†,†,†,296,322,†,†,†,†,†,†,†,†,†,310,308,1,13,23,8,553,1,19,618,0,1,6,7,11 -5RIVERSONLINE ELEMENTARY,MINNESOTA,MINNESOTA,MN ,5RiversOnline Elementary,279144305446,Goodhue County Education District,2791443,27,395 GUERNSEY LN,RED WING,55066,8888,6513884441,1-Regular school,2-No,MN-616051-616051101,†,Elementary,Kindergarten,6th Grade,32,32,5,5,0,5,29,†,†,3,2,1,6,5,7,8,†,†,†,†,†,†,†,†,†,15,17,3,0,3,0,22,0,4,32,2,1,0,0,2 -5RIVERSONLINE SECONDARY,MINNESOTA,MINNESOTA,MN ,5RiversOnline Secondary,279144305447,Goodhue County Education District,2791443,27,395 GUERNSEY LN,RED WING,55066,8888,6513884441,1-Regular school,2-No,MN-616051-616051201,†,High,7th Grade,12th Grade,182,182,50,50,8,58,19,163,†,†,†,†,†,†,†,†,12,7,18,32,41,72,†,†,†,83,99,7,0,16,4,142,0,13,182,6,1,0,0,8 -6-12 SUMMERS COUNTY COMPREHENSIVE HS,WEST VIRGINIA,WEST VIRGINIA,WV ,6-12 Summers County Comprehensive HS,540135001603,SUMMERS COUNTY SCHOOLS,5401350,54,37 Bobcat Dr,Hinton,25951,9130,3044666040,1-Regular school,2-No,WV-8100000-81503,†,High,6th Grade,12th Grade,669,669,–,435,–,–,290,379,†,†,†,†,†,†,†,79,103,108,111,100,87,81,†,†,†,354,315,0,0,11,12,619,0,27,669,0,0,0,0,3 -6-12TH GRADE BUILDING,Minnesota,MINNESOTA,MN ,6-12th Grade Building,270015000652,CLINTON-GRACEVILLE-BEARDSLEY,2700150,27,712 3RD ST,GRACEVILLE,56240,0398,3207487233,1-Regular school,2-No,MN-012888-012888003,†,High,6th Grade,12th Grade,130,130,25,25,10,35,58,72,†,†,†,†,†,†,†,17,17,24,18,10,24,20,†,†,†,56,74,1,0,5,0,120,0,4,130,0,1,0,0,0 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,MINNESOTA,MN ,622 ALTERNATIVE MIDDLE/HIGH SCHOOL,272385001044,North St. Paul-Maplewood Oakdale,2723850,27,2520 12TH AVE E,NORTH SAINT PAUL,55109,8888,6517487610,4-Alternative Education School,2-No,MN-010622-010622040,†,High,6th Grade,12th Grade,1,1,†,†,†,†,0,1,†,†,†,†,†,†,†,0,0,0,0,0,0,1,†,†,†,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -622 ONLINE ELEMENTARY SCHOOL,MINNESOTA,MINNESOTA,MN ,622 Online Elementary School,272385005410,North St. Paul-Maplewood Oakdale,2723850,27,2170 7TH AVE E,NORTH SAINT PAUL,55109,8888,6517487610,1-Regular school,2-No,MN-010622-010622047,†,Elementary,Kindergarten,5th Grade,0,0,†,†,†,†,0,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -622 ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,622 Online High School,272385005412,North St. Paul-Maplewood Oakdale,2723850,27,2520 12TH AVE E,NORTH SAINT PAUL,55109,8888,6517487610,1-Regular school,2-No,MN-010622-010622049,†,High,9th Grade,12th Grade,114,114,68,56,10,78,†,114,†,†,†,†,†,†,†,†,†,†,10,27,39,38,†,†,†,45,69,0,19,23,32,28,0,12,114,0,0,7,12,5 -622 ONLINE MIDDLE SCHOOL,MINNESOTA,MINNESOTA,MN ,622 Online Middle School,272385005411,North St. Paul-Maplewood Oakdale,2723850,27,2170 7TH AVE E,NORTH SAINT PAUL,55109,8888,6517487610,1-Regular school,2-No,MN-010622-010622048,†,Middle,6th Grade,8th Grade,0,0,†,†,†,†,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -6TH AND 7TH GRADE ACADEMY,Oklahoma,OKLAHOMA,OK ,6TH AND 7TH GRADE ACADEMY,402097000599,MUSKOGEE,4020970,40,300 Virgil Matthews Dr,Muskogee,74403,4403,9186843775,1-Regular school,2-No,OK-51-I020-51-I020-505,†,Middle,6th Grade,7th Grade,544,544,–,415,–,498,544,†,†,†,†,†,†,†,†,284,260,†,†,†,†,†,†,†,†,271,273,33,1,128,76,131,1,174,544,14,19,1,0,69 -6TH GRADE ACADEMY AT ARNETT HILLS,VIRGINIA,VIRGINIA,VA ,6th Grade Academy at Arnett Hills,510111003138,Danville City Public Schools,5101110,51,6811 Northmont Blvd,Danville,24540, ,4347996433,4-Alternative Education School,2-No,VA-108-1080234,†,Not Reported,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694819899327316336.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694819899327316336.csv deleted file mode 100644 index ef3b0d8178..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694819899327316336.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Hispanic - female [Public School] 2023-24,Black or African American - male [Public School] 2023-24,Black or African American - female [Public School] 2023-24,White - male [Public School] 2023-24,White - female [Public School] 2023-24,Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2023-24,Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2023-24,Two or More Races - male [Public School] 2023-24,Two or More Races - female [Public School] 2023-24,Prekindergarten Students - male [Public School] 2023-24,Prekindergarten Students - female [Public School] 2023-24,Kindergarten Students - male [Public School] 2023-24,Kindergarten Students - female [Public School] 2023-24,Grade 1 Students - male [Public School] 2023-24,Grade 1 Students - female [Public School] 2023-24,Grade 2 Students - male [Public School] 2023-24,Grade 2 Students - female [Public School] 2023-24,Grade 3 Students - male [Public School] 2023-24,Grade 3 Students - female [Public School] 2023-24,Grade 4 Students - male [Public School] 2023-24,Grade 4 Students - female [Public School] 2023-24,Grade 5 Students - male [Public School] 2023-24,Grade 5 Students - female [Public School] 2023-24,Grade 6 Students - male [Public School] 2023-24,Grade 6 Students - female [Public School] 2023-24,Grade 7 Students - male [Public School] 2023-24,Grade 7 Students - female [Public School] 2023-24,Grade 8 Students - male [Public School] 2023-24,Grade 8 Students - female [Public School] 2023-24,Grade 9 Students - male [Public School] 2023-24,Grade 9 Students - female [Public School] 2023-24,Grade 10 Students - male [Public School] 2023-24,Grade 10 Students - female [Public School] 2023-24,Grade 11 Students - male [Public School] 2023-24,Grade 11 Students - female [Public School] 2023-24,Grade 12 Students - male [Public School] 2023-24,Grade 12 Students - female [Public School] 2023-24,Grade 13 Students - male [Public School] 2023-24,Grade 13 Students - female [Public School] 2023-24,Ungraded Students - male [Public School] 2023-24,Ungraded Students - female [Public School] 2023-24,Adult Education Students - male [Public School] 2023-24,Adult Education Students - female [Public School] 2023-24,Prekindergarten Students - American Indian/Alaska Native [Public School] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Prekindergarten Students - Hispanic [Public School] 2023-24,Prekindergarten Students - Black or African American [Public School] 2023-24,Prekindergarten Students - White [Public School] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Prekindergarten Students Two or More Races [Public School] 2023-24,Kindergarten Students - American Indian/Alaska Native [Public School] 2023-24,Kindergarten Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Kindergarten Students - Hispanic [Public School] 2023-24,Kindergarten Students - Black or African American [Public School] 2023-24,Kindergarten Students White [Public School] 2023-24,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Kindergarten Students Two or More Races [Public School] 2023-24,Grade 1 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 1 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,285,28,17,128,127,0,0,11,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,149,140,160,136,189,170,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,17,59,58,2,2,0,2,7,5,†,†,14,13,15,15,17,10,14,10,17,19,6,18,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,†,†,†,†,†,†,†,†,†,0,0,6,17,1,0,3,0,1,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,10,22,20,0,1,0,0,2,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,11,14,13,12,11,10,†,†,†,†,†,†,†,†,†,†,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000756 -10TH STREET SCHOOL,Washington,9,2,0,47,40,0,0,13,10,†,†,†,†,†,†,†,†,†,†,†,†,†,†,29,29,35,23,31,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,4,1,1,11,6,0,0,2,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,1,0,0,1,17,15,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,53,20,19,94,119,0,1,11,12,†,†,†,†,†,†,†,†,†,†,†,†,†,†,53,56,60,80,68,73,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004622 -112 ALC SEAT-BASED,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819005118 -12TH STREET ELEMENTARY,Michigan,21,34,40,152,174,0,0,19,42,0,0,58,47,38,47,38,49,48,54,43,53,41,58,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,13,8,15,50,0,19,0,8,262895007802 -130-E-SE-2,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144010794 -18+ PROGRAM,NEBRASKA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,318009002335 -180 DEGREES / YOUTH SHELTER,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273351012806 -196ONLINE ELEMENTARY,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,273239005353 -196ONLINE HIGH SCHOOL,MINNESOTA,8,9,11,23,32,0,0,8,6,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,6,12,14,8,14,19,17,21,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273239005352 -196ONLINE MIDDLE SCHOOL,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273239005351 -199 ONLINE HIGH SCHOOL,MINNESOTA,7,0,2,6,6,0,0,2,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3,2,3,3,6,6,5,7,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,271503005356 -1R ELEMENTARY,Nebraska,8,1,1,84,92,0,0,0,0,0,0,10,9,8,12,13,9,9,11,11,10,11,10,8,17,12,12,13,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,2,0,17,0,0,0,0,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,87,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,0,1,30,27,27,37,21,22,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,28,548,582,1,2,0,0,10,18,†,†,42,45,52,51,51,50,33,52,41,46,32,35,48,47,43,40,48,49,50,66,59,44,42,59,42,46,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,4,80,0,0,3,0,0,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,21,19,30,440,557,2,0,4,9,†,†,†,†,†,†,†,†,†,†,†,†,†,†,13,16,34,31,50,59,101,137,98,127,97,129,89,122,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,420009100597 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,109,7,11,30,42,0,0,12,10,†,†,5,1,2,1,4,2,6,6,2,7,6,3,9,2,11,9,15,20,17,18,28,37,24,34,24,41,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,0,3,0,0,0,0,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,63,169,155,20,10,0,0,26,26,16,26,26,30,28,31,28,22,23,21,30,27,25,20,28,34,24,23,30,20,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,8,26,1,0,7,0,0,16,30,2,0,8,0,0,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,7,57,55,0,0,0,0,5,6,†,†,17,12,19,18,17,22,26,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,24,0,0,2,0,0,173081003429 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,7,16,12,159,147,0,0,0,0,†,†,†,†,8,9,7,8,10,12,15,19,19,23,45,40,50,30,46,37,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,350018700811 -227 ACADEMY,MONTANA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,300065501146 -270 - HAP - IS,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002502875 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503396 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503554 -279 EXCEL,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520012756 -279ONLINE LEARNING PROGRAM 6-8,MINNESOTA,9,16,15,12,18,0,0,3,7,†,†,†,†,†,†,†,†,†,†,†,†,†,†,13,11,10,15,18,31,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520005370 -279ONLINE LEARNING PROGRAM 9-12,MINNESOTA,21,24,34,25,24,0,0,4,8,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,16,11,21,22,12,26,28,46,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520005371 -279ONLINE LEARNING PROGRAM K-5,MINNESOTA,4,16,18,6,6,0,0,4,4,†,†,5,4,4,5,5,8,6,9,5,10,14,7,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,1,7,0,0,0,0,1,272520005369 -27J ONLINE ACADEMY,COLORADO,88,2,5,43,48,1,1,2,7,†,†,†,†,†,†,†,†,†,†,†,†,†,†,8,8,9,12,15,22,15,17,27,24,24,40,22,28,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,080258006836 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503561 -3-YEAR-OLD PRESCHOOL,NEBRASKA,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,317718002379 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,21,6,8,63,57,1,3,22,15,†,†,29,21,33,29,31,30,33,31,27,35,28,25,29,33,31,22,25,20,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,25,9,3,7,0,6,0,32,360010206477 -34-M-W-7 (34-M-N-7),FLORIDA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144009033 -360 HIGH SCHOOL,RHODE ISLAND,112,20,31,10,4,0,0,6,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,71,54,46,38,49,32,35,31,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,0,0,0,3,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,160153000605 -3EA,OHIO,0,0,0,1,1,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,†,†,†,†,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,390487306154 -4-J ELEMENTARY SCHOOL,Wyoming,0,0,0,18,18,0,0,0,0,†,†,0,3,2,3,2,2,5,0,2,5,2,4,5,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,0,0,0,0,560147000454 -4122 - EAGLE RIDGE ACADEMY - ALC,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002512817 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,38,17,15,19,17,0,0,2,4,17,20,5,9,6,11,12,11,10,5,7,8,1,4,22,9,6,4,7,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,6,9,4,16,0,2,0,0,8,2,2,0,2,1,1,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,5,1,1,124,125,0,0,7,7,145,145,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,8,16,2,249,0,14,†,†,†,†,†,†,†,†,†,550747003029 -4K COMMUNITY-BASED,Wisconsin,5,0,2,11,12,0,0,0,5,16,24,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,9,2,23,0,5,†,†,†,†,†,†,†,†,†,551266002889 -4K MCFARLAND,Wisconsin,3,2,0,61,44,0,0,2,2,69,51,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,5,4,2,105,0,4,†,†,†,†,†,†,†,†,†,550891002902 -4K PK OFF SITE,Wisconsin,69,60,46,137,129,0,0,30,19,310,284,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,37,135,106,266,0,49,†,†,†,†,†,†,†,†,†,550852002475 -4TH AND 5TH GRADE CENTER,OKLAHOMA,90,60,47,368,321,2,1,59,55,†,†,†,†,†,†,†,†,†,†,319,296,332,292,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,400957002918 -500 REACH,KANSAS,58,19,39,9,19,0,1,1,5,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,†,†,63,125,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,200795002097 -509J ON-LINE,OREGON,4,0,0,3,7,0,0,1,2,†,†,1,0,0,1,1,1,1,1,0,1,1,2,2,1,2,4,2,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,0,0,0,0,0,0,0,410674001907 -5280 HIGH SCHOOL,COLORADO,12,3,1,31,26,0,0,2,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,8,2,14,10,16,16,13,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,080336006756 -54TH STREET ACADEMY,MICHIGAN,14,24,15,4,3,0,0,1,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,5,3,14,11,28,19,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262016008622 -56 BUILDING AT GEORGETOWN,MICHIGAN,12,7,1,274,279,1,0,11,8,†,†,†,†,†,†,†,†,†,†,†,†,133,163,177,145,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,261884009043 -5RIVERSONLINE ELEMENTARY,MINNESOTA,1,0,0,10,12,0,0,1,3,†,†,1,2,2,0,1,0,4,2,2,3,4,3,1,7,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,0,0,1,0,279144305446 -5RIVERSONLINE SECONDARY,MINNESOTA,8,1,3,67,75,0,0,1,12,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,7,5,3,4,7,11,17,15,14,27,35,37,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,279144305447 -6-12 SUMMERS COUNTY COMPREHENSIVE HS,WEST VIRGINIA,8,5,7,334,285,0,0,12,15,†,†,†,†,†,†,†,†,†,†,†,†,†,†,47,32,59,44,52,56,56,55,52,48,39,48,49,32,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,540135001603 -6-12TH GRADE BUILDING,Minnesota,5,0,0,53,67,0,0,3,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,7,10,8,9,9,15,9,9,2,8,13,11,8,12,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,0,0,0,1,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,1,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385001044 -622 ONLINE ELEMENTARY SCHOOL,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,272385005410 -622 ONLINE HIGH SCHOOL,MINNESOTA,18,14,18,15,13,0,0,4,8,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,7,3,7,20,17,22,14,24,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385005412 -622 ONLINE MIDDLE SCHOOL,MINNESOTA,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385005411 -6TH AND 7TH GRADE ACADEMY,Oklahoma,59,40,36,63,68,0,1,84,90,†,†,†,†,†,†,†,†,†,†,†,†,†,†,131,153,140,120,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,402097000599 -6TH GRADE ACADEMY AT ARNETT HILLS,VIRGINIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,510111003138 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820125410389699.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820125410389699.csv deleted file mode 100644 index 7f2f0f88ec..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820125410389699.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Grade 1 Students - Hispanic [Public School] 2023-24,Grade 1 Students - Black or African American [Public School] 2023-24,Grade 1 Students - White [Public School] 2023-24,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 1 Students - Two or More Races [Public School] 2023-24,Grade 2 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 2 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 2 Students - Hispanic [Public School] 2023-24,Grade 2 Students - Black or African American [Public School] 2023-24,Grade 2 Students - White [Public School] 2023-24,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 2 Students - Two or More Races [Public School] 2023-24,Grade 3 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 3 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 3 Students - Hispanic [Public School] 2023-24,Grade 3 Students - Black or African American [Public School] 2023-24,Grade 3 Students - White [Public School] 2023-24,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 3 Students - Two or More Races [Public School] 2023-24,Grade 4 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 4 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 4 Students - Hispanic [Public School] 2023-24,Grade 4 Students - Black or African American [Public School] 2023-24,Grade 4 Students - White [Public School] 2023-24,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 4 Students - Two or More Races [Public School] 2023-24,Grade 5 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 5 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 5 Students - Hispanic [Public School] 2023-24,Grade 5 Students - Black or African American [Public School] 2023-24,Grade 5 Students - White [Public School] 2023-24,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 5 Students - Two or More Races [Public School] 2023-24,Grade 6 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 6 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 6 Students - Hispanic [Public School] 2023-24,Grade 6 Students - Black or African American [Public School] 2023-24,Grade 6 Students - White [Public School] 2023-24,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 6 Students - Two or More Races [Public School] 2023-24,Grade 7 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 7 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 7 Students - Hispanic [Public School] 2023-24,Grade 7 Students - Black or African American [Public School] 2023-24,Grade 7 Students - White [Public School] 2023-24,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 7 Students - Two or More Races [Public School] 2023-24,Grade 8 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 8 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 8 Students - Hispanic [Public School] 2023-24,Grade 8 Students - Black or African American [Public School] 2023-24,Grade 8 Students - White [Public School] 2023-24,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 8 Students - Two or More Races [Public School] 2023-24,Grade 9 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 9 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 9 Students - Hispanic [Public School] 2023-24,Grade 9 Students - Black or African American [Public School] 2023-24,Grade 9 Students - White [Public School] 2023-24,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,197,19,66,0,6,0,2,193,13,80,0,8,0,8,221,13,109,0,8,†,†,†,†,†,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,5,24,0,0,0,0,0,4,17,1,0,5,0,0,2,18,1,1,2,0,0,10,22,1,1,2,0,0,5,19,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,3,18,1,0,2,0,0,11,13,0,0,1,0,1,7,11,0,0,2,†,†,†,†,†,320006000756 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,7,0,13,1,29,0,8,5,2,13,1,27,0,10,6,1,4,0,31,0,5,†,†,†,†,†,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,4,24,10,68,0,3,0,5,29,12,85,1,8,0,3,49,17,60,0,12,†,†,†,†,†,270819004622 -112 ALC SEAT-BASED,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270819005118 -12TH STREET ELEMENTARY,Michigan,6,14,49,0,8,0,9,5,9,62,0,2,0,8,8,15,60,0,11,0,9,13,10,54,0,10,0,17,9,11,51,0,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262895007802 -130-E-SE-2,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144010794 -18+ PROGRAM,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,318009002335 -180 DEGREES / YOUTH SHELTER,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273351012806 -196ONLINE ELEMENTARY,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273239005353 -196ONLINE HIGH SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,3,3,5,4,273239005352 -196ONLINE MIDDLE SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,273239005351 -199 ONLINE HIGH SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,3,0,1,271503005356 -1R ELEMENTARY,Nebraska,1,0,19,0,0,0,0,3,0,19,0,0,0,0,2,0,18,0,0,0,0,0,0,21,0,0,0,0,3,0,18,0,0,0,0,1,0,24,0,0,0,0,5,1,18,0,0,0,0,1,1,22,0,0,†,†,†,†,†,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,64,0,0,0,0,0,0,43,0,0,0,0,†,†,†,†,†,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,4,96,0,0,3,0,0,2,97,1,0,1,0,0,4,79,0,0,2,0,0,4,82,0,0,1,0,0,3,63,0,0,1,0,0,3,91,0,0,1,0,0,5,77,0,0,1,0,0,5,88,0,0,4,0,0,5,106,0,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,7,3,16,1,1,0,0,1,3,58,0,3,0,1,5,4,94,0,5,0,0,12,17,205,420009100597 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,1,1,1,0,0,0,1,2,0,1,0,2,0,0,7,0,4,0,1,0,0,8,0,1,0,0,0,1,3,0,2,0,3,0,0,10,0,1,0,0,0,0,17,0,2,0,1,1,0,24,2,8,0,0,0,1,26,2,6,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,12,40,3,0,4,0,0,13,30,4,0,3,0,0,7,32,3,0,2,0,0,19,30,2,0,6,0,0,1,31,4,0,9,0,0,11,44,1,0,6,0,0,9,33,1,0,4,0,0,10,28,9,0,3,†,†,†,†,†,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,6,28,0,0,3,0,0,6,30,0,0,3,1,0,8,30,0,0,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,173081003429 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,0,3,14,0,0,2,0,1,0,12,0,0,0,0,1,4,17,0,0,1,0,1,2,30,0,0,2,0,3,3,34,0,0,1,3,7,4,70,0,0,1,2,6,4,67,0,0,5,1,7,8,62,0,0,†,†,†,†,†,350018700811 -227 ACADEMY,MONTANA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,300065501146 -270 - HAP - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002502875 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503396 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002503554 -279 EXCEL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272520012756 -279ONLINE LEARNING PROGRAM 6-8,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,4,10,7,0,2,0,5,3,7,7,0,3,0,10,4,14,16,0,5,†,†,†,†,†,272520005370 -279ONLINE LEARNING PROGRAM 9-12,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,4,10,11,272520005371 -279ONLINE LEARNING PROGRAM K-5,MINNESOTA,1,5,2,0,0,0,3,1,7,2,0,0,0,5,3,4,0,0,3,0,3,0,7,4,0,1,0,6,3,4,4,0,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520005369 -27J ONLINE ACADEMY,COLORADO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,9,1,5,0,0,0,0,11,1,8,0,1,0,1,16,2,16,1,1,0,1,17,0,13,080258006836 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002503561 -3-YEAR-OLD PRESCHOOL,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,317718002379 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,13,0,13,0,4,0,35,7,2,13,0,4,0,40,5,2,14,0,3,1,37,5,1,16,–,2,0,32,3,0,13,2,3,2,30,7,1,14,0,8,1,21,7,4,16,1,3,0,19,6,1,14,1,4,†,†,†,†,†,360010206477 -34-M-W-7 (34-M-N-7),FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,120144009033 -360 HIGH SCHOOL,RHODE ISLAND,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,5,85,22,6,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,160153000605 -3EA,OHIO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,1,390487306154 -4-J ELEMENTARY SCHOOL,Wyoming,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,6,0,0,0,0,0,0,6,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,560147000454 -4122 - EAGLE RIDGE ACADEMY - ALC,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002512817 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,13,1,1,0,0,0,1,11,6,5,0,0,0,1,7,4,3,0,0,1,0,8,1,5,0,0,0,1,4,0,0,0,0,0,2,16,10,3,0,0,0,1,7,1,0,0,1,0,0,5,3,1,0,1,†,†,†,†,†,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550747003029 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550852002475 -4TH AND 5TH GRADE CENTER,OKLAHOMA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,10,56,83,45,356,0,65,19,64,94,62,333,3,49,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,400957002918 -500 REACH,KANSAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,200795002097 -509J ON-LINE,OREGON,1,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0,4,0,1,0,0,3,0,1,0,2,†,†,†,†,†,410674001907 -5280 HIGH SCHOOL,COLORADO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,4,1,5,080336006756 -54TH STREET ACADEMY,MICHIGAN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,262016008622 -56 BUILDING AT GEORGETOWN,MICHIGAN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,8,9,3,266,0,10,1,5,14,5,287,1,9,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,261884009043 -5RIVERSONLINE ELEMENTARY,MINNESOTA,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,3,0,2,1,0,0,0,6,0,0,1,0,0,0,5,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,279144305446 -5RIVERSONLINE SECONDARY,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,0,10,0,0,0,0,1,0,6,0,0,1,0,2,0,12,279144305447 -6-12 SUMMERS COUNTY COMPREHENSIVE HS,WEST VIRGINIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,0,75,0,1,0,0,1,1,94,0,7,0,0,1,3,100,0,4,0,0,1,1,104,540135001603 -6-12TH GRADE BUILDING,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,0,14,0,1,0,0,1,0,16,0,0,0,0,0,0,23,0,1,1,0,1,0,16,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272385001044 -622 ONLINE ELEMENTARY SCHOOL,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385005410 -622 ONLINE HIGH SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,2,3,3,2,272385005412 -622 ONLINE MIDDLE SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,272385005411 -6TH AND 7TH GRADE ACADEMY,Oklahoma,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,22,1,60,46,71,1,83,11,0,68,30,60,0,91,†,†,†,†,†,†,†,†,†,†,†,†,402097000599 -6TH GRADE ACADEMY AT ARNETT HILLS,VIRGINIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,510111003138 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820363429046615.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820363429046615.csv deleted file mode 100644 index ea2f089d58..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694820363429046615.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 9 Students - Two or More Races [Public School] 2023-24,Grade 10 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 10 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 10 Students - Hispanic [Public School] 2023-24,Grade 10 Students - Black or African American [Public School] 2023-24,Grade 10 Students - White [Public School] 2023-24,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 10 Students - Two or More Races [Public School] 2023-24,Grade 11 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 11 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 11 Students - Hispanic [Public School] 2023-24,Grade 11 Students - Black or African American [Public School] 2023-24,Grade 11 Students - White [Public School] 2023-24,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 11 Students - Two or More Races [Public School] 2023-24,Grade 12 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 12 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 12 Students - Hispanic [Public School] 2023-24,Grade 12 Students - Black or African American [Public School] 2023-24,Grade 12 Students - White [Public School] 2023-24,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 12 Students - Two or More Races [Public School] 2023-24,Grade 13 Students - American Indian/Alaska Native [Public School] 2023-24,Grade 13 Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Grade 13 Students - Hispanic [Public School] 2023-24,Grade 13 Students - Black or African American [Public School] 2023-24,Grade 13 Students - White [Public School] 2023-24,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Grade 13 Students - Two or More Races [Public School] 2023-24,Ungraded Students - American Indian/Alaska Native [Public School] 2023-24,Ungraded Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Ungraded Students - Hispanic [Public School] 2023-24,Ungraded Students - Black or African American [Public School] 2023-24,Ungraded Students - White [Public School] 2023-24,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Ungraded Students - Two or More Races [Public School] 2023-24,Adult Education Students - American Indian/Alaska Native [Public School] 2023-24,Adult Education Students - Asian or Asian/Pacific Islander [Public School] 2023-24,Adult Education Students - Hispanic [Public School] 2023-24,Adult Education Students - Black or African American [Public School] 2023-24,Adult Education Students - White [Public School] 2023-24,Adult Education - Nat. Hawaiian or Other Pacific Isl. [Public School] 2023-24,Adult Education Students - Two or More Races [Public School] 2023-24,Prekindergarten Students - American Indian/Alaska Native - male [Public School] 2023-24,Prekindergarten Students - American Indian/Alaska Native - female [Public School] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander - male [Public School] 2023-24,Prekindergarten Students - Asian or Asian/Pacific Islander - female [Public School] 2023-24,Prekindergarten Students - Hispanic - male [Public School] 2023-24,Prekindergarten Students - Hispanic - female [Public School] 2023-24,Prekindergarten Students - Black or African American - male [Public School] 2023-24,Prekindergarten Students - Black or African American - female [Public School] 2023-24,Prekindergarten Students - White - male [Public School] 2023-24,Prekindergarten Students - White - female [Public School] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2023-24,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2023-24,Prekindergarten Students - Two or More Races - male [Public School] 2023-24,Prekindergarten Students - Two or More Races - female [Public School] 2023-24,Kindergarten Students - American Indian/Alaska Native - male [Public School] 2023-24,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000756 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,6,2,15,0,5,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004622 -112 ALC SEAT-BASED,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819005118 -12TH STREET ELEMENTARY,Michigan,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262895007802 -130-E-SE-2,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144010794 -18+ PROGRAM,NEBRASKA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,318009002335 -180 DEGREES / YOUTH SHELTER,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273351012806 -196ONLINE ELEMENTARY,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,273239005353 -196ONLINE HIGH SCHOOL,MINNESOTA,0,3,0,0,5,1,14,0,2,1,2,2,10,12,0,6,1,1,4,4,25,0,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273239005352 -196ONLINE MIDDLE SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,273239005351 -199 ONLINE HIGH SCHOOL,MINNESOTA,0,0,0,0,2,0,2,0,2,0,0,4,2,6,0,0,0,0,6,0,3,0,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,271503005356 -1R ELEMENTARY,Nebraska,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,0,5,0,0,5,96,0,0,2,0,0,6,92,1,0,2,0,0,2,83,1,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,1,3,0,1,5,10,209,0,0,0,0,5,7,214,0,0,0,1,3,5,201,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,420009100597 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,0,0,–,4,39,5,13,–,4,1,0,29,5,14,0,9,1,5,38,3,16,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,2,6,11,15,1,0,0,0,2,5,0,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,173081003429 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,350018700811 -227 ACADEMY,MONTANA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,300065501146 -270 - HAP - IS,Minnesota,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002502875 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503396 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503554 -279 EXCEL,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520012756 -279ONLINE LEARNING PROGRAM 6-8,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520005370 -279ONLINE LEARNING PROGRAM 9-12,MINNESOTA,0,1,0,10,8,12,9,0,4,0,3,6,15,12,0,2,0,19,12,21,17,0,5,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272520005371 -279ONLINE LEARNING PROGRAM K-5,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,272520005369 -27J ONLINE ACADEMY,COLORADO,0,1,0,0,34,1,14,0,2,0,3,38,1,18,0,4,1,1,29,1,17,1,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,080258006836 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503561 -3-YEAR-OLD PRESCHOOL,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,317718002379 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,360010206477 -34-M-W-7 (34-M-N-7),FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144009033 -360 HIGH SCHOOL,RHODE ISLAND,–,5,–,–,64,14,3,–,3,–,2,66,8,4,–,1,0,0,57,7,1,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,160153000605 -3EA,OHIO,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,390487306154 -4-J ELEMENTARY SCHOOL,Wyoming,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,560147000454 -4122 - EAGLE RIDGE ACADEMY - ALC,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002512817 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,1,5,4,5,2,2,9,7,0,0,1,1,0,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,2,6,11,5,1,1,124,125,0,0,7,7,†,550747003029 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,0,0,4,5,0,2,11,12,0,0,0,5,†,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,3,2,1,3,2,0,61,44,0,0,2,2,†,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,0,16,21,66,69,60,46,137,129,0,0,30,19,†,550852002475 -4TH AND 5TH GRADE CENTER,OKLAHOMA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,400957002918 -500 REACH,KANSAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,†,†,†,†,1,4,90,58,28,1,6,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,200795002097 -509J ON-LINE,OREGON,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,410674001907 -5280 HIGH SCHOOL,COLORADO,0,0,–,–,7,1,14,–,2,–,–,12,–,20,–,–,0,0,4,2,18,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,080336006756 -54TH STREET ACADEMY,MICHIGAN,0,0,0,0,2,6,0,0,0,0,0,9,11,3,0,2,0,1,20,22,4,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262016008622 -56 BUILDING AT GEORGETOWN,MICHIGAN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,261884009043 -5RIVERSONLINE ELEMENTARY,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,279144305446 -5RIVERSONLINE SECONDARY,MINNESOTA,0,3,0,0,3,2,26,0,1,1,0,3,1,33,0,3,5,0,5,1,55,0,6,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,279144305447 -6-12 SUMMERS COUNTY COMPREHENSIVE HS,WEST VIRGINIA,0,5,0,0,2,1,93,0,4,0,0,3,2,79,0,3,0,0,0,4,74,0,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,540135001603 -6-12TH GRADE BUILDING,Minnesota,0,0,0,0,0,0,10,0,0,0,0,0,0,23,0,1,0,0,1,0,18,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385001044 -622 ONLINE ELEMENTARY SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,272385005410 -622 ONLINE HIGH SCHOOL,MINNESOTA,0,0,0,2,3,10,7,0,5,0,10,8,9,9,0,3,0,5,9,10,10,0,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385005412 -622 ONLINE MIDDLE SCHOOL,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,272385005411 -6TH AND 7TH GRADE ACADEMY,Oklahoma,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,402097000599 -6TH GRADE ACADEMY AT ARNETT HILLS,VIRGINIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,510111003138 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694834689281632733.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694834689281632733.csv deleted file mode 100644 index 5859f14c3a..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694834689281632733.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Kindergarten Students - Black or African American [Public School] 2018-19,Kindergarten Students White [Public School] 2018-19,Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Kindergarten Students Two or More Races [Public School] 2018-19,Grade 1 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 1 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 1 Students - Hispanic [Public School] 2018-19,Grade 1 Students - Black or African American [Public School] 2018-19,Grade 1 Students - White [Public School] 2018-19,Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 1 Students - Two or More Races [Public School] 2018-19,Grade 2 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 2 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 2 Students - Hispanic [Public School] 2018-19,Grade 2 Students - Black or African American [Public School] 2018-19,Grade 2 Students - White [Public School] 2018-19,Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 2 Students - Two or More Races [Public School] 2018-19,Grade 3 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 3 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 3 Students - Hispanic [Public School] 2018-19,Grade 3 Students - Black or African American [Public School] 2018-19,Grade 3 Students - White [Public School] 2018-19,Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 3 Students - Two or More Races [Public School] 2018-19,Grade 4 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 4 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 4 Students - Hispanic [Public School] 2018-19,Grade 4 Students - Black or African American [Public School] 2018-19,Grade 4 Students - White [Public School] 2018-19,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 4 Students - Two or More Races [Public School] 2018-19,Grade 5 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 5 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 5 Students - Hispanic [Public School] 2018-19,Grade 5 Students - Black or African American [Public School] 2018-19,Grade 5 Students - White [Public School] 2018-19,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 5 Students - Two or More Races [Public School] 2018-19,Grade 6 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 6 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 6 Students - Hispanic [Public School] 2018-19,Grade 6 Students - Black or African American [Public School] 2018-19,Grade 6 Students - White [Public School] 2018-19,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 6 Students - Two or More Races [Public School] 2018-19,Grade 7 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 7 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 7 Students - Hispanic [Public School] 2018-19,Grade 7 Students - Black or African American [Public School] 2018-19,Grade 7 Students - White [Public School] 2018-19,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,Grade 7 Students - Two or More Races [Public School] 2018-19,Grade 8 Students - American Indian/Alaska Native [Public School] 2018-19,Grade 8 Students - Asian or Asian/Pacific Islander [Public School] 2018-19,Grade 8 Students - Hispanic [Public School] 2018-19,Grade 8 Students - Black or African American [Public School] 2018-19,Grade 8 Students - White [Public School] 2018-19,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [Public School] 2018-19,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,15,210,12,152,–,12,–,7,186,13,166,–,9,–,4,162,8,113,–,12,–,8,174,13,117,–,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,44,6,–,5,–,–,10,34,5,–,2,1,1,13,43,5,–,3,–,–,10,39,–,–,3,1,–,7,46,–,–,4,1,–,13,41,1,1,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,1,9,50,–,–,–,–,–,10,37,1,–,3,–,1,7,37,1,–,320006000756 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,3,13,–,33,–,7,6,3,7,1,33,–,8,–,2,8,1,38,–,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,2,35,12,62,–,6,1,10,50,17,91,1,12,3,6,33,16,83,–,270819004622 -112 ALC SEAT-BASED,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270819005118 -118-E-SW-5,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144008672 -12TH STREET ELEMENTARY,Michigan,11,77,0,12,0,7,9,6,60,0,6,0,3,9,6,68,0,6,0,14,3,10,49,0,6,0,9,4,6,55,0,6,0,12,9,4,60,0,9,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262895007802 -18+ PROGRAM,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,318009002335 -1R ELEMENTARY,Nebraska,0,19,0,0,0,0,7,0,14,0,0,0,0,11,0,8,0,0,0,0,12,0,6,0,0,0,0,2,0,17,0,0,0,0,2,1,20,0,0,0,0,0,1,16,0,0,0,0,2,0,19,0,0,0,0,1,0,24,0,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,57,–,–,–,0,–,–,65,–,1,–,0,–,–,80,–,–,–,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,65,–,–,1,–,–,3,68,–,–,4,–,–,–,71,–,–,2,–,–,4,69,–,–,3,–,–,2,67,–,–,–,–,–,–,54,–,–,1,–,–,–,56,–,–,1,–,–,1,71,–,–,4,–,–,4,68,–,–,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,0,8,7,51,0,5,0,1,9,15,84,0,6,0,3,15,13,123,0,420009100597 -21ST CENTURY EARLY LEARNING FOUNDATIONS ACADEMY,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484496013299 -21ST CENTURY ESCHOOL,Wisconsin,0,0,0,0,–,–,–,–,1,–,–,–,–,–,–,1,–,–,–,–,–,–,1,–,–,0,0,0,0,0,0,0,–,–,–,–,1,–,–,–,–,–,–,1,–,–,–,–,–,–,1,–,–,–,–,–,–,2,–,550951002818 -21ST CENTURY LEARNING ACADEMY/KIOWA COUNTY,Kansas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,4,–,–,–,–,–,–,6,–,–,–,–,–,–,16,1,3,–,200672002055 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,–,1,–,–,–,–,–,–,1,–,–,–,–,1,–,–,–,–,–,–,1,1,–,–,–,–,–,1,–,–,–,–,–,–,–,–,1,–,–,–,–,1,–,1,–,–,–,–,3,–,1,–,–,–,–,1,1,2,–,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,27,3,–,9,–,–,22,30,1,–,6,–,–,16,34,5,–,5,–,–,17,23,15,–,3,–,–,18,28,6,–,3,–,–,21,23,10,–,4,–,–,12,35,1,–,3,–,–,25,23,7,–,5,–,–,11,18,4,–,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,30,1,–,1,–,–,3,35,2,–,2,–,–,1,29,1,–,3,–,–,4,28,1,–,2,–,–,–,1,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,173081003429 -21ST CENTURY SKILLS ACADEMY,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,251251002790 -270 - HAP - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002502875 -270 HOPKINS IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503114 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503396 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503554 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503561 -3-YEAR-OLD PRESCHOOL,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,317718002379 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,–,12,1,3,1,24,8,2,18,–,7,–,25,4,4,23,1,5,2,26,5,1,20,–,6,1,31,3,3,18,–,4,–,20,5,4,21,2,5,1,27,12,2,13,1,4,1,21,2,–,13,–,4,–,27,9,6,15,1,360010206477 -360 HIGH SCHOOL,RHODE ISLAND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,160153000605 -3D ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,481739012205 -3RD H S,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484653012331 -4-J ELEMENTARY SCHOOL,Wyoming,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,560147000454 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,5,3,–,1,–,1,7,9,4,–,–,–,2,7,1,1,–,1,–,–,7,5,6,–,2,–,–,8,2,1,–,–,–,–,7,2,1,–,–,–,–,8,6,3,–,–,–,1,7,2,–,–,–,–,–,13,6,2,–,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550747003029 -4K COMMUNITY SCHOOL,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550189002987 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550852002475 -500 REACH,KANSAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,200795002097 -518 VIRTUAL INSTRUCTION SECONDARY,Minnesota,–,71,–,3,–,–,6,–,89,–,7,–,4,7,1,82,–,–,–,–,5,–,71,–,5,–,1,5,–,76,–,1,–,2,4,1,54,–,3,–,4,3,1,43,–,2,–,–,1,–,26,–,2,–,–,–,1,22,–,274416004676 -5280 HIGH SCHOOL,COLORADO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,080336006756 -54TH STREET ACADEMY,MICHIGAN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262016008622 -6-12TH GRADE BUILDING,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,17,–,–,–,–,–,–,24,–,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272385001044 -6TH AND 7TH GRADE ACADEMY,Oklahoma,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,51,2,57,58,95,–,70,56,5,67,60,92,–,402097000599 -6TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,9,6,61,65,262,3,59,†,†,†,†,†,†,†,†,†,†,†,†,†,293144003207 -6TH GRADE CENTER,PENNSYLVANIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3,12,38,7,360,0,14,†,†,†,†,†,†,†,†,†,†,†,†,†,421989007631 -7 RIVERS COMMUNITY HIGH,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550753002950 -70 ONLINE,Colorado,0,0,0,0,0,0,0,0,0,0,0,–,–,1,–,2,–,1,–,–,1,–,1,–,–,–,–,–,1,2,–,–,–,–,2,–,1,–,–,–,–,3,–,7,–,–,–,–,11,–,2,–,1,–,–,3,–,16,–,080615006496 -7TH AND 8TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,1,6,228,6,–,3,–,1,3,196,3,–,292265001244 -7TH H S - NORTHEAST,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,483808012373 -8TH GRADE ACADEMY,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,12,1,–,1,–,–,2,214,6,–,170804006210 -916 MAHTOMEDI ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270226404430 -917 CASE,MINNESOTA,–,–,–,–,†,†,†,†,†,†,†,–,–,–,–,1,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,–,–,1,–,–,–,1,–,–,–,†,†,†,†,†,†,†,–,–,–,–,2,–,270002605108 -917 DASH,Minnesota,0,0,0,0,0,0,0,0,0,0,0,–,–,–,1,1,–,–,0,0,0,0,0,0,0,0,0,0,0,0,0,0,–,–,–,–,1,–,–,–,–,–,1,–,–,–,–,–,–,–,1,–,–,–,2,–,–,1,–,270002603897 -917 DCALS MAIN,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,270002602155 -917 DCALS MAIN EXTENDED DAY EDOP,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002604253 -917 DCALS NORTH,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002604250 -917 DCALS NORTH EXTENDED DAY (EDOP),Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002604256 -917 DEAF/HARD OF HEARING,Minnesota,–,1,–,–,–,–,–,–,4,–,–,–,–,–,1,2,–,–,–,–,2,1,1,–,–,–,–,–,1,1,–,–,–,–,1,–,2,–,–,–,–,–,–,3,–,–,–,–,–,1,–,–,1,0,0,0,0,0,0,270002602124 -917 IDEA,Minnesota,0,0,0,0,–,–,–,–,1,–,–,–,–,1,–,–,–,1,–,–,–,1,1,–,1,–,–,1,–,–,–,2,–,–,–,–,2,–,–,–,–,–,1,2,–,–,1,–,–,1,1,–,1,–,–,5,2,2,–,270002602121 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694836076205721316.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694836076205721316.csv deleted file mode 100644 index 3e72a4241d..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694836076205721316.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Grade 12 Students - Hispanic - male [Public School] 2018-19,Grade 12 Students - Hispanic - female [Public School] 2018-19,Grade 12 Students - Black or African American - male [Public School] 2018-19,Grade 12 Students - Black or African American - female [Public School] 2018-19,Grade 12 Students - White - male [Public School] 2018-19,Grade 12 Students - White - female [Public School] 2018-19,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2018-19,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2018-19,Grade 12 Students - Two or More Races - male [Public School] 2018-19,Grade 12 Students - Two or More Races - female [Public School] 2018-19,Grade 13 Students - American Indian/Alaska Native - male [Public School] 2018-19,Grade 13 Students - American Indian/Alaska Native - female [Public School] 2018-19,Grade 13 Students - Asian or Asian/Pacific Islander - male [Public School] 2018-19,Grade 13 Students - Asian or Asian/Pacific Islander - female [Public School] 2018-19,Grade 13 Students - Hispanic - male [Public School] 2018-19,Grade 13 Students - Hispanic - female [Public School] 2018-19,Grade 13 Students - Black or African American - male [Public School] 2018-19,Grade 13 Students - Black or African American - female [Public School] 2018-19,Grade 13 Students - White - male [Public School] 2018-19,Grade 13 Students - White - female [Public School] 2018-19,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2018-19,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2018-19,Grade 13 Students - Two or More Races - male [Public School] 2018-19,Grade 13 Students - Two or More Races - female [Public School] 2018-19,Ungraded Students - American Indian/Alaska Native - male [Public School] 2018-19,Ungraded Students - American Indian/Alaska Native - female [Public School] 2018-19,Ungraded Students - Asian or Asian/Pacific Islander - male [Public School] 2018-19,Ungraded Students - Asian or Asian/Pacific Islander - female [Public School] 2018-19,Ungraded Students - Hispanic - male [Public School] 2018-19,Ungraded Students - Hispanic - female [Public School] 2018-19,Ungraded Students - Black or African American - male [Public School] 2018-19,Ungraded Students - Black or African American - female [Public School] 2018-19,Ungraded Students - White - male [Public School] 2018-19,Ungraded Students - White - female [Public School] 2018-19,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2018-19,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2018-19,Ungraded Students - Two or More Races - male [Public School] 2018-19,Ungraded Students - Two or More Races - female [Public School] 2018-19,Adult Education Students - American Indian/Alaska Native - male [Public School] 2018-19,Adult Education Students - American Indian/Alaska Native - female [Public School] 2018-19,Adult Education Students - Asian or Asian/Pacific Islander - male [Public School] 2018-19,Adult Education Students - Asian or Asian/Pacific Islander - female [Public School] 2018-19,Adult Education Students - Hispanic - male [Public School] 2018-19,Adult Education Students - Hispanic - female [Public School] 2018-19,Adult Education Students - Black or African American - male [Public School] 2018-19,Adult Education Students - Black or African American - female [Public School] 2018-19,Adult Education Students - White - male [Public School] 2018-19,Adult Education Students - White - female [Public School] 2018-19,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2018-19,Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2018-19,Adult Education Students - Two or More Races - male [Public School] 2018-19,Adult Education Students - Two or More Races - female [Public School] 2018-19,Full-Time Equivalent (FTE) Teachers [Public School] 2018-19,Pupil/Teacher Ratio [Public School] 2018-19,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,119.80,11.70,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,320006000756 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,7.00,24.86,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,5,2,1,1,11,7,–,–,3,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,270819004622 -112 ALC SEAT-BASED,MINNESOTA,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270819005118 -118-E-SW-5,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144008672 -12TH STREET ELEMENTARY,Michigan,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,31.45,18.00,262895007802 -18+ PROGRAM,NEBRASKA,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1.00,0.00,318009002335 -1R ELEMENTARY,Nebraska,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,12.65,14.47,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,5,2,–,–,–,–,–,–,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,17.00,12.35,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,–,2,22,42,–,–,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,33.04,26.73,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,2,6,5,5,43,85,0,0,3,8,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,55.09,22.42,420009100597 -21ST CENTURY EARLY LEARNING FOUNDATIONS ACADEMY,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,14.00,36.71,484496013299 -21ST CENTURY ESCHOOL,Wisconsin,–,–,2,–,–,1,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1.00,12.00,550951002818 -21ST CENTURY LEARNING ACADEMY/KIOWA COUNTY,Kansas,9,18,–,–,–,4,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,18,42,–,–,1,1,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2.70,71.48,200672002055 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,5,6,–,1,4,2,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3.60,24.44,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,29.00,18.72,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,15.81,9.30,173081003429 -21ST CENTURY SKILLS ACADEMY,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,251251002790 -270 - HAP - IS,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.07,0.00,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002502875 -270 HOPKINS IS,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002503114 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002503396 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.80,0.00,270002503554 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.21,0.00,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002503561 -3-YEAR-OLD PRESCHOOL,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,317718002379 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,30.02,17.06,360010206477 -360 HIGH SCHOOL,RHODE ISLAND,8,23,2,8,–,4,–,–,–,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,21.50,10.88,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,0,2,2,0,1,1,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1.25,35.20,160153000605 -3D ACADEMY,Texas,23,25,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,14.36,11.00,481739012205 -3RD H S,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484653012331 -4-J ELEMENTARY SCHOOL,Wyoming,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4.30,9.30,560147000454 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,42.01,4.67,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,8.59,38.77,550747003029 -4K COMMUNITY SCHOOL,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1.00,46.00,550189002987 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.50,220.00,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4.50,36.00,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,49.50,16.38,550852002475 -500 REACH,KANSAS,14,17,8,9,5,5,–,1,–,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,2,1,3,13,33,13,25,5,9,–,–,1,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,200795002097 -518 VIRTUAL INSTRUCTION SECONDARY,Minnesota,2,1,1,–,–,1,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.48,1316.67,274416004676 -5280 HIGH SCHOOL,COLORADO,1,–,–,–,–,–,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,8.51,11.87,080336006756 -54TH STREET ACADEMY,MICHIGAN,13,5,4,9,6,4,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5.00,18.60,262016008622 -6-12TH GRADE BUILDING,Minnesota,–,–,1,–,12,11,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,11.88,11.03,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.00,†,272385001044 -6TH AND 7TH GRADE ACADEMY,Oklahoma,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,41.78,16.37,402097000599 -6TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,28.28,16.44,293144003207 -6TH GRADE CENTER,PENNSYLVANIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,26.69,16.26,421989007631 -7 RIVERS COMMUNITY HIGH,Wisconsin,–,–,–,–,2,2,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4.34,7.14,550753002950 -70 ONLINE,Colorado,18,8,–,–,15,11,–,–,–,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,8.58,22.49,080615006496 -7TH AND 8TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,33.72,13.26,292265001244 -7TH H S - NORTHEAST,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,483808012373 -8TH GRADE ACADEMY,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,13.60,17.87,170804006210 -916 MAHTOMEDI ACADEMY,Minnesota,9,10,8,6,11,11,–,–,2,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5.40,15.37,270226404430 -917 CASE,MINNESOTA,–,–,1,–,2,–,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2.44,3.69,270002605108 -917 DASH,Minnesota,1,1,2,–,3,3,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,6.33,3.95,270002603897 -917 DCALS MAIN,Minnesota,15,14,15,8,69,38,–,–,6,4,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,18.05,12.85,270002602155 -917 DCALS MAIN EXTENDED DAY EDOP,Minnesota,–,–,–,–,–,1,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0.08,12.50,270002604253 -917 DCALS NORTH,Minnesota,9,10,5,1,8,6,–,–,3,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3.46,20.23,270002604250 -917 DCALS NORTH EXTENDED DAY (EDOP),Minnesota,3,1,–,2,1,2,–,–,–,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,†,270002604256 -917 DEAF/HARD OF HEARING,Minnesota,–,–,–,1,4,–,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,24.17,1.57,270002602124 -917 IDEA,Minnesota,–,–,2,1,3,–,–,–,1,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,10.44,4.79,270002602121 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694853401085610521.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694853401085610521.csv deleted file mode 100644 index a0946de0d7..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694853401085610521.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Grade 5 Students - Black or African American - female [Public School] 2012-13,Grade 5 Students - White - male [Public School] 2012-13,Grade 5 Students - White - female [Public School] 2012-13,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2012-13,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2012-13,Grade 5 Students - Two or More Races - male [Public School] 2012-13,Grade 5 Students - Two or More Races - female [Public School] 2012-13,Grade 6 Students - American Indian/Alaska Native - male [Public School] 2012-13,Grade 6 Students - American Indian/Alaska Native - female [Public School] 2012-13,Grade 6 Students - Asian or Asian/Pacific Islander - male [Public School] 2012-13,Grade 6 Students - Asian or Asian/Pacific Islander - female [Public School] 2012-13,Grade 6 Students - Hispanic - male [Public School] 2012-13,Grade 6 Students - Hispanic - female [Public School] 2012-13,Grade 6 Students - Black or African American - male [Public School] 2012-13,Grade 6 Students - Black or African American - female [Public School] 2012-13,Grade 6 Students - White - male [Public School] 2012-13,Grade 6 Students - White - female [Public School] 2012-13,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2012-13,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2012-13,Grade 6 Students- Two or More Races - male [Public School] 2012-13,Grade 6 Students - Two or More Races - female [Public School] 2012-13,Grade 7 Students - American Indian/Alaska Native - male [Public School] 2012-13,Grade 7 Students - American Indian/Alaska Native - female [Public School] 2012-13,Grade 7 Students - Asian or Asian/Pacific Islander - male [Public School] 2012-13,Grade 7 Students - Asian or Asian/Pacific Islander - female [Public School] 2012-13,Grade 7 Students - Hispanic - male [Public School] 2012-13,Grade 7 Students - Hispanic - female [Public School] 2012-13,Grade 7 Students - Black or African American - male [Public School] 2012-13,Grade 7 Students - Black or African American - female [Public School] 2012-13,Grade 7 Students - White - male [Public School] 2012-13,Grade 7 Students - White - female [Public School] 2012-13,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2012-13,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2012-13,Grade 7 Students - Two or More Races - male [Public School] 2012-13,Grade 7 Students - Two or More Races - female [Public School] 2012-13,Grade 8 Students - American Indian/Alaska Native - male [Public School] 2012-13,Grade 8 Students - American Indian/Alaska Native - female [Public School] 2012-13,Grade 8 Students - Asian or Asian/Pacific Islander - male [Public School] 2012-13,Grade 8 Students - Asian or Asian/Pacific Islander - female [Public School] 2012-13,Grade 8 Students- Hispanic - male [Public School] 2012-13,Grade 8 Students - Hispanic - female [Public School] 2012-13,Grade 8 Students - Black or African American - male [Public School] 2012-13,Grade 8 Students - Black or African American - female [Public School] 2012-13,Grade 8 Students - White - male [Public School] 2012-13,Grade 8 Students - White - female [Public School] 2012-13,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2012-13,Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2012-13,Grade 8 Students - Two or More Races - male [Public School] 2012-13,Grade 8 Students - Two or More Races - female [Public School] 2012-13,Grade 9 Students - American Indian/Alaska Native - male [Public School] 2012-13,Grade 9 Students - American Indian/Alaska Native - female [Public School] 2012-13,Grade 9 Students - Asian or Asian/Pacific Islander - male [Public School] 2012-13,Grade 9 Students - Asian or Asian/Pacific Islander - female [Public School] 2012-13,Grade 9 Students - Hispanic - male [Public School] 2012-13,Grade 9 Students - Hispanic - female [Public School] 2012-13,Grade 9 Students - Black or African American - male [Public School] 2012-13,Grade 9 Students - Black or African American - female [Public School] 2012-13,Grade 9 Students - White - male [Public School] 2012-13,Grade 9 Students - White - female [Public School] 2012-13,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,3,115,109,0,0,3,10,0,0,5,1,66,67,1,4,94,101,0,0,3,6,0,0,4,9,61,50,5,6,104,100,0,0,2,1,0,0,6,4,52,51,5,6,114,78,0,0,1,3,†,†,†,†,†,†,†,†,†,†,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,14,0,0,0,1,3,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,0,0,1,1,5,6,25,22,0,0,0,0,2,2,0,0,0,0,4,4,23,19,2,0,0,0,1,1,0,0,0,0,4,2,21,19,0,0,1,0,0,1,†,†,†,†,†,†,†,†,†,†,320006000756 -100 BLACK MEN OF THE BAY AREA COMMUNITY,California,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,062805013190 -100 LEGACY ACADEMY CHARTER SCHOOL,New Jersey,†,†,†,†,†,†,†,0,0,0,0,2,0,44,41,0,0,0,0,0,2,0,0,0,0,1,2,43,39,0,0,0,1,0,0,0,0,0,0,2,0,48,28,0,0,0,0,1,1,†,†,†,†,†,†,†,†,†,†,340074303135 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,0,0,0,0,3,1,0,1,28,25,0,0,1,5,0,1,1,0,2,2,2,1,21,22,0,0,2,6,1,0,0,1,2,3,0,0,19,23,0,0,2,2,†,†,†,†,†,†,†,†,†,†,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,270819004622 -12TH STREET ELEMENTARY,Michigan,7,33,38,0,0,2,3,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262895007802 -180 PROGRAM,California,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,062772013070 -19-21 TRANSITION ACADEMY,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,530423002984 -1R ELEMENTARY,Nebraska,0,8,12,0,0,0,0,0,0,0,0,0,1,0,0,7,12,0,0,0,2,0,0,0,0,1,1,0,0,8,9,0,0,1,1,0,1,0,0,2,1,0,0,6,5,0,0,0,0,†,†,†,†,†,†,†,†,†,†,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,64,49,0,0,0,0,0,0,0,0,0,0,0,0,42,61,0,0,0,1,0,0,0,0,0,0,0,0,43,42,0,0,0,0,720003000010 -21ST CENTURY ACADEMY,Kentucky,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,3,1,210115002241 -21ST CENTURY CHARTER SCH OF GARY,Indiana,13,0,0,0,0,0,0,0,0,0,0,0,1,11,20,0,0,0,0,0,0,0,0,0,0,0,0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,10,21,0,0,0,0,0,0,0,0,1,0,0,0,28,22,0,0,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,0,0,1,0,1,1,3,3,8,16,0,0,0,1,0,0,0,2,1,1,8,7,31,29,0,0,1,0,0,0,0,1,1,4,2,8,35,34,0,0,1,2,0,1,0,0,3,4,6,3,49,70,420009100597 -21ST CENTURY ESCHOOL,Wisconsin,0,2,2,0,0,0,0,0,0,0,1,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,1,1,0,0,0,0,0,0,1,0,3,3,550951002818 -21ST CENTURY LEARNING ACADEMY/KIOWA COUNTY,Kansas,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,1,0,0,0,0,0,1,2,0,0,10,6,0,0,0,0,0,0,0,0,0,1,0,0,20,29,200672002055 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,8,8,5,0,0,1,0,0,0,1,0,4,4,10,13,7,7,0,0,2,1,0,0,0,0,3,3,6,11,3,4,0,0,0,2,0,0,0,0,4,4,5,11,7,3,0,0,1,4,†,†,†,†,†,†,†,†,†,†,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,173081003429 -21ST CENTURY SCHOOL,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,390137905648 -270 - HAP - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALT. PRG - OFF CAMPUS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002504131 -270 HOPKINS ALTERNATIVE,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002502875 -270 HOPKINS HS IS ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504088 -270 HOPKINS IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503114 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503396 -272 CENTRAL MIDDLE SCH. ALT,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002504077 -276 MINNETONKA COMPASS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502001 -276 MINNETONKA COMPASS EXT YR,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503649 -276 MINNETONKA HS IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503113 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503554 -277-GRANDVIEW MIDDLE - ALC,Minnesota,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504221 -279 OSSEO AREA LEARNING CENTER EY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503344 -279 OSSEO IS ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503388 -279 OSSEO JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503389 -279 OSSEO SR HI ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503390 -281 ARMSTRONG LEARNING LAB ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002502937 -281 COOPER HS ABC ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502940 -281 HIGHVIEW ALTERNATIVE PROGRAM,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002501986 -281 HIGHVIEW HS - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503553 -281 ROBBINSDALE (TASC) MID ALC,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002504081 -281 ROBBINSDALE TASC ALC,Minnesota,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502919 -281 WINNETKA LEARNING CENTER IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503118 -281 WINNETKA LEARNING CTR. ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502588 -281-ROBBINSDALE ACADEMIC SUMMER ASP,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502939 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503561 -286-BCALC-BROOKLYN CENTER ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,1,0,0,1,0,1,270002503595 -286-BCALC-BROOKLYN CENTER HS-IS DAY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002503596 -287 ALC COMBINED IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002504193 -287 ALC PART TIME,Minnesota,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503026 -287 ON-LINE LEARNING (SPED),Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504192 -3B JUVENILE DETENTION CENTER,Idaho,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,160153000605 -3D ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,481739012205 -3RD H S,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484653012331 -4-J ELEMENTARY SCHOOL,Wyoming,0,3,1,0,0,0,0,0,0,0,0,0,1,0,0,1,7,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,560147000454 -4-WINDS ACADEMY,Arizona,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,040038002317 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,3,1,0,0,0,0,0,0,0,0,0,4,6,4,2,1,0,0,0,0,0,0,0,0,0,2,7,2,3,1,0,0,0,0,0,0,0,0,0,6,7,2,2,0,1,0,0,0,0,†,†,†,†,†,†,†,†,†,†,360007705767 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550852002475 -51ST AVENUE ACADEMY (THE PATH TO ACADEMIC EXCELLENCE),New York,1,3,0,1,5,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,360009805726 -6-12TH GRADE BUILDING,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,11,16,0,0,0,0,0,0,0,0,0,1,0,0,10,9,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272385001044 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694889856395863889.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694889856395863889.csv deleted file mode 100644 index 8b4431ce3a..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_638694889856395863889.csv +++ /dev/null @@ -1,75 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -School Name,State Name [Public School] Latest available year,Grade 3 Students - Two or More Races - male [Public School] 2017-18,Grade 3 Students - Two or More Races - female [Public School] 2017-18,Grade 4 Students - American Indian/Alaska Native - male [Public School] 2017-18,Grade 4 Students - American Indian/Alaska Native - female [Public School] 2017-18,Grade 4 Students - Asian or Asian/Pacific Islander - male [Public School] 2017-18,Grade 4 Students - Asian or Asian/Pacific Islander - female [Public School] 2017-18,Grade 4 Students - Hispanic - male [Public School] 2017-18,Grade 4 Students - Hispanic - female [Public School] 2017-18,Grade 4 Students - Black or African American - male [Public School] 2017-18,Grade 4 Students - Black or African American - female [Public School] 2017-18,Grade 4 Students - White - male [Public School] 2017-18,Grade 4 Students - White - female [Public School] 2017-18,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2017-18,Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2017-18,Grade 4 Students - Two or More Races - male [Public School] 2017-18,Grade 4 Students - Two or More Races - female [Public School] 2017-18,Grade 5 Students - American Indian/Alaska Native - male [Public School] 2017-18,Grade 5 Students - American Indian/Alaska Native - female [Public School] 2017-18,Grade 5 Students - Asian or Asian/Pacific Islander - male [Public School] 2017-18,Grade 5 Students - Asian or Asian/Pacific Islander - female [Public School] 2017-18,Grade 5 Students - Hispanic - male [Public School] 2017-18,Grade 5 Students - Hispanic - female [Public School] 2017-18,Grade 5 Students - Black or African American - male [Public School] 2017-18,Grade 5 Students - Black or African American - female [Public School] 2017-18,Grade 5 Students - White - male [Public School] 2017-18,Grade 5 Students - White - female [Public School] 2017-18,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2017-18,Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2017-18,Grade 5 Students - Two or More Races - male [Public School] 2017-18,Grade 5 Students - Two or More Races - female [Public School] 2017-18,Grade 6 Students - American Indian/Alaska Native - male [Public School] 2017-18,Grade 6 Students - American Indian/Alaska Native - female [Public School] 2017-18,Grade 6 Students - Asian or Asian/Pacific Islander - male [Public School] 2017-18,Grade 6 Students - Asian or Asian/Pacific Islander - female [Public School] 2017-18,Grade 6 Students - Hispanic - male [Public School] 2017-18,Grade 6 Students - Hispanic - female [Public School] 2017-18,Grade 6 Students - Black or African American - male [Public School] 2017-18,Grade 6 Students - Black or African American - female [Public School] 2017-18,Grade 6 Students - White - male [Public School] 2017-18,Grade 6 Students - White - female [Public School] 2017-18,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2017-18,Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2017-18,Grade 6 Students- Two or More Races - male [Public School] 2017-18,Grade 6 Students - Two or More Races - female [Public School] 2017-18,Grade 7 Students - American Indian/Alaska Native - male [Public School] 2017-18,Grade 7 Students - American Indian/Alaska Native - female [Public School] 2017-18,Grade 7 Students - Asian or Asian/Pacific Islander - male [Public School] 2017-18,Grade 7 Students - Asian or Asian/Pacific Islander - female [Public School] 2017-18,Grade 7 Students - Hispanic - male [Public School] 2017-18,Grade 7 Students - Hispanic - female [Public School] 2017-18,Grade 7 Students - Black or African American - male [Public School] 2017-18,Grade 7 Students - Black or African American - female [Public School] 2017-18,Grade 7 Students - White - male [Public School] 2017-18,Grade 7 Students - White - female [Public School] 2017-18,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School] 2017-18,Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School] 2017-18,Grade 7 Students - Two or More Races - male [Public School] 2017-18,Grade 7 Students - Two or More Races - female [Public School] 2017-18,Grade 8 Students - American Indian/Alaska Native - male [Public School] 2017-18,School ID - NCES Assigned [Public School] Latest available year -1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,5,6,81,100,4,6,105,79,–,–,3,6,–,–,–,4,77,75,3,3,53,61,–,–,4,10,–,–,2,6,91,82,9,4,69,54,–,–,5,3,–,250732002639 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,1,2,1,–,–,–,6,9,25,24,1,1,–,1,4,1,–,–,–,1,3,5,19,28,–,–,–,–,2,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,320006000670 -100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,4,6,21,22,1,–,–,–,1,1,–,–,–,1,6,4,10,23,–,1,–,–,1,–,–,320006000756 -10TH STREET SCHOOL,Washington,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5,1,2,1,2,4,–,1,11,25,–,–,4,4,–,–,1,1,4,4,1,–,16,24,–,–,6,2,–,530486002475 -112 ALC INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270819004415 -112 ALC MIDDLE SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,1,1,14,16,2,5,33,18,–,–,3,3,2,1,–,–,16,15,6,6,33,34,–,–,6,5,1,270819004622 -112 ALC SEAT-BASED,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270819005118 -12TH STREET ELEMENTARY,Michigan,3,4,0,0,6,5,4,7,1,3,33,34,0,0,3,5,0,0,3,5,1,5,5,1,37,31,0,1,6,6,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262895007802 -18+ PROGRAM,NEBRASKA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,318009002335 -1R ELEMENTARY,Nebraska,0,0,0,0,0,0,1,1,0,1,12,7,0,0,0,0,0,0,0,0,0,0,0,1,7,11,0,0,0,0,0,0,0,0,1,2,0,0,11,7,0,0,0,0,0,0,0,0,1,0,0,0,14,10,0,0,0,0,0,317458000209 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,27,43,–,–,1,–,–,–,–,–,–,–,–,–,36,43,–,–,–,–,–,–,–,–,–,720003000010 -21ST CENTURY CHARTER SCH OF GARY,Indiana,–,2,1,–,–,–,–,–,33,36,–,–,–,–,–,2,–,–,–,–,–,1,28,32,–,–,–,–,–,1,–,–,–,–,–,–,32,24,–,1,–,–,2,–,–,–,–,–,–,2,41,30,1,–,–,–,1,–,–,180004602162 -21ST CENTURY CYBER CS,Pennsylvania,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,1,1,0,2,0,6,18,29,0,0,0,2,0,0,2,0,7,4,4,2,30,37,0,0,0,2,0,420009100597 -21ST CENTURY EARLY LEARNING FOUNDATIONS ACADEMY,TEXAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484496013299 -21ST CENTURY ESCHOOL,Wisconsin,0,0,–,–,–,–,–,–,–,–,1,–,–,–,–,–,–,–,–,–,–,1,–,–,–,2,–,–,–,–,0,0,0,0,0,0,0,0,0,0,0,0,0,0,–,–,–,–,–,–,–,–,1,2,–,–,–,1,–,550951002818 -21ST CENTURY LEARNING ACADEMY/KIOWA COUNTY,Kansas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,2,–,–,–,2,–,–,–,–,–,–,–,–,–,1,–,–,–,2,4,–,–,–,–,–,200672002055 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,–,–,0,0,0,0,0,0,0,0,0,0,0,0,0,0,–,–,–,–,–,–,–,–,–,1,–,–,–,–,–,–,–,–,–,–,–,–,–,1,–,–,–,–,–,–,–,–,2,2,1,–,1,1,–,–,–,–,–,060429013779 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,1,2,–,–,–,–,11,11,5,19,3,7,–,–,1,3,–,–,–,–,4,10,14,18,4,2,–,–,3,3,–,–,–,–,9,14,12,13,4,3,–,–,4,1,–,–,–,–,9,5,6,10,4,1,–,–,1,3,–,550004502575 -21ST CENTURY PRIMARY CENTER,Illinois,–,1,–,–,–,–,–,–,–,1,–,–,–,–,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,173081003429 -21ST CENTURY SKILLS ACADEMY,Massachusetts,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,251251002790 -270 - HAP - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504573 -270 HOPKINS ALTERNATIVE,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002502875 -270 HOPKINS IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503114 -270 HOPKINS NORTH JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503397 -270 HOPKINS WEST JR HIGH ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002503396 -272 CENTRAL MIDDLE SCH. ALT,Minnesota,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002504077 -276 MINNETONKA COMPASS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270002502001 -276 MINNETONKA COMPASS EXT YR,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503649 -276 MINNETONKA HS IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503113 -277 WESTONKA AREA LEARNING ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503554 -277-GRANDVIEW MIDDLE - ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,†,270002504221 -283 ST LOUIS PK INDEPENDENT STUDY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503562 -283-IND STDY 15 AND UNDER - I.S.,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504216 -283-ST. LOUIS PARK ALC,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002503561 -30TH AVENUE SCHOOL (THE) (G & T CITYWIDE),NEW YORK,1,3,–,–,6,14,2,2,–,4,9,13,1,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,–,1,10,22,2,2,1,–,7,11,–,–,3,1,–,–,16,14,6,3,4,3,8,7,–,1,6,–,–,360010206477 -360 HIGH SCHOOL,RHODE ISLAND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440090000492 -3B JUVENILE DETENTION CENTER,Idaho,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,160153000605 -3D ACADEMY,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,481739012205 -3RD H S,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,484653012331 -4-J ELEMENTARY SCHOOL,Wyoming,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,560147000454 -4092 - WATERSHED HIGH SCHOOL ALC,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504811 -4122 - EAGLE RIDGE ACADEMY - IS,MINNESOTA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504823 -4126 - PRAIRIE SEEDS ACADEMY - IS,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270002504476 -47 AMERICAN SIGN LANGUAGE AND ENGLISH LOWER SCHOOL (THE),New York,–,–,–,–,–,–,2,5,1,1,1,1,–,–,–,–,–,–,–,–,–,4,1,6,1,3,–,–,–,–,–,–,–,1,4,4,–,3,–,–,–,–,–,–,–,–,–,–,4,7,3,1,1,1,–,–,–,–,–,360007705767 -4K CENTER FOR LITERACY,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550747003029 -4K COMMUNITY SCHOOL,WISCONSIN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550189002987 -4K COMMUNITY-BASED,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,551266002889 -4K MCFARLAND,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550891002902 -4K PK OFF SITE,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550852002475 -500 REACH,KANSAS,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,200795002097 -518 VIRTUAL INSTRUCTION SECONDARY,Minnesota,–,1,–,–,–,–,–,–,–,–,12,10,–,–,1,–,–,–,–,–,1,2,1,–,19,15,–,–,2,1,–,–,–,–,–,–,–,–,20,7,–,–,1,–,–,–,–,–,1,2,–,–,11,11,–,–,–,1,–,274416004676 -51ST AVENUE ACADEMY (THE PATH TO ACADEMIC EXCELLENCE),New York,0,0,–,–,77,53,39,47,–,–,3,–,–,–,2,–,1,–,76,59,33,46,1,1,2,–,–,–,–,–,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360009805726 -54TH STREET ACADEMY,MICHIGAN,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,262016008622 -6-12TH GRADE BUILDING,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,–,–,–,–,9,15,–,–,–,1,–,270015000652 -622 ALTERNATIVE MIDDLE/HIGH SCHOOL,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272385001044 -6TH AND 7TH GRADE ACADEMY,Oklahoma,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,39,23,2,2,31,34,27,29,37,51,–,–,41,30,43,402097000599 -6TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,2,4,5,5,18,18,25,36,164,117,5,7,26,24,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,293144003207 -6TH GRADE CENTER,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1,2,1,1,93,63,37,34,72,50,0,0,6,10,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,482172005738 -6TH GRADE CENTER,PENNSYLVANIA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,8,8,16,21,3,6,186,159,0,1,6,11,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,421989007631 -7 RIVERS COMMUNITY HIGH,Wisconsin,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,550753002950 -70 ONLINE,Colorado,–,–,–,–,–,–,–,1,–,–,–,1,–,–,–,–,–,–,–,–,1,–,–,–,–,–,–,–,–,–,–,–,–,–,1,3,1,–,1,–,–,–,–,–,–,–,–,–,3,–,–,–,–,3,–,–,1,1,–,080615006496 -72 E W 7,FLORIDA,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,120144008609 -7TH AND 8TH GRADE CENTER,Missouri,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,1,2,1,117,83,–,2,–,–,–,3,–,292265001244 -7TH H S - NORTHEAST,Texas,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,483808012373 -8TH GRADE ACADEMY,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,1,–,11,4,–,–,–,–,–,–,–,170804006210 -916 MAHTOMEDI ACADEMY,Minnesota,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,270226404430 -917 CASE,MINNESOTA,†,†,–,–,–,–,–,–,–,–,–,–,–,–,1,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,–,–,–,–,–,–,–,–,1,–,–,–,–,–,†,270002605108 -917 DASH,Minnesota,0,0,–,–,–,–,–,–,–,–,1,–,–,–,–,–,0,0,0,0,0,0,0,0,0,0,0,0,0,0,–,–,–,–,–,–,–,–,–,1,–,–,–,–,–,–,1,–,–,–,–,–,1,–,–,–,–,–,–,270002603897 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv new file mode 100644 index 0000000000..f356dfec03 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv @@ -0,0 +1,30 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +School Name,State Name [Public School] Latest available year,State Name [Public School] 2024-25,State Abbr [Public School] Latest available year,School Name [Public School] 2024-25,School ID (12-digit) - NCES Assigned [Public School] Latest available year,Agency Name [Public School] 2024-25,Agency ID - NCES Assigned [Public School] Latest available year,County Number [Public School] 2024-25,ANSI/FIPS State Code [Public School] Latest available year,Location Address 1 [Public School] 2024-25,Location City [Public School] 2024-25,Location ZIP [Public School] 2024-25,Location ZIP4 [Public School] 2024-25,Phone Number [Public School] 2024-25,School Type [Public School] 2024-25,Charter School [Public School] 2024-25,Locale [Public School] 2024-25,Latitude [Public School] 2024-25,Longitude [Public School] 2024-25,State School ID [Public School] 2024-25,National School Lunch Program [Public School] 2024-25,School Level (SY 2017-18 onward) [Public School] 2024-25,Lowest Grade Offered [Public School] 2024-25,Highest Grade Offered [Public School] 2024-25,Total Students All Grades (Excludes AE) [Public School] 2024-25,Total Students All Grades (Includes AE) [Public School] 2024-25,Free Lunch Eligible [Public School] 2024-25,Direct Certification [Public School] 2024-25,Reduced-price Lunch Eligible Students [Public School] 2024-25,Free and Reduced Lunch Students [Public School] 2024-25,Grades 1-8 Students [Public School] 2024-25,Grades 9-12 Students [Public School] 2024-25,Prekindergarten Students [Public School] 2024-25,Kindergarten Students [Public School] 2024-25,Grade 1 Students [Public School] 2024-25,Grade 2 Students [Public School] 2024-25,Grade 3 Students [Public School] 2024-25,Grade 4 Students [Public School] 2024-25,Grade 5 Students [Public School] 2024-25,Grade 6 Students [Public School] 2024-25,Grade 7 Students [Public School] 2024-25,Grade 8 Students [Public School] 2024-25,Grade 9 Students [Public School] 2024-25,Grade 10 Students [Public School] 2024-25,Grade 11 Students [Public School] 2024-25,Grade 12 Students [Public School] 2024-25,Grade 13 Students [Public School] 2024-25,Ungraded Students [Public School] 2024-25,Adult Education Students [Public School] 2024-25,Male Students [Public School] 2024-25,Female Students [Public School] 2024-25,American Indian/Alaska Native Students [Public School] 2024-25,Asian or Asian/Pacific Islander Students [Public School] 2024-25,Hispanic Students [Public School] 2024-25,Black or African American Students [Public School] 2024-25,White Students [Public School] 2024-25,Nat. Hawaiian or Other Pacific Isl. Students [Public School] 2024-25,Two or More Races Students [Public School] 2024-25,Total Race/Ethnicity [Public School] 2024-25,American Indian/Alaska Native - male [Public School] 2024-25 +'O ME-NOK LEARNING CENTER,California,CALIFORNIA,CA ,'O Me-nok Learning Center,061077001195,Del Norte County Unified,0610770,06015,06,300 Minot Creek Rd.,Klamath,95548,0065,7074640340,1-Regular school,2-No,43-Rural: Remote,41.556100,-124.052800,CA-0861820-6005417,Yes under Community Eligibility Option (CEO),Elementary,Kindergarten,6th Grade,86,86,68,47,7,75,68,†,†,18,10,8,19,17,14,0,†,†,†,†,†,†,†,†,†,45,41,49,0,10,0,19,0,8,86,25 +1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,MASSACHUSETTS,MA ,1 LT Charles W. Whitcomb School,250732002639,Marlborough,2507320,25017,25,25 Union Street,Marlborough,01752, ,5084603502,1-Regular school,2-No,21-Suburb: Large,42.357383,-71.548459,MA-0170-01700045,Yes participating without using any Provision or the CEO,Middle,6th Grade,8th Grade,965,965,–,600,–,–,965,†,†,†,†,†,†,†,†,369,292,304,†,†,†,†,†,†,†,474,489,1,10,641,60,229,0,22,963,0 +10TH STREET SCHOOL,Washington,WASHINGTON,WA ,10th Street School,530486002475,Marysville School District,5304860,53061,53,7204 27th Ave NE,Marysville,98271, ,3609650400,1-Regular school,2-No,22-Suburb: Mid-size,48.061145,-122.199808,WA-31025-1656,Yes under Community Eligibility Option (CEO),Middle,6th Grade,8th Grade,217,217,65,60,10,75,217,†,†,†,†,†,†,†,†,105,57,55,†,†,†,†,†,†,†,113,104,10,12,46,7,107,0,35,217,4 +112 ALC INDEPENDENT STUDY,Minnesota,MINNESOTA,MN ,112 ALC Independent Study,270819004415,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27019,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,21-Suburb: Large,44.841613,-93.596920,MN-010112-010112067,No,High,9th Grade,12th Grade,28,28,5,5,1,6,†,28,†,†,†,†,†,†,†,†,†,†,0,0,4,24,†,†,†,22,6,0,1,5,2,17,0,3,28,0 +112 ALC MIDDLE SCHOOL,Minnesota,MINNESOTA,MN ,112 ALC MIDDLE SCHOOL,270819004622,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27019,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,21-Suburb: Large,44.841613,-93.596920,MN-010112-010112066,No,Middle,6th Grade,8th Grade,411,411,109,102,31,140,411,†,†,†,†,†,†,†,†,139,142,130,†,†,†,†,†,†,†,195,216,0,7,77,47,253,1,26,411,0 +112 ALC SEAT-BASED,MINNESOTA,MINNESOTA,MN ,112 ALC Seat-Based,270819005118,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27019,27,11 PEAVEY RD,CHASKA,55318,2321,9525566192,4-Alternative Education School,2-No,21-Suburb: Large,44.841613,-93.596920,MN-010112-010112071,No,High,6th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +126-E-W-4,FLORIDA,FLORIDA,FL ,126-E-W-4,120144008672,ORANGE,1201440,12095,12,445 W AMELIA ST,ORLANDO,32801, ,4073173200,1-Regular school,2-No,41-Rural: Fringe,28.368280,-81.633579,FL-48-1025,†,Not Reported,–,–,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† +12TH STREET ELEMENTARY,Michigan,MICHIGAN,MI ,12th Street Elementary,262895007802,Portage Public Schools,2628950,26077,26,6501 S 12TH ST,PORTAGE,49024,1705,2693236900,1-Regular school,2-No,13-City: Small,42.220200,-85.646452,MI-39140-09848,Yes participating without using any Provision or the CEO,Elementary,Prekindergarten,5th Grade,589,589,115,–,7,122,476,†,0,113,96,88,87,103,102,†,†,†,†,†,†,†,†,†,†,279,310,0,56,47,81,345,0,60,589,0 +18+ PROGRAM,NEBRASKA,NEBRASKA,NE ,18+ PROGRAM,318009002335,EDUCATIONAL SERVICE UNIT 09,3180090,31001,31,5807 OSBORNE DRIVE WEST,HASTINGS,68901,9158,4024635611,2-Special education school,†,32-Town: Distant,40.642044,-98.383244,NE-000009000-000009024,No,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +180 DEGREES / YOUTH SHELTER,MINNESOTA,MINNESOTA,MN ,180 Degrees / Youth Shelter,273351012806,ST. CLOUD PUBLIC SCHOOL DISTRICT,2733510,27145,27,1101 WASHINGTON MEMORIAL DR,SAINT CLOUD,56301,8888,3203708020,4-Alternative Education School,2-No,13-City: Small,45.547418,-94.172744,MN-010742-010742044,No,High,6th Grade,12th Grade,0,0,†,†,†,†,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +196ONLINE ELEMENTARY,MINNESOTA,MINNESOTA,MN ,196Online Elementary,273239005353,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196766,No,Elementary,Kindergarten,5th Grade,0,0,†,†,†,†,0,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +196ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online High School,273239005352,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6519055857,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196067,No,High,9th Grade,12th Grade,71,71,28,28,3,31,†,71,†,†,†,†,†,†,†,†,†,†,0,0,31,40,†,†,†,37,34,1,4,7,19,30,0,10,71,1 +196ONLINE MIDDLE SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online Middle School,273239005351,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196066,No,Middle,6th Grade,8th Grade,0,0,†,†,†,†,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +199 ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,199 Online High School,271503005356,INVER GROVE HEIGHTS SCHOOLS,2715030,27037,27,2920 80TH ST E,INVER GROVE HEIGHTS,55076,8888,6513067009,1-Regular school,2-No,21-Suburb: Large,44.832598,-93.047207,MN-010199-010199090,No,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0 +1R ELEMENTARY,Nebraska,NEBRASKA,NE ,1R ELEMENTARY,317458000209,NORTHWEST PUBLIC SCHOOLS,3174580,31079,31,3301 W ONE-R ROAD,GRAND ISLAND,68803,9331,3083856352,1-Regular school,†,41-Rural: Fringe,41.002783,-98.379562,NE-400082000-400082003,Yes participating without using any Provision or the CEO,Elementary,Prekindergarten,8th Grade,194,194,31,–,14,45,173,†,0,21,20,21,22,19,21,22,24,24,†,†,†,†,†,†,†,96,98,0,0,19,1,174,0,0,194,0 +20 DE SEPTIEMBRE DE 1988,Puerto Rico,PUERTO RICO,PR ,20 DE SEPTIEMBRE DE 1988,720003000010,PUERTO RICO DEPARTMENT OF EDUCATION,7200030,72147,72,CARR ESTATAL 200 ESQ CARR ESTATAL 993,VIEQUES,00765, ,7877413091,1-Regular school,2-No,32-Town: Distant,18.143769,-65.441611,PR-01-35295,Yes participating without using any Provision or the CEO,Middle,6th Grade,8th Grade,196,196,149,–,28,177,196,†,†,†,†,†,†,†,†,62,59,75,†,†,†,†,†,†,†,92,104,0,0,194,0,2,0,0,196,0 +21ST CENTURY CHARTER SCH OF GARY,Indiana,INDIANA,IN ,21st Century Charter Sch of Gary,180004602162,21st Century Charter Sch of Gary,1800046,18089,18,556 Washington St,Gary,46402, ,2198869339,1-Regular school,1-Yes,21-Suburb: Large,41.600759,-87.338843,IN-9545-4164,Yes under Community Eligibility Option (CEO),Other,Kindergarten,12th Grade,1180,1180,858,761,55,913,693,380,†,107,87,101,82,81,98,67,93,84,118,87,88,87,†,†,†,562,618,1,0,64,1088,1,0,26,1180,1 +21ST CENTURY CYBER CS,Pennsylvania,PENNSYLVANIA,PA ,21st Century Cyber CS,420009100597,21st Century Cyber CS,4200091,42029,42,1245 Wrights Lane,West Chester,19380, ,4848755400,1-Regular school,1-Yes,21-Suburb: Large,39.988310,-75.574369,PA-124150002-7691,No,High,6th Grade,12th Grade,996,996,‡,–,‡,‡,150,846,†,†,†,†,†,†,†,20,53,77,202,193,245,206,†,†,†,454,542,1,17,78,156,665,3,76,996,0 +21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,CALIFORNIA,CA ,21st Century Learning Institute,060429013779,Beaumont Unified,0604290,06065,06,939 East 10th St.,Beaumont,92223,1927,9517698424,4-Alternative Education School,2-No,21-Suburb: Large,33.935293,-116.969354,CA-3366993-0129882,–,Other,Kindergarten,12th Grade,314,314,175,128,51,226,92,221,†,1,7,5,6,13,6,14,18,23,38,51,73,59,†,†,†,148,163,2,9,193,18,68,0,21,311,2 +21ST CENTURY PREPARATORY SCHOOL,Wisconsin,WISCONSIN,WI ,21st Century Preparatory School,550004502575,Racine Charter One Inc,5500045,55101,55,1220 Mound Ave,Racine,53404, ,2625980026,1-Regular school,1-Yes,13-City: Small,42.728321,-87.795889,WI-8010-8110,Yes under Community Eligibility Option (CEO),Elementary,Prekindergarten,8th Grade,438,438,277,–,0,277,359,†,36,43,42,53,37,40,47,39,58,43,†,†,†,†,†,†,†,232,206,0,0,88,275,20,0,55,438,0 +21ST CENTURY PRIMARY CENTER,Illinois,ILLINOIS,IL ,21st Century Primary Center,173081003429,Park Forest SD 163,1730810,17031,17,240 S Orchard Dr,Park Forest,60466,2045,7086689451,1-Regular school,2-No,21-Suburb: Large,41.477716,-87.682344,IL-07-016-1630-02-070161630022008,Yes under Community Eligibility Option (CEO),Elementary,Kindergarten,3rd Grade,152,152,–,–,–,121,108,†,†,44,32,37,39,†,†,†,†,†,†,†,†,†,†,†,†,73,79,0,0,19,116,0,0,17,152,0 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,350018700811,21ST CENTURY PUBLIC ACADEMY,3500187,35001,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,1-Regular school,1-Yes,11-City: Large,35.105101,-106.599226,NM-35580000-35580001,Yes under Community Eligibility Option (CEO),Elementary,1st Grade,8th Grade,371,371,156,83,16,172,371,†,†,†,16,24,22,38,44,70,86,71,†,†,†,†,†,†,†,188,183,7,3,59,17,257,0,28,371,2 +227 ACADEMY- HS,MONTANA,MONTANA,MT ,227 Academy- HS,300065501146,East Helena K-12,3000655,30049,30,2760 Valley Dr,East Helena,59635, ,4062277700,1-Regular school,†,41-Rural: Fringe,46.603668,-111.916008,MT-1240-3029,No,High,9th Grade,12th Grade,59,59,32,–,4,36,†,59,†,†,†,†,†,†,†,†,†,†,8,18,18,15,†,†,†,33,26,2,0,1,0,50,0,6,59,1 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv index fab98702e9..32c53a5540 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv @@ -1,64 +1,19 @@ -school_state_code,Public_School_Name,School_Id,School_Type_Public,Charter_School,State_School_ID,National_School_Lunch_Program,School_Level_17,Lowest_Grade_Public,Highest_Grade_Public,PhoneNumber,State_Name,State_Abbr,State_code,Physical_Address,City,ZIP,Location_ZIP4,Agency_Name,State_District_ID,year,County_code,Latitude,Longitude,Locale,Magnet_School,Title_I_School_Status,School_Level_16,School_Level,Validated_State_Abbr,ContainedInPlace,School_Management -nces/060429013779,21St Century Learning Institute,60429013779,4-Alternative Education School,dcs:NCES_CharterNo,CA-3366993-0129882,dcs:NCES_MagnetDataMissing,NCES_SchoolLevelOther,dcs:Kindergarten,dcs:SchoolGrade12,9517698424,CALIFORNIA,CA,,939 East 10Th St. Beaumont 92223-1927,Beaumont,92223,1927,Beaumont Unified,dcs:geoId/sch604290,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:NCES_SchoolLevelOther,,"zip/92223,", -nces/272520005371,279Online Learning Program 9-12,272520005371,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010279-010279812,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,7633918890,MINNESOTA,MN,geoId/27,7300 Boone Ave N Brooklyn Park MN 55428-8888,BROOKLYN PARK,55428,8888,OSSEO PUBLIC SCHOOL DISTRICT,dcs:geoId/sch2725200,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55428,geoId/27", -nces/273239005351,196Online Middle School,273239005351,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010196-010196066,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,6514237915,MINNESOTA,MN,geoId/27,3455 153Rd St W Rosemount MN 55068-8888,ROSEMOUNT,55068,8888,ROSEMOUNT-APPLE VALLEY-EAGAN,dcs:geoId/sch2732390,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MN,"zip/55068,geoId/27", -nces/273239005352,196Online High School,273239005352,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010196-010196067,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,6519055857,MINNESOTA,MN,geoId/27,3455 153Rd St W Rosemount MN 55068-8888,ROSEMOUNT,55068,8888,ROSEMOUNT-APPLE VALLEY-EAGAN,dcs:geoId/sch2732390,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55068,geoId/27", -nces/273239005353,196Online Elementary,273239005353,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010196-010196766,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade5,6514237915,MINNESOTA,MN,geoId/27,3455 153Rd St W Rosemount MN 55068-8888,ROSEMOUNT,55068,8888,ROSEMOUNT-APPLE VALLEY-EAGAN,dcs:geoId/sch2732390,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,MN,"zip/55068,geoId/27", -nces/273351012806,180 Degrees / Youth Shelter,273351012806,4-Alternative Education School,dcs:NCES_CharterNo,MN-010742-010742044,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,3203708020,MINNESOTA,MN,geoId/27,1101 Washington Memorial Dr Saint Cloud MN 56301-8888,SAINT CLOUD,56301,8888,ST. CLOUD PUBLIC SCHOOL DISTRICT,dcs:geoId/sch2733510,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/56301,geoId/27", -nces/279144305446,5Riversonline Elementary,279144305446,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-616051-616051101,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade6,6513884441,MINNESOTA,MN,geoId/27,395 Guernsey Ln Red Wing MN 55066-8888,RED WING,55066,8888,Goodhue County Education District,dcs:geoId/sch2791443,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,MN,"zip/55066,geoId/27", -nces/279144305447,5Riversonline Secondary,279144305447,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-616051-616051201,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade7,dcs:SchoolGrade12,6513884441,MINNESOTA,MN,geoId/27,395 Guernsey Ln Red Wing MN 55066-8888,RED WING,55066,8888,Goodhue County Education District,dcs:geoId/sch2791443,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55066,geoId/27", -nces/300065501146,227 Academy,300065501146,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterDataMissing,MT-1240-3029,dcs:NCES_MagnetDataMissing,NCES_SchoolLevelDataMissing,dcs:NCES_GradeDataMissing,dcs:NCES_GradeDataMissing,4062277700,MONTANA,MT,geoId/30,2760 Valley Dr East Helena MT 59635,East Helena,59635,,East Helena K-12,dcs:geoId/sch3000655,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:NCES_SchoolLevelDataMissing,MT,"zip/59635,geoId/30", -nces/317458000209,1R Elementary,317458000209,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterDataMissing,NE-400082000-400082003,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:PreKindergarten,dcs:SchoolGrade8,3083856352,Nebraska,NE,geoId/31,3301 W One-R Road Grand Island NE 68803-9331,GRAND ISLAND,68803,9331,NORTHWEST PUBLIC SCHOOLS,dcs:geoId/sch3174580,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,NE,"zip/68803,geoId/31", -nces/317718002379,3-Year-Old Preschool,317718002379,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterDataMissing,NE-340001000-340001003,dcs:NCES_MagnetDataMissing,PreKindergarten,dcs:PreKindergarten,dcs:PreKindergarten,4026453359,NEBRASKA,NE,geoId/31,313 W 1St Street Blue Spring NE 68318,BLUE SPRING,68318,,SOUTHERN SCHOOL DISTRICT 1,dcs:geoId/sch3177180,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:PreKindergarten,NE,"zip/68318,geoId/31", -nces/318009002335,18+ Program,318009002335,NCES_PublicSchoolTypeSpecialEducation,dcs:NCES_CharterDataMissing,NE-000009000-000009024,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,4024635611,NEBRASKA,NE,geoId/31,5807 Osborne Drive West Hastings NE 68901-9158,HASTINGS,68901,9158,EDUCATIONAL SERVICE UNIT 09,dcs:geoId/sch3180090,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,NE,"zip/68901,geoId/31", -nces/320006000670,100 Academy Of Engineering And Technology Es,320006000670,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,NV-02-02093,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade5,7026362551,Nevada,NV,geoId/32,2341 Comstock Dr N Las Vegas NV 89032,N Las Vegas,89032,,Clark County,dcs:geoId/sch3200060,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,NV,"zip/89032,geoId/32", -nces/320006000756,100 Academy Of Engineering And Technology Ms,320006000756,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,NV-02-02364,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,7026362551,Nevada,NV,geoId/32,2341 Comstock Dr N Las Vegas NV 89032,N Las Vegas,89032,,Clark County,dcs:geoId/sch3200060,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,NV,"zip/89032,geoId/32", -nces/350018700811,21St Century Public Academy,350018700811,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,NM-580-001,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:SchoolGrade1,dcs:SchoolGrade8,5052540280,NEW MEXICO,NM,geoId/35,4300 Cutler Ave. Ne Albuquerque NM 87110,ALBUQUERQUE,87110,,21ST CENTURY PUBLIC ACADEMY,dcs:geoId/sch3500187,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,NM,"zip/87110,geoId/35", -nces/360010206477,30Th Avenue School (The) (G & T Citywide),360010206477,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,NY-343000010000-343000010300,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade8,7187260501,NEW YORK,NY,geoId/36,28-37 29Th St Astoria NY 11102,ASTORIA,11102,,NEW YORK CITY GEOGRAPHIC DISTRICT #30,dcs:geoId/sch3600102,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,NY,"zip/11102,geoId/36", -nces/390487306154,3EA,390487306154,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,OH-048736-019818,dcs:NCES_MagnetDataMissing,SecondarySchool,dcs:SchoolGrade6,dcs:SchoolGrade9,9372785885,OHIO,OH,geoId/39,4407 Payne Ave Dayton OH 45414-4526,Dayton,45414,4526,Northridge Local,dcs:geoId/sch3904873,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:SecondarySchool,OH,"zip/45414,geoId/39", -nces/400957002918,4Th And 5Th Grade Center,400957002918,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,OK-55-I006-55-I006-135,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:SchoolGrade4,dcs:SchoolGrade5,4055319328,OKLAHOMA,OK,geoId/40,4653 N W 206Th Street Edmond OK 73012-3012,Edmond,73012,3012,DEER CREEK,dcs:geoId/sch4009570,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,OK,"zip/73012,geoId/40", -nces/410674001907,509J On-Line,410674001907,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,OR-00000000002053-00000000000000005689,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade8,5414754820,OREGON,OR,geoId/41,410 Sw 4Th St Madras OR 97741-1211,Madras,97741,1211,Jefferson County SD 509J,dcs:geoId/sch4106740,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,OR,"zip/97741,geoId/41", -nces/420009100597,21St Century Cyber Cs,420009100597,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,PA-124150002-7691,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,4848755400,Pennsylvania,PA,geoId/42,1245 Wrights Lane West Chester PA 19380,West Chester,19380,,21st Century Cyber CS,dcs:geoId/sch4200091,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,PA,"zip/19380,geoId/42", -nces/440090000492,360 High School,440090000492,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,RI-28-28195,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,4012744603,RHODE ISLAND,RI,geoId/44,182 Thurbers Avenue Providence RI ,Providence,,,Providence,dcs:geoId/sch4400900,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,RI,geoId/44, -nces/530486002475,10Th Street School,530486002475,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WA-31025-1656,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,3609650400,Washington,WA,geoId/53,7204 27Th Ave Ne Marysville WA 98271,Marysville,98271,,Marysville School District,dcs:geoId/sch5304860,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,WA,"zip/98271,geoId/53", -nces/540135001603,6-12 Summers County Comprehensive Hs,540135001603,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WV-8100000-81503,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,3044666040,WEST VIRGINIA,WV,geoId/54,37 Bobcat Dr Hinton WV 25951-9130,Hinton,25951,9130,SUMMERS COUNTY SCHOOLS,dcs:geoId/sch5401350,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,WV,"zip/25951,geoId/54", -nces/550004502575,21St Century Preparatory School,550004502575,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,WI-8010-8110,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:PreKindergarten,dcs:SchoolGrade8,2625980026,Wisconsin,WI,geoId/55,1220 Mound Ave Racine WI 53404,Racine,53404,,Racine Charter One Inc,dcs:geoId/sch5500045,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,WI,"zip/53404,geoId/55", -nces/550747003029,4K Center For Literacy,550747003029,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WI-2835-0150,dcs:NCES_MagnetDataMissing,PreKindergarten,dcs:PreKindergarten,dcs:PreKindergarten,9204234190,WISCONSIN,WI,geoId/55,614 E Kimberly Ave Kimberly WI 54136-1513,Kimberly,54136,1513,Kimberly Area School District,dcs:geoId/sch5507470,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:PreKindergarten,WI,"zip/54136,geoId/55", -nces/550852002475,4K Pk Off Site,550852002475,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WI-3269-0190,dcs:NCES_MagnetDataMissing,PreKindergarten,dcs:PreKindergarten,dcs:PreKindergarten,6082046561,Wisconsin,WI,geoId/55,545 W Dayton St Madison WI 53703,Madison,53703,,Madison Metropolitan School District,dcs:geoId/sch5508520,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:PreKindergarten,WI,"zip/53703,geoId/55", -nces/550891002902,4K Mcfarland,550891002902,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WI-3381-0150,dcs:NCES_MagnetDataMissing,PreKindergarten,dcs:PreKindergarten,dcs:PreKindergarten,6088384602,Wisconsin,WI,geoId/55,6009 Johnson St Mcfarland WI 53558,McFarland,53558,,McFarland School District,dcs:geoId/sch5508910,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:PreKindergarten,WI,"zip/53558,geoId/55", -nces/551266002889,4K Community-Based,551266002889,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WI-4753-0150,dcs:NCES_MagnetDataMissing,PreKindergarten,dcs:PreKindergarten,dcs:PreKindergarten,6087688934,Wisconsin,WI,geoId/55,401 Alexander Ave Reedsburg WI 53959-1592,Reedsburg,53959,1592,Reedsburg School District,dcs:geoId/sch5512660,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:PreKindergarten,WI,"zip/53959,geoId/55", -nces/560147000454,4-J Elementary School,560147000454,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,WY-0301000-0301002,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade6,3076823076,Wyoming,WY,geoId/56,2830 Highway 50A Gillette WY 82718,Gillette,82718,,Campbell County School District #1,dcs:geoId/sch5601470,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,WY,"zip/82718,geoId/56", -nces/720003000010,20 De Septiembre De 1988,720003000010,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,PR-01-35295,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade5,dcs:SchoolGrade8,7877413091,Puerto Rico,PR,geoId/72,Carr Estatal 200 Esq Carr Estatal 993 Vieques PR ,VIEQUES,,,PUERTO RICO DEPARTMENT OF EDUCATION,dcs:geoId/sch7200030,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,PR,geoId/72, -nces/080258006836,27J Online Academy,80258006836,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,CO-0040-6687,dcs:NCES_NationalSchoolLunchProgramNo,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,3036552527,COLORADO,CO,,89 N. 6Th Avenue Brighton 80601,BRIGHTON,80601,,School District 27J,dcs:geoId/sch802580,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,,"zip/80601,", -nces/272520012756,279 Excel,272520012756,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010279-010279813,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,7633917163,MINNESOTA,MN,geoId/27,11200 93Rd Ave N Maple Grove MN 55369-8888,MAPLE GROVE,55369,8888,OSSEO PUBLIC SCHOOL DISTRICT,dcs:geoId/sch2725200,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55369,geoId/27", -nces/360007705767,47 American Sign Language And English Lower School (The),360007705767,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,NY-310200010000-310200010347,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:PreKindergarten,dcs:SchoolGrade8,9143266609,New York,NY,geoId/36,223 E 23Rd St New York NY 10010,NEW YORK,10010,,NEW YORK CITY GEOGRAPHIC DISTRICT # 2,dcs:geoId/sch3600077,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,NY,"zip/10010,geoId/36", -nces/272520005370,279Online Learning Program 6-8,272520005370,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010279-010279811,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,7633918890,MINNESOTA,MN,geoId/27,7300 Boone Ave N Brooklyn Park MN 55428-8888,BROOKLYN PARK,55428,8888,OSSEO PUBLIC SCHOOL DISTRICT,dcs:geoId/sch2725200,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MN,"zip/55428,geoId/27", -nces/270002503554,277 Westonka Area Learning Academy,270002503554,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287754,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9524918258,Minnesota,MN,geoId/27,5901 Sunnyfield Rd E Minnetrista MN 55364-8888,MINNETRISTA,55364,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55364,geoId/27", -nces/272520005369,279Online Learning Program K-5,272520005369,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010279-010279810,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade5,7633918890,MINNESOTA,MN,geoId/27,7300 Boone Ave N Brooklyn Park MN 55428-8888,BROOKLYN PARK,55428,8888,OSSEO PUBLIC SCHOOL DISTRICT,dcs:geoId/sch2725200,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,MN,"zip/55428,geoId/27", -nces/120144009033,34-M-W-7 (34-M-N-7),120144009033,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,FL-48-1961,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,4073173200,FLORIDA,FL,geoId/12,445 W. Amelia St Orlando FL 32801,ORLANDO,32801,,ORANGE,dcs:geoId/sch1201440,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,FL,"zip/32801,geoId/12", -nces/120144010794,130-E-Se-2,120144010794,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,FL-48-1444,dcs:NCES_MagnetDataMissing,NCES_SchoolLevelDataMissing,dcs:NCES_GradeDataMissing,dcs:NCES_GradeDataMissing,4073173200,FLORIDA,FL,geoId/12,445 W Amelia St Orlando FL 32801,ORLANDO,32801,,ORANGE,dcs:geoId/sch1201440,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:NCES_SchoolLevelDataMissing,FL,"zip/32801,geoId/12", -nces/160153000605,3B Juvenile Detention Center,160153000605,4-Alternative Education School,dcs:NCES_CharterNo,ID-091-1152,dcs:NCES_MagnetDataMissing,NCES_SchoolLevelOther,dcs:SchoolGrade4,dcs:SchoolGrade12,2085422947,Idaho,ID,geoId/16,950 Environmental Way Idaho Falls ID 83401-1621,IDAHO FALLS,83401,1621,IDAHO FALLS DISTRICT,dcs:geoId/sch1601530,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:NCES_SchoolLevelOther,ID,"zip/83401,geoId/16", -nces/173081003429,21St Century Primary Center,173081003429,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,IL-07-016-1630-02-070161630022008,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:Kindergarten,dcs:SchoolGrade3,7086689451,Illinois,IL,geoId/17,240 S Orchard Dr Park Forest IL 60466-2045,Park Forest,60466,2045,Park Forest SD 163,dcs:geoId/sch1730810,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,IL,"zip/60466,geoId/17", -nces/180004602162,21St Century Charter Sch Of Gary,180004602162,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterYes,IN-9545-4164,dcs:NCES_MagnetDataMissing,NCES_SchoolLevelOther,dcs:Kindergarten,dcs:SchoolGrade12,2198869339,Indiana,IN,geoId/18,556 Washington St Gary IN 46402,Gary,46402,,21st Century Charter Sch of Gary,dcs:geoId/sch1800046,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:NCES_SchoolLevelOther,IN,"zip/46402,geoId/18", -nces/200795002097,500 Reach,200795002097,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,KS-D0500-8403,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade12,dcs:SchoolGrade12,9132871718,KANSAS,KS,geoId/20,7704 Parallel Parkway Kansas City KS 66612,Kansas City,66612,,Kansas City,dcs:geoId/sch2007950,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,KS,"zip/66612,geoId/20", -nces/250732002639,1 Lt Charles W. Whitcomb School,250732002639,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MA-0170-01700045,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,5084603502,Massachusetts,MA,geoId/25,25 Union Street Marlborough MA ,Marlborough,,,Marlborough,dcs:geoId/sch2507320,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MA,geoId/25, -nces/080336006756,5280 High School,80336006756,4-Alternative Education School,dcs:NCES_CharterYes,CO-0880-2994,dcs:NCES_NationalSchoolLunchProgramYesUnderCEO,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,7209191056,COLORADO,CO,,1200 W Mississippi Ave Denver 80223,DENVER,80223,,School District No. 1 in the county of Denver and State of C,dcs:geoId/sch803360,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,,"zip/80223,", -nces/262016008622,54Th Street Academy,262016008622,4-Alternative Education School,dcs:NCES_CharterNo,MI-41140-02449,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,6165317433,MICHIGAN,MI,geoId/26,173 54Th St Sw Grand Rapids MI 49548-5611,GRAND RAPIDS,49548,5611,Kelloggsville Public Schools,dcs:geoId/sch2620160,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MI,"zip/49548,geoId/26", -nces/262895007802,12Th Street Elementary,262895007802,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MI-39140-09848,dcs:NCES_MagnetDataMissing,ElementarySchool,dcs:PreKindergarten,dcs:SchoolGrade5,2693236900,Michigan,MI,geoId/26,6501 S 12Th St Portage MI 49024-1705,PORTAGE,49024,1705,Portage Public Schools,dcs:geoId/sch2628950,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:ElementarySchool,MI,"zip/49024,geoId/26", -nces/270002502875,270 Hopkins Alternative,270002502875,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287626,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9529884509,Minnesota,MN,geoId/27,2400 Royals Dr Minnetonka MN 55305-8888,MINNETONKA,55305,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55305,geoId/27", -nces/270002503396,270 Hopkins West Jr High Alc,270002503396,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287710,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade7,dcs:SchoolGrade9,9529884843,Minnesota,MN,geoId/27,3830 Baker Rd Minnetonka MN 55305-6898,MINNETONKA,55305,6898,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MN,"zip/55305,geoId/27", -nces/270002503397,270 Hopkins North Jr High Alc,270002503397,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287709,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade7,dcs:SchoolGrade12,9529884843,Minnesota,MN,geoId/27,10700 Cedar Lake Rd Minnetonka MN 55305-6499,MINNETONKA,55305,6499,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55305,geoId/27", -nces/261884009043,56 Building At Georgetown,261884009043,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MI-70190-04231,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade5,dcs:SchoolGrade6,6162727100,MICHIGAN,MI,geoId/26,8175 36Th Ave Hudsonville MI 49426,HUDSONVILLE,49426,,Hudsonville Public School District,dcs:geoId/sch2618840,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MI,"zip/49426,geoId/26", -nces/270002503561,283-St. Louis Park Alc,270002503561,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287761,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9529286000,Minnesota,MN,geoId/27,6425 W 33Rd St Saint Louis Park MN 55426-8888,SAINT LOUIS PARK,55426,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55426,geoId/27", -nces/270002512817,4122 - Eagle Ridge Academy - Alc,270002512817,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287849,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9527467760,MINNESOTA,MN,geoId/27,11111 Bren Rd W Minnetonka MN 55343-8888,MINNETONKA,55343,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55343,geoId/27", -nces/271503005356,199 Online High School,271503005356,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-010199-010199090,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,6513067009,MINNESOTA,MN,geoId/27,2920 80Th St E Inver Grove Heights MN 55076-8888,INVER GROVE HEIGHTS,55076,8888,INVER GROVE HEIGHTS SCHOOLS,dcs:geoId/sch2715030,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55076,geoId/27", -nces/270819005118,112 Alc Seat-Based,270819005118,4-Alternative Education School,dcs:NCES_CharterNo,MN-010112-010112071,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,9525566192,MINNESOTA,MN,geoId/27,11 Peavey Rd Chaska MN 55318-2321,CHASKA,55318,2321,EASTERN CARVER COUNTY PUBLIC SCHOOL,dcs:geoId/sch2708190,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55318,geoId/27", -nces/270819004622,112 Alc Middle School,270819004622,4-Alternative Education School,dcs:NCES_CharterNo,MN-010112-010112066,dcs:NCES_MagnetDataMissing,MiddleSchool,dcs:SchoolGrade6,dcs:SchoolGrade8,9525566192,Minnesota,MN,geoId/27,11 Peavey Rd Chaska MN 55318-2321,CHASKA,55318,2321,EASTERN CARVER COUNTY PUBLIC SCHOOL,dcs:geoId/sch2708190,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:MiddleSchool,MN,"zip/55318,geoId/27", -nces/270819004415,112 Alc Independent Study,270819004415,4-Alternative Education School,dcs:NCES_CharterNo,MN-010112-010112067,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9525566192,Minnesota,MN,geoId/27,11 Peavey Rd Chaska MN 55318-2321,CHASKA,55318,2321,EASTERN CARVER COUNTY PUBLIC SCHOOL,dcs:geoId/sch2708190,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55318,geoId/27", -nces/270015000652,6-12Th Grade Building,270015000652,NCES_PublicSchoolTypeRegular,dcs:NCES_CharterNo,MN-012888-012888003,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,3207487233,Minnesota,MN,geoId/27,712 3Rd St Graceville MN 56240-0398,GRACEVILLE,56240,398,CLINTON-GRACEVILLE-BEARDSLEY,dcs:geoId/sch2700150,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/56240,geoId/27", -nces/272385001044,622 Alternative Middle/High School,272385001044,4-Alternative Education School,dcs:NCES_CharterNo,MN-010622-010622040,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade6,dcs:SchoolGrade12,6517487610,Minnesota,MN,geoId/27,2520 12Th Ave E North Saint Paul MN 55109-8888,NORTH SAINT PAUL,55109,8888,North St. Paul-Maplewood Oakdale,dcs:geoId/sch2723850,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55109,geoId/27", -nces/270002504823,4122 - Eagle Ridge Academy - Is,270002504823,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287854,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9527467760,MINNESOTA,MN,geoId/27,11111 Bren Rd W Minnetonka MN 55343-8888,MINNETONKA,55343,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55343,geoId/27", -nces/270002504476,4126 - Prairie Seeds Academy - Is,270002504476,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287792,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,7634501388,Minnesota,MN,geoId/27,6200 W Broadway Ave Brooklyn Park MN 55428-8888,BROOKLYN PARK,55428,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55428,geoId/27", -nces/270002504216,283-Ind Stdy 15 And Under - I.S.,270002504216,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287777,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9529286000,Minnesota,MN,geoId/27,6425 W 33Rd St Saint Louis Park MN 55426-8888,SAINT LOUIS PARK,55426,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55426,geoId/27", -nces/270002503562,283 St Louis Pk Independent Study,270002503562,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287762,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade9,dcs:SchoolGrade12,9529286000,Minnesota,MN,geoId/27,6425 W 33Rd St Saint Louis Park MN 55426-8888,SAINT LOUIS PARK,55426,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55426,geoId/27", -nces/270002504573,270 - Hap - Is,270002504573,4-Alternative Education School,dcs:NCES_CharterNo,MN-060287-060287794,dcs:NCES_MagnetDataMissing,HighSchool,dcs:SchoolGrade10,dcs:SchoolGrade12,9529884509,Minnesota,MN,geoId/27,2400 Royals Dr Minnetonka MN 55305-8888,MINNETONKA,55305,8888,Intermediate School District 287,dcs:geoId/sch2700025,2023,,,,dcs:NCES_LocaleDataMissing,dcs:NCES_MagnetDataMissing,dcs:NCES_TitleISchoolStatusDataMissing,,dcs:HighSchool,MN,"zip/55305,geoId/27", +"school_state_code","County_code","Public_School_Name","School_Id","School_Type_Public","Charter_School","State_School_ID","National_School_Lunch_Program","Lowest_Grade_Public","Highest_Grade_Public","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","ZIP","Location_ZIP4","Agency_Name","State_District_ID","year","School_Level","Validated_State_Abbr","ContainedInPlace","School_Management" +"nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" +"nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA ","Marlborough","","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","geoId/25017,geoId/25","" +"nces/180004602162","geoId/18089","21St Century Charter Sch Of Gary","180004602162","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","IN-9545-4164","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade12","2198869339","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","46402","","21st Century Charter Sch of Gary","dcs:geoId/sch1800046","2024","dcs:NCES_SchoolLevelOther","IN","zip/46402,geoId/18089,geoId/18","" +"nces/720003000010","geoId/72147","20 De Septiembre De 1988","720003000010","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","PR-01-35295","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","7877413091","Puerto Rico","PR","geoId/72","18.143769","-65.441611","dcs:NCES_TownDistant","Carr Estatal 200 Esq Carr Estatal 993 Vieques PR ","VIEQUES","","","PUERTO RICO DEPARTMENT OF EDUCATION","dcs:geoId/sch7200030","2024","dcs:MiddleSchool","PR","geoId/72147,geoId/72","" +"nces/317458000209","geoId/31079","1R Elementary","317458000209","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterDataMissing","NE-400082000-400082003","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade8","3083856352","Nebraska","NE","geoId/31","41.002783","-98.379562","dcs:NCES_RuralFringe","3301 W One-R Road Grand Island NE 68803-9331","GRAND ISLAND","68803","9331","NORTHWEST PUBLIC SCHOOLS","dcs:geoId/sch3174580","2024","dcs:ElementarySchool","NE","zip/68803,geoId/31079,geoId/31","" +"nces/271503005356","geoId/27037","199 Online High School","271503005356","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010199-010199090","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","6513067009","MINNESOTA","MN","geoId/27","44.832598","-93.047207","dcs:NCES_SuburbLarge","2920 80Th St E Inver Grove Heights MN 55076-8888","INVER GROVE HEIGHTS","55076","8888","INVER GROVE HEIGHTS SCHOOLS","dcs:geoId/sch2715030","2024","dcs:HighSchool","MN","zip/55076,geoId/27037,geoId/27","" +"nces/273239005351","geoId/27037","196Online Middle School","273239005351","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","6514237915","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:MiddleSchool","MN","zip/55068,geoId/27037,geoId/27","" +"nces/273239005352","geoId/27037","196Online High School","273239005352","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","6519055857","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:HighSchool","MN","zip/55068,geoId/27037,geoId/27","" +"nces/273239005353","geoId/27037","196Online Elementary","273239005353","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196766","dcs:NCES_NationalSchoolLunchProgramNo","dcs:Kindergarten","dcs:SchoolGrade5","6514237915","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:ElementarySchool","MN","zip/55068,geoId/27037,geoId/27","" +"nces/273351012806","geoId/27145","180 Degrees / Youth Shelter","273351012806","4-Alternative Education School","dcs:NCES_CharterNo","MN-010742-010742044","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","3203708020","MINNESOTA","MN","geoId/27","45.547418","-94.172744","dcs:NCES_CitySmall","1101 Washington Memorial Dr Saint Cloud MN 56301-8888","SAINT CLOUD","56301","8888","ST. CLOUD PUBLIC SCHOOL DISTRICT","dcs:geoId/sch2733510","2024","dcs:HighSchool","MN","zip/56301,geoId/27145,geoId/27","" +"nces/318009002335","geoId/31001","18+ Program","318009002335","NCES_PublicSchoolTypeSpecialEducation","dcs:NCES_CharterDataMissing","NE-000009000-000009024","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","4024635611","NEBRASKA","NE","geoId/31","40.642044","-98.383244","dcs:NCES_TownDistant","5807 Osborne Drive West Hastings NE 68901-9158","HASTINGS","68901","9158","EDUCATIONAL SERVICE UNIT 09","dcs:geoId/sch3180090","2024","dcs:HighSchool","NE","zip/68901,geoId/31001,geoId/31","" +"nces/262895007802","geoId/26077","12Th Street Elementary","262895007802","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MI-39140-09848","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","2693236900","Michigan","MI","geoId/26","42.2202","-85.646452","dcs:NCES_CitySmall","6501 S 12Th St Portage MI 49024-1705","PORTAGE","49024","1705","Portage Public Schools","dcs:geoId/sch2628950","2024","dcs:ElementarySchool","MI","zip/49024,geoId/26077,geoId/26","" +"nces/120144008672","geoId/12095","126-E-W-4","120144008672","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","FL-48-1025","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173200","FLORIDA","FL","geoId/12","28.36828","-81.633579","dcs:NCES_RuralFringe","445 W Amelia St Orlando FL 32801","ORLANDO","32801","","ORANGE","dcs:geoId/sch1201440","2024","dcs:NCES_SchoolLevelDataMissing","FL","zip/32801,geoId/12095,geoId/12","" +"nces/270819005118","geoId/27019","112 Alc Seat-Based","270819005118","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112071","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","9525566192","MINNESOTA","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/270819004622","geoId/27019","112 Alc Middle School","270819004622","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:MiddleSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" +"nces/420009100597","geoId/42029","21St Century Cyber Cs","420009100597","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","PA-124150002-7691","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","19380","","21st Century Cyber CS","dcs:geoId/sch4200091","2024","dcs:HighSchool","PA","zip/19380,geoId/42029,geoId/42","" diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv index 0bed977f2f..a83c7b40db 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv @@ -1,9148 +1,331 @@ school_state_code,year,sv_name,observation,scaling_factor,unit -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/080336006756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/120144009033,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/173081003429,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/200795002097,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/250732002639,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/261884009043,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/262016008622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002502875,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002503396,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002503554,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002503561,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002503562,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002504216,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002504476,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002504573,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002504823,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270002512817,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/270819004415,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/270819004622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/271503005356,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/272520005370,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/272520005371,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/273239005351,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/273239005352,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/317718002379,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/318009002335,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/320006000756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,9,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,2,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,2,, -nces/390487306154,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/400957002918,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,13,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,2,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/440090000492,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/530486002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,9,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/550747003029,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,1,, -nces/550852002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/550891002902,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/551266002889,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/720003000010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,2,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/080336006756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/120144009033,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/173081003429,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/200795002097,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/250732002639,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/261884009043,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/262016008622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002502875,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002503396,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002503554,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002503561,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002503562,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002504216,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002504476,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002504573,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002504823,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270002512817,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270819004415,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270819004622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/271503005356,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/272520005370,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/272520005371,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/273239005351,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/273239005352,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,2,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,6,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/317718002379,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/318009002335,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/320006000756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,3,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,2,, -nces/390487306154,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/400957002918,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,16,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,3,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/440090000492,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/530486002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,9,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/550747003029,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/550852002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/550891002902,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/551266002889,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,1,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/720003000010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative,3,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/080336006756,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/120144009033,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/173081003429,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/200795002097,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/250732002639,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/261884009043,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/262016008622,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002502875,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002503396,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002503554,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002503561,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002503562,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002504216,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002504476,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002504573,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002504823,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270002512817,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/270819004415,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/270819004622,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/271503005356,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/272520005370,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/272520005371,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/273239005351,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/273239005352,2023,Count_Student_AmericanIndianOrAlaskaNative,2,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative,3,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative,7,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/317718002379,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/318009002335,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/320006000756,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative,12,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative,2,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative,4,, -nces/390487306154,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/400957002918,2023,Count_Student_AmericanIndianOrAlaskaNative,29,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative,5,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/440090000492,2023,Count_Student_AmericanIndianOrAlaskaNative,2,, -nces/530486002475,2023,Count_Student_AmericanIndianOrAlaskaNative,18,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/550747003029,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/550852002475,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/550891002902,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/551266002889,2023,Count_Student_AmericanIndianOrAlaskaNative,1,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/720003000010,2023,Count_Student_AmericanIndianOrAlaskaNative,0,, -nces/060429013779,2023,Count_Student_Female_Asian,8,, -nces/080258006836,2023,Count_Student_Female_Asian,2,, -nces/080336006756,2023,Count_Student_Female_Asian,0,, -nces/120144009033,2023,Count_Student_Female_Asian,0,, -nces/160153000605,2023,Count_Student_Female_Asian,0,, -nces/173081003429,2023,Count_Student_Female_Asian,0,, -nces/180004602162,2023,Count_Student_Female_Asian,0,, -nces/200795002097,2023,Count_Student_Female_Asian,2,, -nces/250732002639,2023,Count_Student_Female_Asian,6,, -nces/261884009043,2023,Count_Student_Female_Asian,7,, -nces/262016008622,2023,Count_Student_Female_Asian,0,, -nces/262895007802,2023,Count_Student_Female_Asian,31,, -nces/270002502875,2023,Count_Student_Female_Asian,0,, -nces/270002503396,2023,Count_Student_Female_Asian,0,, -nces/270002503397,2023,Count_Student_Female_Asian,0,, -nces/270002503554,2023,Count_Student_Female_Asian,0,, -nces/270002503561,2023,Count_Student_Female_Asian,0,, -nces/270002503562,2023,Count_Student_Female_Asian,0,, -nces/270002504216,2023,Count_Student_Female_Asian,0,, -nces/270002504476,2023,Count_Student_Female_Asian,0,, -nces/270002504573,2023,Count_Student_Female_Asian,0,, -nces/270002504823,2023,Count_Student_Female_Asian,0,, -nces/270002512817,2023,Count_Student_Female_Asian,0,, -nces/270015000652,2023,Count_Student_Female_Asian,0,, -nces/270819004415,2023,Count_Student_Female_Asian,1,, -nces/270819004622,2023,Count_Student_Female_Asian,5,, -nces/270819005118,2023,Count_Student_Female_Asian,0,, -nces/271503005356,2023,Count_Student_Female_Asian,0,, -nces/272385001044,2023,Count_Student_Female_Asian,0,, -nces/272520005369,2023,Count_Student_Female_Asian,11,, -nces/272520005370,2023,Count_Student_Female_Asian,8,, -nces/272520005371,2023,Count_Student_Female_Asian,18,, -nces/272520012756,2023,Count_Student_Female_Asian,0,, -nces/273239005351,2023,Count_Student_Female_Asian,0,, -nces/273239005352,2023,Count_Student_Female_Asian,2,, -nces/273239005353,2023,Count_Student_Female_Asian,0,, -nces/273351012806,2023,Count_Student_Female_Asian,0,, -nces/279144305446,2023,Count_Student_Female_Asian,0,, -nces/279144305447,2023,Count_Student_Female_Asian,0,, -nces/317458000209,2023,Count_Student_Female_Asian,0,, -nces/317718002379,2023,Count_Student_Female_Asian,0,, -nces/318009002335,2023,Count_Student_Female_Asian,0,, -nces/320006000670,2023,Count_Student_Female_Asian,1,, -nces/320006000756,2023,Count_Student_Female_Asian,1,, -nces/350018700811,2023,Count_Student_Female_Asian,3,, -nces/360007705767,2023,Count_Student_Female_Asian,8,, -nces/360010206477,2023,Count_Student_Female_Asian,140,, -nces/390487306154,2023,Count_Student_Female_Asian,0,, -nces/400957002918,2023,Count_Student_Female_Asian,61,, -nces/410674001907,2023,Count_Student_Female_Asian,0,, -nces/420009100597,2023,Count_Student_Female_Asian,4,, -nces/440090000492,2023,Count_Student_Female_Asian,3,, -nces/530486002475,2023,Count_Student_Female_Asian,0,, -nces/540135001603,2023,Count_Student_Female_Asian,0,, -nces/550004502575,2023,Count_Student_Female_Asian,0,, -nces/550747003029,2023,Count_Student_Female_Asian,6,, -nces/550852002475,2023,Count_Student_Female_Asian,21,, -nces/550891002902,2023,Count_Student_Female_Asian,2,, -nces/551266002889,2023,Count_Student_Female_Asian,0,, -nces/560147000454,2023,Count_Student_Female_Asian,0,, -nces/720003000010,2023,Count_Student_Female_Asian,0,, -nces/060429013779,2023,Count_Student_Male_Asian,4,, -nces/080258006836,2023,Count_Student_Male_Asian,5,, -nces/080336006756,2023,Count_Student_Male_Asian,0,, -nces/120144009033,2023,Count_Student_Male_Asian,0,, -nces/160153000605,2023,Count_Student_Male_Asian,0,, -nces/173081003429,2023,Count_Student_Male_Asian,0,, -nces/180004602162,2023,Count_Student_Male_Asian,0,, -nces/200795002097,2023,Count_Student_Male_Asian,2,, -nces/250732002639,2023,Count_Student_Male_Asian,5,, -nces/261884009043,2023,Count_Student_Male_Asian,6,, -nces/262016008622,2023,Count_Student_Male_Asian,1,, -nces/262895007802,2023,Count_Student_Male_Asian,33,, -nces/270002502875,2023,Count_Student_Male_Asian,0,, -nces/270002503396,2023,Count_Student_Male_Asian,0,, -nces/270002503397,2023,Count_Student_Male_Asian,0,, -nces/270002503554,2023,Count_Student_Male_Asian,0,, -nces/270002503561,2023,Count_Student_Male_Asian,0,, -nces/270002503562,2023,Count_Student_Male_Asian,0,, -nces/270002504216,2023,Count_Student_Male_Asian,0,, -nces/270002504476,2023,Count_Student_Male_Asian,0,, -nces/270002504573,2023,Count_Student_Male_Asian,0,, -nces/270002504823,2023,Count_Student_Male_Asian,0,, -nces/270002512817,2023,Count_Student_Male_Asian,0,, -nces/270015000652,2023,Count_Student_Male_Asian,0,, -nces/270819004415,2023,Count_Student_Male_Asian,2,, -nces/270819004622,2023,Count_Student_Male_Asian,7,, -nces/270819005118,2023,Count_Student_Male_Asian,0,, -nces/271503005356,2023,Count_Student_Male_Asian,1,, -nces/272385001044,2023,Count_Student_Male_Asian,0,, -nces/272520005369,2023,Count_Student_Male_Asian,8,, -nces/272520005370,2023,Count_Student_Male_Asian,8,, -nces/272520005371,2023,Count_Student_Male_Asian,15,, -nces/272520012756,2023,Count_Student_Male_Asian,0,, -nces/273239005351,2023,Count_Student_Male_Asian,0,, -nces/273239005352,2023,Count_Student_Male_Asian,4,, -nces/273239005353,2023,Count_Student_Male_Asian,0,, -nces/273351012806,2023,Count_Student_Male_Asian,0,, -nces/279144305446,2023,Count_Student_Male_Asian,0,, -nces/279144305447,2023,Count_Student_Male_Asian,0,, -nces/317458000209,2023,Count_Student_Male_Asian,0,, -nces/317718002379,2023,Count_Student_Male_Asian,0,, -nces/318009002335,2023,Count_Student_Male_Asian,0,, -nces/320006000670,2023,Count_Student_Male_Asian,0,, -nces/320006000756,2023,Count_Student_Male_Asian,0,, -nces/350018700811,2023,Count_Student_Male_Asian,3,, -nces/360007705767,2023,Count_Student_Male_Asian,5,, -nces/360010206477,2023,Count_Student_Male_Asian,131,, -nces/390487306154,2023,Count_Student_Male_Asian,0,, -nces/400957002918,2023,Count_Student_Male_Asian,59,, -nces/410674001907,2023,Count_Student_Male_Asian,0,, -nces/420009100597,2023,Count_Student_Male_Asian,0,, -nces/440090000492,2023,Count_Student_Male_Asian,4,, -nces/530486002475,2023,Count_Student_Male_Asian,3,, -nces/540135001603,2023,Count_Student_Male_Asian,0,, -nces/550004502575,2023,Count_Student_Male_Asian,0,, -nces/550747003029,2023,Count_Student_Male_Asian,2,, -nces/550852002475,2023,Count_Student_Male_Asian,16,, -nces/550891002902,2023,Count_Student_Male_Asian,3,, -nces/551266002889,2023,Count_Student_Male_Asian,0,, -nces/560147000454,2023,Count_Student_Male_Asian,0,, -nces/720003000010,2023,Count_Student_Male_Asian,0,, -nces/060429013779,2023,Count_Student_Asian,12,, -nces/080258006836,2023,Count_Student_Asian,7,, -nces/080336006756,2023,Count_Student_Asian,0,, -nces/120144009033,2023,Count_Student_Asian,0,, -nces/160153000605,2023,Count_Student_Asian,0,, -nces/173081003429,2023,Count_Student_Asian,0,, -nces/180004602162,2023,Count_Student_Asian,0,, -nces/200795002097,2023,Count_Student_Asian,4,, -nces/250732002639,2023,Count_Student_Asian,11,, -nces/261884009043,2023,Count_Student_Asian,13,, -nces/262016008622,2023,Count_Student_Asian,1,, -nces/262895007802,2023,Count_Student_Asian,64,, -nces/270002502875,2023,Count_Student_Asian,0,, -nces/270002503396,2023,Count_Student_Asian,0,, -nces/270002503397,2023,Count_Student_Asian,0,, -nces/270002503554,2023,Count_Student_Asian,0,, -nces/270002503561,2023,Count_Student_Asian,0,, -nces/270002503562,2023,Count_Student_Asian,0,, -nces/270002504216,2023,Count_Student_Asian,0,, -nces/270002504476,2023,Count_Student_Asian,0,, -nces/270002504573,2023,Count_Student_Asian,0,, -nces/270002504823,2023,Count_Student_Asian,0,, -nces/270002512817,2023,Count_Student_Asian,0,, -nces/270015000652,2023,Count_Student_Asian,0,, -nces/270819004415,2023,Count_Student_Asian,3,, -nces/270819004622,2023,Count_Student_Asian,12,, -nces/270819005118,2023,Count_Student_Asian,0,, -nces/271503005356,2023,Count_Student_Asian,1,, -nces/272385001044,2023,Count_Student_Asian,0,, -nces/272520005369,2023,Count_Student_Asian,19,, -nces/272520005370,2023,Count_Student_Asian,16,, -nces/272520005371,2023,Count_Student_Asian,33,, -nces/272520012756,2023,Count_Student_Asian,0,, -nces/273239005351,2023,Count_Student_Asian,0,, -nces/273239005352,2023,Count_Student_Asian,6,, -nces/273239005353,2023,Count_Student_Asian,0,, -nces/273351012806,2023,Count_Student_Asian,0,, -nces/279144305446,2023,Count_Student_Asian,0,, -nces/279144305447,2023,Count_Student_Asian,0,, -nces/317458000209,2023,Count_Student_Asian,0,, -nces/317718002379,2023,Count_Student_Asian,0,, -nces/318009002335,2023,Count_Student_Asian,0,, -nces/320006000670,2023,Count_Student_Asian,1,, -nces/320006000756,2023,Count_Student_Asian,1,, -nces/350018700811,2023,Count_Student_Asian,6,, -nces/360007705767,2023,Count_Student_Asian,13,, -nces/360010206477,2023,Count_Student_Asian,271,, -nces/390487306154,2023,Count_Student_Asian,0,, -nces/400957002918,2023,Count_Student_Asian,120,, -nces/410674001907,2023,Count_Student_Asian,0,, -nces/420009100597,2023,Count_Student_Asian,4,, -nces/440090000492,2023,Count_Student_Asian,7,, -nces/530486002475,2023,Count_Student_Asian,3,, -nces/540135001603,2023,Count_Student_Asian,0,, -nces/550004502575,2023,Count_Student_Asian,0,, -nces/550747003029,2023,Count_Student_Asian,8,, -nces/550852002475,2023,Count_Student_Asian,37,, -nces/550891002902,2023,Count_Student_Asian,5,, -nces/551266002889,2023,Count_Student_Asian,0,, -nces/560147000454,2023,Count_Student_Asian,0,, -nces/720003000010,2023,Count_Student_Asian,0,, -nces/060429013779,2023,Count_Student_Black,18,, -nces/080258006836,2023,Count_Student_Black,7,, -nces/080336006756,2023,Count_Student_Black,4,, -nces/120144009033,2023,Count_Student_Black,0,, -nces/160153000605,2023,Count_Student_Black,0,, -nces/173081003429,2023,Count_Student_Black,112,, -nces/180004602162,2023,Count_Student_Black,1130,, -nces/200795002097,2023,Count_Student_Black,58,, -nces/250732002639,2023,Count_Student_Black,45,, -nces/261884009043,2023,Count_Student_Black,8,, -nces/262016008622,2023,Count_Student_Black,39,, -nces/262895007802,2023,Count_Student_Black,74,, -nces/270002502875,2023,Count_Student_Black,0,, -nces/270002503396,2023,Count_Student_Black,0,, -nces/270002503397,2023,Count_Student_Black,0,, -nces/270002503554,2023,Count_Student_Black,0,, -nces/270002503561,2023,Count_Student_Black,0,, -nces/270002503562,2023,Count_Student_Black,0,, -nces/270002504216,2023,Count_Student_Black,0,, -nces/270002504476,2023,Count_Student_Black,0,, -nces/270002504573,2023,Count_Student_Black,0,, -nces/270002504823,2023,Count_Student_Black,0,, -nces/270002512817,2023,Count_Student_Black,0,, -nces/270015000652,2023,Count_Student_Black,0,, -nces/270819004415,2023,Count_Student_Black,2,, -nces/270819004622,2023,Count_Student_Black,39,, -nces/270819005118,2023,Count_Student_Black,0,, -nces/271503005356,2023,Count_Student_Black,2,, -nces/272385001044,2023,Count_Student_Black,0,, -nces/272520005369,2023,Count_Student_Black,34,, -nces/272520005370,2023,Count_Student_Black,31,, -nces/272520005371,2023,Count_Student_Black,58,, -nces/272520012756,2023,Count_Student_Black,0,, -nces/273239005351,2023,Count_Student_Black,0,, -nces/273239005352,2023,Count_Student_Black,20,, -nces/273239005353,2023,Count_Student_Black,0,, -nces/273351012806,2023,Count_Student_Black,0,, -nces/279144305446,2023,Count_Student_Black,0,, -nces/279144305447,2023,Count_Student_Black,4,, -nces/317458000209,2023,Count_Student_Black,2,, -nces/317718002379,2023,Count_Student_Black,0,, -nces/318009002335,2023,Count_Student_Black,0,, -nces/320006000670,2023,Count_Student_Black,117,, -nces/320006000756,2023,Count_Student_Black,42,, -nces/350018700811,2023,Count_Student_Black,28,, -nces/360007705767,2023,Count_Student_Black,32,, -nces/360010206477,2023,Count_Student_Black,14,, -nces/390487306154,2023,Count_Student_Black,0,, -nces/400957002918,2023,Count_Student_Black,107,, -nces/410674001907,2023,Count_Student_Black,0,, -nces/420009100597,2023,Count_Student_Black,49,, -nces/440090000492,2023,Count_Student_Black,51,, -nces/530486002475,2023,Count_Student_Black,2,, -nces/540135001603,2023,Count_Student_Black,12,, -nces/550004502575,2023,Count_Student_Black,324,, -nces/550747003029,2023,Count_Student_Black,2,, -nces/550852002475,2023,Count_Student_Black,106,, -nces/550891002902,2023,Count_Student_Black,2,, -nces/551266002889,2023,Count_Student_Black,2,, -nces/560147000454,2023,Count_Student_Black,0,, -nces/720003000010,2023,Count_Student_Black,0,, -nces/060429013779,2023,Count_Student_Female,181,, -nces/080258006836,2023,Count_Student_Female,151,, -nces/080336006756,2023,Count_Student_Female,39,, -nces/120144009033,2023,Count_Student_Female,0,, -nces/160153000605,2023,Count_Student_Female,0,, -nces/173081003429,2023,Count_Student_Female,68,, -nces/180004602162,2023,Count_Student_Female,630,, -nces/200795002097,2023,Count_Student_Female,125,, -nces/250732002639,2023,Count_Student_Female,446,, -nces/261884009043,2023,Count_Student_Female,308,, -nces/262016008622,2023,Count_Student_Female,33,, -nces/262895007802,2023,Count_Student_Female,308,, -nces/270002502875,2023,Count_Student_Female,0,, -nces/270002503396,2023,Count_Student_Female,0,, -nces/270002503397,2023,Count_Student_Female,0,, -nces/270002503554,2023,Count_Student_Female,0,, -nces/270002503561,2023,Count_Student_Female,0,, -nces/270002503562,2023,Count_Student_Female,0,, -nces/270002504216,2023,Count_Student_Female,0,, -nces/270002504476,2023,Count_Student_Female,0,, -nces/270002504573,2023,Count_Student_Female,0,, -nces/270002504823,2023,Count_Student_Female,0,, -nces/270002512817,2023,Count_Student_Female,0,, -nces/270015000652,2023,Count_Student_Female,74,, -nces/270819004415,2023,Count_Student_Female,16,, -nces/270819004622,2023,Count_Student_Female,209,, -nces/270819005118,2023,Count_Student_Female,0,, -nces/271503005356,2023,Count_Student_Female,18,, -nces/272385001044,2023,Count_Student_Female,0,, -nces/272520005369,2023,Count_Student_Female,43,, -nces/272520005370,2023,Count_Student_Female,57,, -nces/272520005371,2023,Count_Student_Female,105,, -nces/272520012756,2023,Count_Student_Female,0,, -nces/273239005351,2023,Count_Student_Female,0,, -nces/273239005352,2023,Count_Student_Female,60,, -nces/273239005353,2023,Count_Student_Female,0,, -nces/273351012806,2023,Count_Student_Female,0,, -nces/279144305446,2023,Count_Student_Female,17,, -nces/279144305447,2023,Count_Student_Female,99,, -nces/317458000209,2023,Count_Student_Female,101,, -nces/317718002379,2023,Count_Student_Female,0,, -nces/318009002335,2023,Count_Student_Female,0,, -nces/320006000670,2023,Count_Student_Female,85,, -nces/320006000756,2023,Count_Student_Female,36,, -nces/350018700811,2023,Count_Student_Female,178,, -nces/360007705767,2023,Count_Student_Female,84,, -nces/360010206477,2023,Count_Student_Female,246,, -nces/390487306154,2023,Count_Student_Female,1,, -nces/400957002918,2023,Count_Student_Female,588,, -nces/410674001907,2023,Count_Student_Female,15,, -nces/420009100597,2023,Count_Student_Female,621,, -nces/440090000492,2023,Count_Student_Female,155,, -nces/530486002475,2023,Count_Student_Female,68,, -nces/540135001603,2023,Count_Student_Female,315,, -nces/550004502575,2023,Count_Student_Female,254,, -nces/550747003029,2023,Count_Student_Female,145,, -nces/550852002475,2023,Count_Student_Female,284,, -nces/550891002902,2023,Count_Student_Female,51,, -nces/551266002889,2023,Count_Student_Female,24,, -nces/560147000454,2023,Count_Student_Female,18,, -nces/720003000010,2023,Count_Student_Female,87,, -nces/060429013779,2023,Count_Student_FreeLunch,208,, -nces/080336006756,2023,Count_Student_FreeLunch,33,, -nces/180004602162,2023,Count_Student_FreeLunch,915,, -nces/261884009043,2023,Count_Student_FreeLunch,100,, -nces/262016008622,2023,Count_Student_FreeLunch,71,, -nces/262895007802,2023,Count_Student_FreeLunch,162,, -nces/270015000652,2023,Count_Student_FreeLunch,25,, -nces/270819004415,2023,Count_Student_FreeLunch,6,, -nces/270819004622,2023,Count_Student_FreeLunch,131,, -nces/271503005356,2023,Count_Student_FreeLunch,19,, -nces/272520005369,2023,Count_Student_FreeLunch,47,, -nces/272520005370,2023,Count_Student_FreeLunch,61,, -nces/272520005371,2023,Count_Student_FreeLunch,93,, -nces/273239005352,2023,Count_Student_FreeLunch,38,, -nces/279144305446,2023,Count_Student_FreeLunch,5,, -nces/279144305447,2023,Count_Student_FreeLunch,50,, -nces/317458000209,2023,Count_Student_FreeLunch,44,, -nces/320006000670,2023,Count_Student_FreeLunch,165,, -nces/320006000756,2023,Count_Student_FreeLunch,70,, -nces/350018700811,2023,Count_Student_FreeLunch,162,, -nces/360007705767,2023,Count_Student_FreeLunch,137,, -nces/360010206477,2023,Count_Student_FreeLunch,130,, -nces/420009100597,2023,Count_Student_FreeLunch,51,, -nces/440090000492,2023,Count_Student_FreeLunch,275,, -nces/530486002475,2023,Count_Student_FreeLunch,58,, -nces/550004502575,2023,Count_Student_FreeLunch,39,, -nces/550747003029,2023,Count_Student_FreeLunch,31,, -nces/550852002475,2023,Count_Student_FreeLunch,27,, -nces/550891002902,2023,Count_Student_FreeLunch,11,, -nces/551266002889,2023,Count_Student_FreeLunch,25,, -nces/560147000454,2023,Count_Student_FreeLunch,2,, -nces/720003000010,2023,Count_Student_FreeLunch,139,, -nces/060429013779,2023,Count_Student_DirectCertificationLunch,242,, -nces/080336006756,2023,Count_Student_DirectCertificationLunch,37,, -nces/173081003429,2023,Count_Student_DirectCertificationLunch,120,, -nces/180004602162,2023,Count_Student_DirectCertificationLunch,956,, -nces/200795002097,2023,Count_Student_DirectCertificationLunch,3,, -nces/261884009043,2023,Count_Student_DirectCertificationLunch,129,, -nces/262016008622,2023,Count_Student_DirectCertificationLunch,71,, -nces/262895007802,2023,Count_Student_DirectCertificationLunch,175,, -nces/270015000652,2023,Count_Student_DirectCertificationLunch,35,, -nces/270819004415,2023,Count_Student_DirectCertificationLunch,8,, -nces/270819004622,2023,Count_Student_DirectCertificationLunch,148,, -nces/271503005356,2023,Count_Student_DirectCertificationLunch,22,, -nces/272520005369,2023,Count_Student_DirectCertificationLunch,54,, -nces/272520005370,2023,Count_Student_DirectCertificationLunch,70,, -nces/272520005371,2023,Count_Student_DirectCertificationLunch,103,, -nces/273239005352,2023,Count_Student_DirectCertificationLunch,48,, -nces/279144305446,2023,Count_Student_DirectCertificationLunch,5,, -nces/279144305447,2023,Count_Student_DirectCertificationLunch,58,, -nces/317458000209,2023,Count_Student_DirectCertificationLunch,55,, -nces/320006000670,2023,Count_Student_DirectCertificationLunch,168,, -nces/320006000756,2023,Count_Student_DirectCertificationLunch,71,, -nces/350018700811,2023,Count_Student_DirectCertificationLunch,192,, -nces/360007705767,2023,Count_Student_DirectCertificationLunch,137,, -nces/360010206477,2023,Count_Student_DirectCertificationLunch,142,, -nces/400957002918,2023,Count_Student_DirectCertificationLunch,316,, -nces/420009100597,2023,Count_Student_DirectCertificationLunch,57,, -nces/440090000492,2023,Count_Student_DirectCertificationLunch,297,, -nces/530486002475,2023,Count_Student_DirectCertificationLunch,58,, -nces/550004502575,2023,Count_Student_DirectCertificationLunch,39,, -nces/550747003029,2023,Count_Student_DirectCertificationLunch,39,, -nces/550852002475,2023,Count_Student_DirectCertificationLunch,29,, -nces/550891002902,2023,Count_Student_DirectCertificationLunch,13,, -nces/551266002889,2023,Count_Student_DirectCertificationLunch,28,, -nces/560147000454,2023,Count_Student_DirectCertificationLunch,5,, -nces/720003000010,2023,Count_Student_DirectCertificationLunch,150,, -nces/060429013779,2023,Count_Student_SchoolGrade1,3,, -nces/173081003429,2023,Count_Student_SchoolGrade1,37,, -nces/180004602162,2023,Count_Student_SchoolGrade1,103,, -nces/262895007802,2023,Count_Student_SchoolGrade1,85,, -nces/272520005369,2023,Count_Student_SchoolGrade1,9,, -nces/273239005353,2023,Count_Student_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_SchoolGrade1,2,, -nces/317458000209,2023,Count_Student_SchoolGrade1,20,, -nces/320006000670,2023,Count_Student_SchoolGrade1,30,, -nces/350018700811,2023,Count_Student_SchoolGrade1,17,, -nces/360007705767,2023,Count_Student_SchoolGrade1,17,, -nces/360010206477,2023,Count_Student_SchoolGrade1,62,, -nces/410674001907,2023,Count_Student_SchoolGrade1,1,, -nces/550004502575,2023,Count_Student_SchoolGrade1,59,, -nces/560147000454,2023,Count_Student_SchoolGrade1,5,, -nces/060429013779,2023,Count_Student_SchoolGrade10,67,, -nces/080258006836,2023,Count_Student_SchoolGrade10,51,, -nces/080336006756,2023,Count_Student_SchoolGrade10,25,, -nces/160153000605,2023,Count_Student_SchoolGrade10,3,, -nces/180004602162,2023,Count_Student_SchoolGrade10,103,, -nces/262016008622,2023,Count_Student_SchoolGrade10,8,, -nces/270002502875,2023,Count_Student_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_SchoolGrade10,10,, -nces/270819004415,2023,Count_Student_SchoolGrade10,1,, -nces/270819005118,2023,Count_Student_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_SchoolGrade10,6,, -nces/272385001044,2023,Count_Student_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_SchoolGrade10,43,, -nces/272520012756,2023,Count_Student_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_SchoolGrade10,22,, -nces/273351012806,2023,Count_Student_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_SchoolGrade10,32,, -nces/318009002335,2023,Count_Student_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_SchoolGrade10,225,, -nces/440090000492,2023,Count_Student_SchoolGrade10,85,, -nces/540135001603,2023,Count_Student_SchoolGrade10,100,, -nces/060429013779,2023,Count_Student_SchoolGrade11,58,, -nces/080258006836,2023,Count_Student_SchoolGrade11,64,, -nces/080336006756,2023,Count_Student_SchoolGrade11,33,, -nces/160153000605,2023,Count_Student_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_SchoolGrade11,101,, -nces/262016008622,2023,Count_Student_SchoolGrade11,25,, -nces/270002502875,2023,Count_Student_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_SchoolGrade11,24,, -nces/270819004415,2023,Count_Student_SchoolGrade11,1,, -nces/270819005118,2023,Count_Student_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_SchoolGrade11,12,, -nces/272385001044,2023,Count_Student_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_SchoolGrade11,38,, -nces/272520012756,2023,Count_Student_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_SchoolGrade11,33,, -nces/273351012806,2023,Count_Student_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_SchoolGrade11,41,, -nces/318009002335,2023,Count_Student_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_SchoolGrade11,226,, -nces/440090000492,2023,Count_Student_SchoolGrade11,83,, -nces/540135001603,2023,Count_Student_SchoolGrade11,87,, -nces/060429013779,2023,Count_Student_SchoolGrade12,65,, -nces/080258006836,2023,Count_Student_SchoolGrade12,50,, -nces/080336006756,2023,Count_Student_SchoolGrade12,24,, -nces/160153000605,2023,Count_Student_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_SchoolGrade12,88,, -nces/200795002097,2023,Count_Student_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_SchoolGrade12,47,, -nces/270002502875,2023,Count_Student_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_SchoolGrade12,20,, -nces/270819004415,2023,Count_Student_SchoolGrade12,32,, -nces/270819005118,2023,Count_Student_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_SchoolGrade12,12,, -nces/272385001044,2023,Count_Student_SchoolGrade12,1,, -nces/272520005371,2023,Count_Student_SchoolGrade12,74,, -nces/272520012756,2023,Count_Student_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_SchoolGrade12,38,, -nces/273351012806,2023,Count_Student_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_SchoolGrade12,72,, -nces/318009002335,2023,Count_Student_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_SchoolGrade12,211,, -nces/440090000492,2023,Count_Student_SchoolGrade12,66,, -nces/540135001603,2023,Count_Student_SchoolGrade12,81,, -nces/060429013779,2023,Count_Student_SchoolGrade2,6,, -nces/173081003429,2023,Count_Student_SchoolGrade2,39,, -nces/180004602162,2023,Count_Student_SchoolGrade2,101,, -nces/262895007802,2023,Count_Student_SchoolGrade2,87,, -nces/272520005369,2023,Count_Student_SchoolGrade2,13,, -nces/273239005353,2023,Count_Student_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_SchoolGrade2,1,, -nces/317458000209,2023,Count_Student_SchoolGrade2,22,, -nces/320006000670,2023,Count_Student_SchoolGrade2,27,, -nces/350018700811,2023,Count_Student_SchoolGrade2,15,, -nces/360007705767,2023,Count_Student_SchoolGrade2,23,, -nces/360010206477,2023,Count_Student_SchoolGrade2,61,, -nces/410674001907,2023,Count_Student_SchoolGrade2,2,, -nces/550004502575,2023,Count_Student_SchoolGrade2,50,, -nces/560147000454,2023,Count_Student_SchoolGrade2,4,, -nces/060429013779,2023,Count_Student_SchoolGrade3,12,, -nces/173081003429,2023,Count_Student_SchoolGrade3,42,, -nces/180004602162,2023,Count_Student_SchoolGrade3,85,, -nces/262895007802,2023,Count_Student_SchoolGrade3,102,, -nces/272520005369,2023,Count_Student_SchoolGrade3,15,, -nces/273239005353,2023,Count_Student_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_SchoolGrade3,6,, -nces/317458000209,2023,Count_Student_SchoolGrade3,20,, -nces/320006000670,2023,Count_Student_SchoolGrade3,24,, -nces/350018700811,2023,Count_Student_SchoolGrade3,22,, -nces/360007705767,2023,Count_Student_SchoolGrade3,15,, -nces/360010206477,2023,Count_Student_SchoolGrade3,64,, -nces/410674001907,2023,Count_Student_SchoolGrade3,2,, -nces/550004502575,2023,Count_Student_SchoolGrade3,44,, -nces/560147000454,2023,Count_Student_SchoolGrade3,5,, -nces/060429013779,2023,Count_Student_SchoolGrade4,9,, -nces/160153000605,2023,Count_Student_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_SchoolGrade4,87,, -nces/262895007802,2023,Count_Student_SchoolGrade4,96,, -nces/272520005369,2023,Count_Student_SchoolGrade4,15,, -nces/273239005353,2023,Count_Student_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_SchoolGrade4,5,, -nces/317458000209,2023,Count_Student_SchoolGrade4,21,, -nces/320006000670,2023,Count_Student_SchoolGrade4,36,, -nces/350018700811,2023,Count_Student_SchoolGrade4,34,, -nces/360007705767,2023,Count_Student_SchoolGrade4,15,, -nces/360010206477,2023,Count_Student_SchoolGrade4,63,, -nces/400957002918,2023,Count_Student_SchoolGrade4,615,, -nces/410674001907,2023,Count_Student_SchoolGrade4,1,, -nces/550004502575,2023,Count_Student_SchoolGrade4,57,, -nces/560147000454,2023,Count_Student_SchoolGrade4,7,, -nces/060429013779,2023,Count_Student_SchoolGrade5,9,, -nces/160153000605,2023,Count_Student_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_SchoolGrade5,67,, -nces/261884009043,2023,Count_Student_SchoolGrade5,296,, -nces/262895007802,2023,Count_Student_SchoolGrade5,99,, -nces/272520005369,2023,Count_Student_SchoolGrade5,21,, -nces/273239005353,2023,Count_Student_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_SchoolGrade5,7,, -nces/317458000209,2023,Count_Student_SchoolGrade5,21,, -nces/320006000670,2023,Count_Student_SchoolGrade5,24,, -nces/350018700811,2023,Count_Student_SchoolGrade5,42,, -nces/360007705767,2023,Count_Student_SchoolGrade5,5,, -nces/360010206477,2023,Count_Student_SchoolGrade5,53,, -nces/400957002918,2023,Count_Student_SchoolGrade5,624,, -nces/410674001907,2023,Count_Student_SchoolGrade5,3,, -nces/550004502575,2023,Count_Student_SchoolGrade5,45,, -nces/560147000454,2023,Count_Student_SchoolGrade5,6,, -nces/720003000010,2023,Count_Student_SchoolGrade5,1,, -nces/060429013779,2023,Count_Student_SchoolGrade6,11,, -nces/080258006836,2023,Count_Student_SchoolGrade6,16,, -nces/120144009033,2023,Count_Student_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_SchoolGrade6,95,, -nces/250732002639,2023,Count_Student_SchoolGrade6,289,, -nces/261884009043,2023,Count_Student_SchoolGrade6,322,, -nces/270015000652,2023,Count_Student_SchoolGrade6,17,, -nces/270819004622,2023,Count_Student_SchoolGrade6,109,, -nces/270819005118,2023,Count_Student_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_SchoolGrade6,24,, -nces/272520012756,2023,Count_Student_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_SchoolGrade6,8,, -nces/317458000209,2023,Count_Student_SchoolGrade6,25,, -nces/320006000756,2023,Count_Student_SchoolGrade6,25,, -nces/350018700811,2023,Count_Student_SchoolGrade6,85,, -nces/360007705767,2023,Count_Student_SchoolGrade6,31,, -nces/360010206477,2023,Count_Student_SchoolGrade6,62,, -nces/390487306154,2023,Count_Student_SchoolGrade6,1,, -nces/410674001907,2023,Count_Student_SchoolGrade6,3,, -nces/420009100597,2023,Count_Student_SchoolGrade6,29,, -nces/530486002475,2023,Count_Student_SchoolGrade6,58,, -nces/540135001603,2023,Count_Student_SchoolGrade6,79,, -nces/550004502575,2023,Count_Student_SchoolGrade6,62,, -nces/560147000454,2023,Count_Student_SchoolGrade6,6,, -nces/720003000010,2023,Count_Student_SchoolGrade6,57,, -nces/060429013779,2023,Count_Student_SchoolGrade7,20,, -nces/080258006836,2023,Count_Student_SchoolGrade7,21,, -nces/120144009033,2023,Count_Student_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_SchoolGrade7,83,, -nces/250732002639,2023,Count_Student_SchoolGrade7,296,, -nces/270002503396,2023,Count_Student_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_SchoolGrade7,17,, -nces/270819004622,2023,Count_Student_SchoolGrade7,140,, -nces/270819005118,2023,Count_Student_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_SchoolGrade7,25,, -nces/272520012756,2023,Count_Student_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_SchoolGrade7,12,, -nces/317458000209,2023,Count_Student_SchoolGrade7,24,, -nces/320006000756,2023,Count_Student_SchoolGrade7,25,, -nces/350018700811,2023,Count_Student_SchoolGrade7,80,, -nces/360007705767,2023,Count_Student_SchoolGrade7,10,, -nces/360010206477,2023,Count_Student_SchoolGrade7,53,, -nces/410674001907,2023,Count_Student_SchoolGrade7,6,, -nces/420009100597,2023,Count_Student_SchoolGrade7,65,, -nces/530486002475,2023,Count_Student_SchoolGrade7,58,, -nces/540135001603,2023,Count_Student_SchoolGrade7,103,, -nces/550004502575,2023,Count_Student_SchoolGrade7,47,, -nces/720003000010,2023,Count_Student_SchoolGrade7,64,, -nces/060429013779,2023,Count_Student_SchoolGrade8,35,, -nces/080258006836,2023,Count_Student_SchoolGrade8,37,, -nces/120144009033,2023,Count_Student_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_SchoolGrade8,97,, -nces/250732002639,2023,Count_Student_SchoolGrade8,359,, -nces/270002503396,2023,Count_Student_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_SchoolGrade8,24,, -nces/270819004622,2023,Count_Student_SchoolGrade8,141,, -nces/270819005118,2023,Count_Student_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_SchoolGrade8,49,, -nces/272520012756,2023,Count_Student_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_SchoolGrade8,7,, -nces/317458000209,2023,Count_Student_SchoolGrade8,24,, -nces/320006000756,2023,Count_Student_SchoolGrade8,21,, -nces/350018700811,2023,Count_Student_SchoolGrade8,83,, -nces/360007705767,2023,Count_Student_SchoolGrade8,10,, -nces/360010206477,2023,Count_Student_SchoolGrade8,45,, -nces/410674001907,2023,Count_Student_SchoolGrade8,6,, -nces/420009100597,2023,Count_Student_SchoolGrade8,109,, -nces/530486002475,2023,Count_Student_SchoolGrade8,47,, -nces/540135001603,2023,Count_Student_SchoolGrade8,108,, -nces/550004502575,2023,Count_Student_SchoolGrade8,50,, -nces/720003000010,2023,Count_Student_SchoolGrade8,43,, -nces/060429013779,2023,Count_Student_SchoolGrade9,35,, -nces/080258006836,2023,Count_Student_SchoolGrade9,32,, -nces/080336006756,2023,Count_Student_SchoolGrade9,10,, -nces/160153000605,2023,Count_Student_SchoolGrade9,1,, -nces/180004602162,2023,Count_Student_SchoolGrade9,116,, -nces/262016008622,2023,Count_Student_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_SchoolGrade9,18,, -nces/270819004415,2023,Count_Student_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_SchoolGrade9,5,, -nces/272385001044,2023,Count_Student_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_SchoolGrade9,27,, -nces/272520012756,2023,Count_Student_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_SchoolGrade9,18,, -nces/273351012806,2023,Count_Student_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_SchoolGrade9,18,, -nces/318009002335,2023,Count_Student_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_SchoolGrade9,1,, -nces/420009100597,2023,Count_Student_SchoolGrade9,238,, -nces/440090000492,2023,Count_Student_SchoolGrade9,126,, -nces/540135001603,2023,Count_Student_SchoolGrade9,111,, -nces/060429013779,2023,Count_Student_SchoolGrade1To8,105,, -nces/080258006836,2023,Count_Student_SchoolGrade1To8,74,, -nces/120144009033,2023,Count_Student_SchoolGrade1To8,0,, -nces/160153000605,2023,Count_Student_SchoolGrade1To8,0,, -nces/173081003429,2023,Count_Student_SchoolGrade1To8,118,, -nces/180004602162,2023,Count_Student_SchoolGrade1To8,718,, -nces/250732002639,2023,Count_Student_SchoolGrade1To8,944,, -nces/261884009043,2023,Count_Student_SchoolGrade1To8,618,, -nces/262895007802,2023,Count_Student_SchoolGrade1To8,469,, -nces/270002503396,2023,Count_Student_SchoolGrade1To8,0,, -nces/270002503397,2023,Count_Student_SchoolGrade1To8,0,, -nces/270015000652,2023,Count_Student_SchoolGrade1To8,58,, -nces/270819004622,2023,Count_Student_SchoolGrade1To8,390,, -nces/270819005118,2023,Count_Student_SchoolGrade1To8,0,, -nces/272385001044,2023,Count_Student_SchoolGrade1To8,0,, -nces/272520005369,2023,Count_Student_SchoolGrade1To8,73,, -nces/272520005370,2023,Count_Student_SchoolGrade1To8,98,, -nces/272520012756,2023,Count_Student_SchoolGrade1To8,0,, -nces/273239005351,2023,Count_Student_SchoolGrade1To8,0,, -nces/273239005353,2023,Count_Student_SchoolGrade1To8,0,, -nces/273351012806,2023,Count_Student_SchoolGrade1To8,0,, -nces/279144305446,2023,Count_Student_SchoolGrade1To8,29,, -nces/279144305447,2023,Count_Student_SchoolGrade1To8,19,, -nces/317458000209,2023,Count_Student_SchoolGrade1To8,177,, -nces/320006000670,2023,Count_Student_SchoolGrade1To8,141,, -nces/320006000756,2023,Count_Student_SchoolGrade1To8,71,, -nces/350018700811,2023,Count_Student_SchoolGrade1To8,378,, -nces/360007705767,2023,Count_Student_SchoolGrade1To8,126,, -nces/360010206477,2023,Count_Student_SchoolGrade1To8,463,, -nces/390487306154,2023,Count_Student_SchoolGrade1To8,1,, -nces/400957002918,2023,Count_Student_SchoolGrade1To8,1239,, -nces/410674001907,2023,Count_Student_SchoolGrade1To8,24,, -nces/420009100597,2023,Count_Student_SchoolGrade1To8,203,, -nces/530486002475,2023,Count_Student_SchoolGrade1To8,163,, -nces/540135001603,2023,Count_Student_SchoolGrade1To8,290,, -nces/550004502575,2023,Count_Student_SchoolGrade1To8,414,, -nces/560147000454,2023,Count_Student_SchoolGrade1To8,33,, -nces/720003000010,2023,Count_Student_SchoolGrade1To8,165,, -nces/060429013779,2023,Count_Student_SchoolGrade9To12,225,, -nces/080258006836,2023,Count_Student_SchoolGrade9To12,197,, -nces/080336006756,2023,Count_Student_SchoolGrade9To12,92,, -nces/160153000605,2023,Count_Student_SchoolGrade9To12,4,, -nces/180004602162,2023,Count_Student_SchoolGrade9To12,408,, -nces/200795002097,2023,Count_Student_SchoolGrade9To12,0,, -nces/262016008622,2023,Count_Student_SchoolGrade9To12,80,, -nces/270002502875,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002503396,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002503397,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002503554,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002503561,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002503562,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002504216,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002504476,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002504573,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002504823,2023,Count_Student_SchoolGrade9To12,0,, -nces/270002512817,2023,Count_Student_SchoolGrade9To12,0,, -nces/270015000652,2023,Count_Student_SchoolGrade9To12,72,, -nces/270819004415,2023,Count_Student_SchoolGrade9To12,34,, -nces/270819005118,2023,Count_Student_SchoolGrade9To12,0,, -nces/271503005356,2023,Count_Student_SchoolGrade9To12,35,, -nces/272385001044,2023,Count_Student_SchoolGrade9To12,1,, -nces/272520005371,2023,Count_Student_SchoolGrade9To12,182,, -nces/272520012756,2023,Count_Student_SchoolGrade9To12,0,, -nces/273239005352,2023,Count_Student_SchoolGrade9To12,111,, -nces/273351012806,2023,Count_Student_SchoolGrade9To12,0,, -nces/279144305447,2023,Count_Student_SchoolGrade9To12,163,, -nces/318009002335,2023,Count_Student_SchoolGrade9To12,0,, -nces/390487306154,2023,Count_Student_SchoolGrade9To12,1,, -nces/420009100597,2023,Count_Student_SchoolGrade9To12,900,, -nces/440090000492,2023,Count_Student_SchoolGrade9To12,360,, -nces/540135001603,2023,Count_Student_SchoolGrade9To12,379,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino,98,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino,66,, -nces/080336006756,2023,Count_Student_Male_HispanicOrLatino,15,, -nces/120144009033,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino,1,, -nces/173081003429,2023,Count_Student_Male_HispanicOrLatino,16,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino,24,, -nces/200795002097,2023,Count_Student_Male_HispanicOrLatino,32,, -nces/250732002639,2023,Count_Student_Male_HispanicOrLatino,326,, -nces/261884009043,2023,Count_Student_Male_HispanicOrLatino,11,, -nces/262016008622,2023,Count_Student_Male_HispanicOrLatino,17,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino,28,, -nces/270002502875,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002503396,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002503554,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002503561,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002503562,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002504216,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002504476,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002504573,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002504823,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270002512817,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/270819004415,2023,Count_Student_Male_HispanicOrLatino,2,, -nces/270819004622,2023,Count_Student_Male_HispanicOrLatino,49,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/271503005356,2023,Count_Student_Male_HispanicOrLatino,8,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino,5,, -nces/272520005370,2023,Count_Student_Male_HispanicOrLatino,2,, -nces/272520005371,2023,Count_Student_Male_HispanicOrLatino,9,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/273239005351,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/273239005352,2023,Count_Student_Male_HispanicOrLatino,6,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino,2,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino,8,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino,10,, -nces/317718002379,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/318009002335,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino,15,, -nces/320006000756,2023,Count_Student_Male_HispanicOrLatino,11,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino,19,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino,50,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino,41,, -nces/390487306154,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/400957002918,2023,Count_Student_Male_HispanicOrLatino,87,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino,3,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino,17,, -nces/440090000492,2023,Count_Student_Male_HispanicOrLatino,160,, -nces/530486002475,2023,Count_Student_Male_HispanicOrLatino,21,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino,3,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino,43,, -nces/550747003029,2023,Count_Student_Male_HispanicOrLatino,11,, -nces/550852002475,2023,Count_Student_Male_HispanicOrLatino,66,, -nces/550891002902,2023,Count_Student_Male_HispanicOrLatino,1,, -nces/551266002889,2023,Count_Student_Male_HispanicOrLatino,4,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino,0,, -nces/720003000010,2023,Count_Student_Male_HispanicOrLatino,78,, -nces/060429013779,2023,Count_Student_HispanicOrLatino,207,, -nces/080258006836,2023,Count_Student_HispanicOrLatino,154,, -nces/080336006756,2023,Count_Student_HispanicOrLatino,27,, -nces/120144009033,2023,Count_Student_HispanicOrLatino,0,, -nces/160153000605,2023,Count_Student_HispanicOrLatino,1,, -nces/173081003429,2023,Count_Student_HispanicOrLatino,23,, -nces/180004602162,2023,Count_Student_HispanicOrLatino,52,, -nces/200795002097,2023,Count_Student_HispanicOrLatino,90,, -nces/250732002639,2023,Count_Student_HispanicOrLatino,611,, -nces/261884009043,2023,Count_Student_HispanicOrLatino,23,, -nces/262016008622,2023,Count_Student_HispanicOrLatino,31,, -nces/262895007802,2023,Count_Student_HispanicOrLatino,49,, -nces/270002502875,2023,Count_Student_HispanicOrLatino,0,, -nces/270002503396,2023,Count_Student_HispanicOrLatino,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino,0,, -nces/270002503554,2023,Count_Student_HispanicOrLatino,0,, -nces/270002503561,2023,Count_Student_HispanicOrLatino,0,, -nces/270002503562,2023,Count_Student_HispanicOrLatino,0,, -nces/270002504216,2023,Count_Student_HispanicOrLatino,0,, -nces/270002504476,2023,Count_Student_HispanicOrLatino,0,, -nces/270002504573,2023,Count_Student_HispanicOrLatino,0,, -nces/270002504823,2023,Count_Student_HispanicOrLatino,0,, -nces/270002512817,2023,Count_Student_HispanicOrLatino,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino,5,, -nces/270819004415,2023,Count_Student_HispanicOrLatino,6,, -nces/270819004622,2023,Count_Student_HispanicOrLatino,102,, -nces/270819005118,2023,Count_Student_HispanicOrLatino,0,, -nces/271503005356,2023,Count_Student_HispanicOrLatino,15,, -nces/272385001044,2023,Count_Student_HispanicOrLatino,0,, -nces/272520005369,2023,Count_Student_HispanicOrLatino,9,, -nces/272520005370,2023,Count_Student_HispanicOrLatino,11,, -nces/272520005371,2023,Count_Student_HispanicOrLatino,30,, -nces/272520012756,2023,Count_Student_HispanicOrLatino,0,, -nces/273239005351,2023,Count_Student_HispanicOrLatino,0,, -nces/273239005352,2023,Count_Student_HispanicOrLatino,14,, -nces/273239005353,2023,Count_Student_HispanicOrLatino,0,, -nces/273351012806,2023,Count_Student_HispanicOrLatino,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino,3,, -nces/279144305447,2023,Count_Student_HispanicOrLatino,16,, -nces/317458000209,2023,Count_Student_HispanicOrLatino,18,, -nces/317718002379,2023,Count_Student_HispanicOrLatino,0,, -nces/318009002335,2023,Count_Student_HispanicOrLatino,0,, -nces/320006000670,2023,Count_Student_HispanicOrLatino,32,, -nces/320006000756,2023,Count_Student_HispanicOrLatino,21,, -nces/350018700811,2023,Count_Student_HispanicOrLatino,26,, -nces/360007705767,2023,Count_Student_HispanicOrLatino,88,, -nces/360010206477,2023,Count_Student_HispanicOrLatino,62,, -nces/390487306154,2023,Count_Student_HispanicOrLatino,0,, -nces/400957002918,2023,Count_Student_HispanicOrLatino,177,, -nces/410674001907,2023,Count_Student_HispanicOrLatino,7,, -nces/420009100597,2023,Count_Student_HispanicOrLatino,38,, -nces/440090000492,2023,Count_Student_HispanicOrLatino,272,, -nces/530486002475,2023,Count_Student_HispanicOrLatino,30,, -nces/540135001603,2023,Count_Student_HispanicOrLatino,11,, -nces/550004502575,2023,Count_Student_HispanicOrLatino,106,, -nces/550747003029,2023,Count_Student_HispanicOrLatino,16,, -nces/550852002475,2023,Count_Student_HispanicOrLatino,135,, -nces/550891002902,2023,Count_Student_HispanicOrLatino,4,, -nces/551266002889,2023,Count_Student_HispanicOrLatino,9,, -nces/560147000454,2023,Count_Student_HispanicOrLatino,0,, -nces/720003000010,2023,Count_Student_HispanicOrLatino,165,, -nces/060429013779,2023,Count_Student_Kindergarten,6,, -nces/173081003429,2023,Count_Student_Kindergarten,29,, -nces/180004602162,2023,Count_Student_Kindergarten,87,, -nces/262895007802,2023,Count_Student_Kindergarten,105,, -nces/272520005369,2023,Count_Student_Kindergarten,9,, -nces/273239005353,2023,Count_Student_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Kindergarten,3,, -nces/317458000209,2023,Count_Student_Kindergarten,19,, -nces/320006000670,2023,Count_Student_Kindergarten,27,, -nces/360007705767,2023,Count_Student_Kindergarten,14,, -nces/360010206477,2023,Count_Student_Kindergarten,50,, -nces/410674001907,2023,Count_Student_Kindergarten,1,, -nces/550004502575,2023,Count_Student_Kindergarten,56,, -nces/560147000454,2023,Count_Student_Kindergarten,3,, -nces/060429013779,2023,Count_Student_Male,153,, -nces/080258006836,2023,Count_Student_Male,120,, -nces/080336006756,2023,Count_Student_Male,51,, -nces/120144009033,2023,Count_Student_Male,0,, -nces/160153000605,2023,Count_Student_Male,4,, -nces/173081003429,2023,Count_Student_Male,79,, -nces/180004602162,2023,Count_Student_Male,583,, -nces/200795002097,2023,Count_Student_Male,63,, -nces/250732002639,2023,Count_Student_Male,498,, -nces/261884009043,2023,Count_Student_Male,310,, -nces/262016008622,2023,Count_Student_Male,47,, -nces/262895007802,2023,Count_Student_Male,266,, -nces/270002502875,2023,Count_Student_Male,0,, -nces/270002503396,2023,Count_Student_Male,0,, -nces/270002503397,2023,Count_Student_Male,0,, -nces/270002503554,2023,Count_Student_Male,0,, -nces/270002503561,2023,Count_Student_Male,0,, -nces/270002503562,2023,Count_Student_Male,0,, -nces/270002504216,2023,Count_Student_Male,0,, -nces/270002504476,2023,Count_Student_Male,0,, -nces/270002504573,2023,Count_Student_Male,0,, -nces/270002504823,2023,Count_Student_Male,0,, -nces/270002512817,2023,Count_Student_Male,0,, -nces/270015000652,2023,Count_Student_Male,56,, -nces/270819004415,2023,Count_Student_Male,18,, -nces/270819004622,2023,Count_Student_Male,181,, -nces/270819005118,2023,Count_Student_Male,0,, -nces/271503005356,2023,Count_Student_Male,17,, -nces/272385001044,2023,Count_Student_Male,1,, -nces/272520005369,2023,Count_Student_Male,39,, -nces/272520005370,2023,Count_Student_Male,41,, -nces/272520005371,2023,Count_Student_Male,77,, -nces/272520012756,2023,Count_Student_Male,0,, -nces/273239005351,2023,Count_Student_Male,0,, -nces/273239005352,2023,Count_Student_Male,51,, -nces/273239005353,2023,Count_Student_Male,0,, -nces/273351012806,2023,Count_Student_Male,0,, -nces/279144305446,2023,Count_Student_Male,15,, -nces/279144305447,2023,Count_Student_Male,83,, -nces/317458000209,2023,Count_Student_Male,95,, -nces/317718002379,2023,Count_Student_Male,0,, -nces/318009002335,2023,Count_Student_Male,0,, -nces/320006000670,2023,Count_Student_Male,83,, -nces/320006000756,2023,Count_Student_Male,35,, -nces/350018700811,2023,Count_Student_Male,200,, -nces/360007705767,2023,Count_Student_Male,93,, -nces/360010206477,2023,Count_Student_Male,266,, -nces/390487306154,2023,Count_Student_Male,1,, -nces/400957002918,2023,Count_Student_Male,651,, -nces/410674001907,2023,Count_Student_Male,10,, -nces/420009100597,2023,Count_Student_Male,482,, -nces/440090000492,2023,Count_Student_Male,201,, -nces/530486002475,2023,Count_Student_Male,95,, -nces/540135001603,2023,Count_Student_Male,354,, -nces/550004502575,2023,Count_Student_Male,258,, -nces/550747003029,2023,Count_Student_Male,145,, -nces/550852002475,2023,Count_Student_Male,310,, -nces/550891002902,2023,Count_Student_Male,69,, -nces/551266002889,2023,Count_Student_Male,16,, -nces/560147000454,2023,Count_Student_Male,18,, -nces/720003000010,2023,Count_Student_Male,78,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -nces/080336006756,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/120144009033,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/173081003429,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/200795002097,2023,Count_Student_HawaiianNativeOrPacificIslander,1,, -nces/250732002639,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/261884009043,2023,Count_Student_HawaiianNativeOrPacificIslander,1,, -nces/262016008622,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002502875,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002503396,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002503554,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002503561,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002503562,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002504216,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002504476,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002504573,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002504823,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270002512817,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270819004415,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/270819004622,2023,Count_Student_HawaiianNativeOrPacificIslander,1,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/271503005356,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/272520005370,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/272520005371,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/273239005351,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/273239005352,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/317718002379,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/318009002335,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -nces/320006000756,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander,4,, -nces/390487306154,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/400957002918,2023,Count_Student_HawaiianNativeOrPacificIslander,3,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander,2,, -nces/440090000492,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/530486002475,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/550747003029,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/550852002475,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/550891002902,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/551266002889,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/720003000010,2023,Count_Student_HawaiianNativeOrPacificIslander,0,, -nces/262895007802,2023,Count_Student_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_PreKindergarten,37,, -nces/550004502575,2023,Count_Student_PreKindergarten,42,, -nces/550747003029,2023,Count_Student_PreKindergarten,290,, -nces/550852002475,2023,Count_Student_PreKindergarten,594,, -nces/550891002902,2023,Count_Student_PreKindergarten,120,, -nces/551266002889,2023,Count_Student_PreKindergarten,40,, -nces/060429013779,2023,Count_Student_ReducedLunch,34,, -nces/080336006756,2023,Count_Student_ReducedLunch,4,, -nces/180004602162,2023,Count_Student_ReducedLunch,41,, -nces/261884009043,2023,Count_Student_ReducedLunch,29,, -nces/262016008622,2023,Count_Student_ReducedLunch,0,, -nces/262895007802,2023,Count_Student_ReducedLunch,13,, -nces/270015000652,2023,Count_Student_ReducedLunch,10,, -nces/270819004415,2023,Count_Student_ReducedLunch,2,, -nces/270819004622,2023,Count_Student_ReducedLunch,17,, -nces/271503005356,2023,Count_Student_ReducedLunch,3,, -nces/272520005369,2023,Count_Student_ReducedLunch,7,, -nces/272520005370,2023,Count_Student_ReducedLunch,9,, -nces/272520005371,2023,Count_Student_ReducedLunch,10,, -nces/273239005352,2023,Count_Student_ReducedLunch,10,, -nces/279144305446,2023,Count_Student_ReducedLunch,0,, -nces/279144305447,2023,Count_Student_ReducedLunch,8,, -nces/317458000209,2023,Count_Student_ReducedLunch,11,, -nces/320006000670,2023,Count_Student_ReducedLunch,3,, -nces/320006000756,2023,Count_Student_ReducedLunch,1,, -nces/350018700811,2023,Count_Student_ReducedLunch,30,, -nces/360007705767,2023,Count_Student_ReducedLunch,0,, -nces/360010206477,2023,Count_Student_ReducedLunch,12,, -nces/420009100597,2023,Count_Student_ReducedLunch,6,, -nces/440090000492,2023,Count_Student_ReducedLunch,22,, -nces/530486002475,2023,Count_Student_ReducedLunch,0,, -nces/550004502575,2023,Count_Student_ReducedLunch,0,, -nces/550747003029,2023,Count_Student_ReducedLunch,8,, -nces/550852002475,2023,Count_Student_ReducedLunch,2,, -nces/550891002902,2023,Count_Student_ReducedLunch,2,, -nces/551266002889,2023,Count_Student_ReducedLunch,3,, -nces/560147000454,2023,Count_Student_ReducedLunch,3,, -nces/720003000010,2023,Count_Student_ReducedLunch,11,, -nces/060429013779,2023,Count_Student,336,, -nces/080258006836,2023,Count_Student,271,, -nces/080336006756,2023,Count_Student,92,, -nces/120144009033,2023,Count_Student,0,, -nces/160153000605,2023,Count_Student,4,, -nces/173081003429,2023,Count_Student,147,, -nces/180004602162,2023,Count_Student,1213,, -nces/200795002097,2023,Count_Student,188,, -nces/250732002639,2023,Count_Student,944,, -nces/261884009043,2023,Count_Student,618,, -nces/262016008622,2023,Count_Student,80,, -nces/262895007802,2023,Count_Student,574,, -nces/270002502875,2023,Count_Student,0,, -nces/270002503396,2023,Count_Student,0,, -nces/270002503397,2023,Count_Student,0,, -nces/270002503554,2023,Count_Student,0,, -nces/270002503561,2023,Count_Student,0,, -nces/270002503562,2023,Count_Student,0,, -nces/270002504216,2023,Count_Student,0,, -nces/270002504476,2023,Count_Student,0,, -nces/270002504573,2023,Count_Student,0,, -nces/270002504823,2023,Count_Student,0,, -nces/270002512817,2023,Count_Student,0,, -nces/270015000652,2023,Count_Student,130,, -nces/270819004415,2023,Count_Student,34,, -nces/270819004622,2023,Count_Student,390,, -nces/270819005118,2023,Count_Student,0,, -nces/271503005356,2023,Count_Student,35,, -nces/272385001044,2023,Count_Student,1,, -nces/272520005369,2023,Count_Student,82,, -nces/272520005370,2023,Count_Student,98,, -nces/272520005371,2023,Count_Student,182,, -nces/272520012756,2023,Count_Student,0,, -nces/273239005351,2023,Count_Student,0,, -nces/273239005352,2023,Count_Student,111,, -nces/273239005353,2023,Count_Student,0,, -nces/273351012806,2023,Count_Student,0,, -nces/279144305446,2023,Count_Student,32,, -nces/279144305447,2023,Count_Student,182,, -nces/317458000209,2023,Count_Student,196,, -nces/317718002379,2023,Count_Student,0,, -nces/318009002335,2023,Count_Student,0,, -nces/320006000670,2023,Count_Student,168,, -nces/320006000756,2023,Count_Student,71,, -nces/350018700811,2023,Count_Student,378,, -nces/360007705767,2023,Count_Student,177,, -nces/360010206477,2023,Count_Student,513,, -nces/390487306154,2023,Count_Student,2,, -nces/400957002918,2023,Count_Student,1239,, -nces/410674001907,2023,Count_Student,25,, -nces/420009100597,2023,Count_Student,1103,, -nces/440090000492,2023,Count_Student,360,, -nces/530486002475,2023,Count_Student,163,, -nces/540135001603,2023,Count_Student,669,, -nces/550004502575,2023,Count_Student,512,, -nces/550747003029,2023,Count_Student,290,, -nces/550852002475,2023,Count_Student,594,, -nces/550891002902,2023,Count_Student,120,, -nces/551266002889,2023,Count_Student,40,, -nces/560147000454,2023,Count_Student,36,, -nces/720003000010,2023,Count_Student,165,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces,22,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces,9,, -nces/080336006756,2023,Count_Student_TwoOrMoreRaces,2,, -nces/120144009033,2023,Count_Student_TwoOrMoreRaces,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces,0,, -nces/173081003429,2023,Count_Student_TwoOrMoreRaces,11,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces,28,, -nces/200795002097,2023,Count_Student_TwoOrMoreRaces,6,, -nces/250732002639,2023,Count_Student_TwoOrMoreRaces,22,, -nces/261884009043,2023,Count_Student_TwoOrMoreRaces,19,, -nces/262016008622,2023,Count_Student_TwoOrMoreRaces,2,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces,61,, -nces/270002502875,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002503396,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002503554,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002503561,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002503562,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002504216,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002504476,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002504573,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002504823,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270002512817,2023,Count_Student_TwoOrMoreRaces,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces,4,, -nces/270819004415,2023,Count_Student_TwoOrMoreRaces,5,, -nces/270819004622,2023,Count_Student_TwoOrMoreRaces,23,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces,0,, -nces/271503005356,2023,Count_Student_TwoOrMoreRaces,5,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces,0,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces,8,, -nces/272520005370,2023,Count_Student_TwoOrMoreRaces,10,, -nces/272520005371,2023,Count_Student_TwoOrMoreRaces,12,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces,0,, -nces/273239005351,2023,Count_Student_TwoOrMoreRaces,0,, -nces/273239005352,2023,Count_Student_TwoOrMoreRaces,14,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces,0,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces,4,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces,13,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces,0,, -nces/317718002379,2023,Count_Student_TwoOrMoreRaces,0,, -nces/318009002335,2023,Count_Student_TwoOrMoreRaces,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces,12,, -nces/320006000756,2023,Count_Student_TwoOrMoreRaces,5,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces,6,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces,37,, -nces/390487306154,2023,Count_Student_TwoOrMoreRaces,0,, -nces/400957002918,2023,Count_Student_TwoOrMoreRaces,114,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces,3,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces,13,, -nces/440090000492,2023,Count_Student_TwoOrMoreRaces,10,, -nces/530486002475,2023,Count_Student_TwoOrMoreRaces,23,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces,27,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces,52,, -nces/550747003029,2023,Count_Student_TwoOrMoreRaces,14,, -nces/550852002475,2023,Count_Student_TwoOrMoreRaces,49,, -nces/550891002902,2023,Count_Student_TwoOrMoreRaces,4,, -nces/551266002889,2023,Count_Student_TwoOrMoreRaces,5,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces,0,, -nces/720003000010,2023,Count_Student_TwoOrMoreRaces,0,, -nces/200795002097,2023,Count_Student_UngradedClasses,188,, -nces/320006000670,2023,Count_Student_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_UngradedClasses,0,, -nces/060429013779,2023,Count_Student_White,72,, -nces/080258006836,2023,Count_Student_White,91,, -nces/080336006756,2023,Count_Student_White,57,, -nces/120144009033,2023,Count_Student_White,0,, -nces/160153000605,2023,Count_Student_White,3,, -nces/173081003429,2023,Count_Student_White,0,, -nces/180004602162,2023,Count_Student_White,3,, -nces/200795002097,2023,Count_Student_White,28,, -nces/250732002639,2023,Count_Student_White,255,, -nces/261884009043,2023,Count_Student_White,553,, -nces/262016008622,2023,Count_Student_White,7,, -nces/262895007802,2023,Count_Student_White,326,, -nces/270002502875,2023,Count_Student_White,0,, -nces/270002503396,2023,Count_Student_White,0,, -nces/270002503397,2023,Count_Student_White,0,, -nces/270002503554,2023,Count_Student_White,0,, -nces/270002503561,2023,Count_Student_White,0,, -nces/270002503562,2023,Count_Student_White,0,, -nces/270002504216,2023,Count_Student_White,0,, -nces/270002504476,2023,Count_Student_White,0,, -nces/270002504573,2023,Count_Student_White,0,, -nces/270002504823,2023,Count_Student_White,0,, -nces/270002512817,2023,Count_Student_White,0,, -nces/270015000652,2023,Count_Student_White,120,, -nces/270819004415,2023,Count_Student_White,17,, -nces/270819004622,2023,Count_Student_White,213,, -nces/270819005118,2023,Count_Student_White,0,, -nces/271503005356,2023,Count_Student_White,12,, -nces/272385001044,2023,Count_Student_White,1,, -nces/272520005369,2023,Count_Student_White,12,, -nces/272520005370,2023,Count_Student_White,30,, -nces/272520005371,2023,Count_Student_White,49,, -nces/272520012756,2023,Count_Student_White,0,, -nces/273239005351,2023,Count_Student_White,0,, -nces/273239005352,2023,Count_Student_White,55,, -nces/273239005353,2023,Count_Student_White,0,, -nces/273351012806,2023,Count_Student_White,0,, -nces/279144305446,2023,Count_Student_White,22,, -nces/279144305447,2023,Count_Student_White,142,, -nces/317458000209,2023,Count_Student_White,176,, -nces/317718002379,2023,Count_Student_White,0,, -nces/318009002335,2023,Count_Student_White,0,, -nces/320006000670,2023,Count_Student_White,4,, -nces/320006000756,2023,Count_Student_White,1,, -nces/350018700811,2023,Count_Student_White,306,, -nces/360007705767,2023,Count_Student_White,36,, -nces/360010206477,2023,Count_Student_White,120,, -nces/390487306154,2023,Count_Student_White,2,, -nces/400957002918,2023,Count_Student_White,689,, -nces/410674001907,2023,Count_Student_White,10,, -nces/420009100597,2023,Count_Student_White,997,, -nces/440090000492,2023,Count_Student_White,14,, -nces/530486002475,2023,Count_Student_White,87,, -nces/540135001603,2023,Count_Student_White,619,, -nces/550004502575,2023,Count_Student_White,30,, -nces/550747003029,2023,Count_Student_White,249,, -nces/550852002475,2023,Count_Student_White,266,, -nces/550891002902,2023,Count_Student_White,105,, -nces/551266002889,2023,Count_Student_White,23,, -nces/560147000454,2023,Count_Student_White,36,, -nces/720003000010,2023,Count_Student_White,0,, -nces/060429013779,2023,Count_Student_Female_Black,11,, -nces/080258006836,2023,Count_Student_Female_Black,5,, -nces/080336006756,2023,Count_Student_Female_Black,1,, -nces/120144009033,2023,Count_Student_Female_Black,0,, -nces/160153000605,2023,Count_Student_Female_Black,0,, -nces/173081003429,2023,Count_Student_Female_Black,55,, -nces/180004602162,2023,Count_Student_Female_Black,582,, -nces/200795002097,2023,Count_Student_Female_Black,39,, -nces/250732002639,2023,Count_Student_Female_Black,17,, -nces/261884009043,2023,Count_Student_Female_Black,1,, -nces/262016008622,2023,Count_Student_Female_Black,15,, -nces/262895007802,2023,Count_Student_Female_Black,40,, -nces/270002502875,2023,Count_Student_Female_Black,0,, -nces/270002503396,2023,Count_Student_Female_Black,0,, -nces/270002503397,2023,Count_Student_Female_Black,0,, -nces/270002503554,2023,Count_Student_Female_Black,0,, -nces/270002503561,2023,Count_Student_Female_Black,0,, -nces/270002503562,2023,Count_Student_Female_Black,0,, -nces/270002504216,2023,Count_Student_Female_Black,0,, -nces/270002504476,2023,Count_Student_Female_Black,0,, -nces/270002504573,2023,Count_Student_Female_Black,0,, -nces/270002504823,2023,Count_Student_Female_Black,0,, -nces/270002512817,2023,Count_Student_Female_Black,0,, -nces/270015000652,2023,Count_Student_Female_Black,0,, -nces/270819004415,2023,Count_Student_Female_Black,1,, -nces/270819004622,2023,Count_Student_Female_Black,19,, -nces/270819005118,2023,Count_Student_Female_Black,0,, -nces/271503005356,2023,Count_Student_Female_Black,2,, -nces/272385001044,2023,Count_Student_Female_Black,0,, -nces/272520005369,2023,Count_Student_Female_Black,18,, -nces/272520005370,2023,Count_Student_Female_Black,15,, -nces/272520005371,2023,Count_Student_Female_Black,34,, -nces/272520012756,2023,Count_Student_Female_Black,0,, -nces/273239005351,2023,Count_Student_Female_Black,0,, -nces/273239005352,2023,Count_Student_Female_Black,11,, -nces/273239005353,2023,Count_Student_Female_Black,0,, -nces/273351012806,2023,Count_Student_Female_Black,0,, -nces/279144305446,2023,Count_Student_Female_Black,0,, -nces/279144305447,2023,Count_Student_Female_Black,3,, -nces/317458000209,2023,Count_Student_Female_Black,1,, -nces/317718002379,2023,Count_Student_Female_Black,0,, -nces/318009002335,2023,Count_Student_Female_Black,0,, -nces/320006000670,2023,Count_Student_Female_Black,58,, -nces/320006000756,2023,Count_Student_Female_Black,20,, -nces/350018700811,2023,Count_Student_Female_Black,12,, -nces/360007705767,2023,Count_Student_Female_Black,15,, -nces/360010206477,2023,Count_Student_Female_Black,8,, -nces/390487306154,2023,Count_Student_Female_Black,0,, -nces/400957002918,2023,Count_Student_Female_Black,47,, -nces/410674001907,2023,Count_Student_Female_Black,0,, -nces/420009100597,2023,Count_Student_Female_Black,30,, -nces/440090000492,2023,Count_Student_Female_Black,31,, -nces/530486002475,2023,Count_Student_Female_Black,0,, -nces/540135001603,2023,Count_Student_Female_Black,7,, -nces/550004502575,2023,Count_Student_Female_Black,155,, -nces/550747003029,2023,Count_Student_Female_Black,1,, -nces/550852002475,2023,Count_Student_Female_Black,46,, -nces/550891002902,2023,Count_Student_Female_Black,0,, -nces/551266002889,2023,Count_Student_Female_Black,2,, -nces/560147000454,2023,Count_Student_Female_Black,0,, -nces/720003000010,2023,Count_Student_Female_Black,0,, -nces/060429013779,2023,Count_Student_Male_Black,7,, -nces/080258006836,2023,Count_Student_Male_Black,2,, -nces/080336006756,2023,Count_Student_Male_Black,3,, -nces/120144009033,2023,Count_Student_Male_Black,0,, -nces/160153000605,2023,Count_Student_Male_Black,0,, -nces/173081003429,2023,Count_Student_Male_Black,57,, -nces/180004602162,2023,Count_Student_Male_Black,548,, -nces/200795002097,2023,Count_Student_Male_Black,19,, -nces/250732002639,2023,Count_Student_Male_Black,28,, -nces/261884009043,2023,Count_Student_Male_Black,7,, -nces/262016008622,2023,Count_Student_Male_Black,24,, -nces/262895007802,2023,Count_Student_Male_Black,34,, -nces/270002502875,2023,Count_Student_Male_Black,0,, -nces/270002503396,2023,Count_Student_Male_Black,0,, -nces/270002503397,2023,Count_Student_Male_Black,0,, -nces/270002503554,2023,Count_Student_Male_Black,0,, -nces/270002503561,2023,Count_Student_Male_Black,0,, -nces/270002503562,2023,Count_Student_Male_Black,0,, -nces/270002504216,2023,Count_Student_Male_Black,0,, -nces/270002504476,2023,Count_Student_Male_Black,0,, -nces/270002504573,2023,Count_Student_Male_Black,0,, -nces/270002504823,2023,Count_Student_Male_Black,0,, -nces/270002512817,2023,Count_Student_Male_Black,0,, -nces/270015000652,2023,Count_Student_Male_Black,0,, -nces/270819004415,2023,Count_Student_Male_Black,1,, -nces/270819004622,2023,Count_Student_Male_Black,20,, -nces/270819005118,2023,Count_Student_Male_Black,0,, -nces/271503005356,2023,Count_Student_Male_Black,0,, -nces/272385001044,2023,Count_Student_Male_Black,0,, -nces/272520005369,2023,Count_Student_Male_Black,16,, -nces/272520005370,2023,Count_Student_Male_Black,16,, -nces/272520005371,2023,Count_Student_Male_Black,24,, -nces/272520012756,2023,Count_Student_Male_Black,0,, -nces/273239005351,2023,Count_Student_Male_Black,0,, -nces/273239005352,2023,Count_Student_Male_Black,9,, -nces/273239005353,2023,Count_Student_Male_Black,0,, -nces/273351012806,2023,Count_Student_Male_Black,0,, -nces/279144305446,2023,Count_Student_Male_Black,0,, -nces/279144305447,2023,Count_Student_Male_Black,1,, -nces/317458000209,2023,Count_Student_Male_Black,1,, -nces/317718002379,2023,Count_Student_Male_Black,0,, -nces/318009002335,2023,Count_Student_Male_Black,0,, -nces/320006000670,2023,Count_Student_Male_Black,59,, -nces/320006000756,2023,Count_Student_Male_Black,22,, -nces/350018700811,2023,Count_Student_Male_Black,16,, -nces/360007705767,2023,Count_Student_Male_Black,17,, -nces/360010206477,2023,Count_Student_Male_Black,6,, -nces/390487306154,2023,Count_Student_Male_Black,0,, -nces/400957002918,2023,Count_Student_Male_Black,60,, -nces/410674001907,2023,Count_Student_Male_Black,0,, -nces/420009100597,2023,Count_Student_Male_Black,19,, -nces/440090000492,2023,Count_Student_Male_Black,20,, -nces/530486002475,2023,Count_Student_Male_Black,2,, -nces/540135001603,2023,Count_Student_Male_Black,5,, -nces/550004502575,2023,Count_Student_Male_Black,169,, -nces/550747003029,2023,Count_Student_Male_Black,1,, -nces/550852002475,2023,Count_Student_Male_Black,60,, -nces/550891002902,2023,Count_Student_Male_Black,2,, -nces/551266002889,2023,Count_Student_Male_Black,0,, -nces/560147000454,2023,Count_Student_Male_Black,0,, -nces/720003000010,2023,Count_Student_Male_Black,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Asian_SchoolGrade1,8,, -nces/272520005369,2023,Count_Student_Asian_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Asian_SchoolGrade1,1,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade1,32,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_Female_SchoolGrade1,18,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade1,51,, -nces/262895007802,2023,Count_Student_Female_SchoolGrade1,47,, -nces/272520005369,2023,Count_Student_Female_SchoolGrade1,5,, -nces/273239005353,2023,Count_Student_Female_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade1,12,, -nces/320006000670,2023,Count_Student_Female_SchoolGrade1,15,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade1,9,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade1,11,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade1,29,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade1,1,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade1,31,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade1,3,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade1,2,, -nces/173081003429,2023,Count_Student_Male_SchoolGrade1,19,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade1,52,, -nces/262895007802,2023,Count_Student_Male_SchoolGrade1,38,, -nces/272520005369,2023,Count_Student_Male_SchoolGrade1,4,, -nces/273239005353,2023,Count_Student_Male_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade1,2,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade1,8,, -nces/320006000670,2023,Count_Student_Male_SchoolGrade1,15,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade1,8,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade1,6,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade1,33,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade1,28,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade1,2,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade10,37,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade10,24,, -nces/080336006756,2023,Count_Student_Female_SchoolGrade10,10,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade10,44,, -nces/262016008622,2023,Count_Student_Female_SchoolGrade10,3,, -nces/270002502875,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade10,8,, -nces/270819004415,2023,Count_Student_Female_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_SchoolGrade10,3,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_SchoolGrade10,22,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_SchoolGrade10,8,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade10,15,, -nces/318009002335,2023,Count_Student_Female_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade10,127,, -nces/440090000492,2023,Count_Student_Female_SchoolGrade10,38,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade10,48,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade10,28,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade10,27,, -nces/080336006756,2023,Count_Student_Male_SchoolGrade10,14,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade10,3,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade10,59,, -nces/262016008622,2023,Count_Student_Male_SchoolGrade10,5,, -nces/270002502875,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade10,2,, -nces/270819004415,2023,Count_Student_Male_SchoolGrade10,1,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_SchoolGrade10,3,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_SchoolGrade10,21,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_SchoolGrade10,14,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade10,17,, -nces/318009002335,2023,Count_Student_Male_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade10,98,, -nces/440090000492,2023,Count_Student_Male_SchoolGrade10,46,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade10,52,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade11,34,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade11,40,, -nces/080336006756,2023,Count_Student_Female_SchoolGrade11,16,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade11,59,, -nces/262016008622,2023,Count_Student_Female_SchoolGrade11,11,, -nces/270002502875,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade11,11,, -nces/270819004415,2023,Count_Student_Female_SchoolGrade11,1,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_SchoolGrade11,6,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_SchoolGrade11,26,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_SchoolGrade11,19,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade11,27,, -nces/318009002335,2023,Count_Student_Female_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade11,129,, -nces/440090000492,2023,Count_Student_Female_SchoolGrade11,32,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade11,48,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade11,24,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade11,24,, -nces/080336006756,2023,Count_Student_Male_SchoolGrade11,16,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade11,42,, -nces/262016008622,2023,Count_Student_Male_SchoolGrade11,14,, -nces/270002502875,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade11,13,, -nces/270819004415,2023,Count_Student_Male_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_SchoolGrade11,6,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_SchoolGrade11,12,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_SchoolGrade11,14,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade11,14,, -nces/318009002335,2023,Count_Student_Male_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade11,97,, -nces/440090000492,2023,Count_Student_Male_SchoolGrade11,49,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade11,39,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade12,41,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade12,28,, -nces/080336006756,2023,Count_Student_Female_SchoolGrade12,11,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade12,46,, -nces/200795002097,2023,Count_Student_Female_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_SchoolGrade12,19,, -nces/270002502875,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade12,12,, -nces/270819004415,2023,Count_Student_Female_SchoolGrade12,15,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_SchoolGrade12,7,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_SchoolGrade12,46,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_SchoolGrade12,21,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade12,37,, -nces/318009002335,2023,Count_Student_Female_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade12,122,, -nces/440090000492,2023,Count_Student_Female_SchoolGrade12,31,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade12,32,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade12,24,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade12,22,, -nces/080336006756,2023,Count_Student_Male_SchoolGrade12,13,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade12,42,, -nces/200795002097,2023,Count_Student_Male_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_SchoolGrade12,28,, -nces/270002502875,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade12,8,, -nces/270819004415,2023,Count_Student_Male_SchoolGrade12,17,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_SchoolGrade12,5,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade12,1,, -nces/272520005371,2023,Count_Student_Male_SchoolGrade12,28,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_SchoolGrade12,17,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade12,35,, -nces/318009002335,2023,Count_Student_Male_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade12,89,, -nces/440090000492,2023,Count_Student_Male_SchoolGrade12,35,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade12,49,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade2,2,, -nces/173081003429,2023,Count_Student_Female_SchoolGrade2,22,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade2,50,, -nces/262895007802,2023,Count_Student_Female_SchoolGrade2,49,, -nces/272520005369,2023,Count_Student_Female_SchoolGrade2,8,, -nces/273239005353,2023,Count_Student_Female_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade2,9,, -nces/320006000670,2023,Count_Student_Female_SchoolGrade2,10,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade2,8,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade2,11,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade2,30,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade2,1,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade2,22,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade2,2,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade2,4,, -nces/173081003429,2023,Count_Student_Male_SchoolGrade2,17,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade2,51,, -nces/262895007802,2023,Count_Student_Male_SchoolGrade2,38,, -nces/272520005369,2023,Count_Student_Male_SchoolGrade2,5,, -nces/273239005353,2023,Count_Student_Male_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade2,1,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade2,13,, -nces/320006000670,2023,Count_Student_Male_SchoolGrade2,17,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade2,7,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade2,12,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade2,31,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade2,1,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade2,28,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade2,2,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade3,6,, -nces/173081003429,2023,Count_Student_Female_SchoolGrade3,16,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade3,52,, -nces/262895007802,2023,Count_Student_Female_SchoolGrade3,54,, -nces/272520005369,2023,Count_Student_Female_SchoolGrade3,9,, -nces/273239005353,2023,Count_Student_Female_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade3,2,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade3,11,, -nces/320006000670,2023,Count_Student_Female_SchoolGrade3,10,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade3,12,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade3,5,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade3,31,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade3,21,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade3,6,, -nces/173081003429,2023,Count_Student_Male_SchoolGrade3,26,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade3,33,, -nces/262895007802,2023,Count_Student_Male_SchoolGrade3,48,, -nces/272520005369,2023,Count_Student_Male_SchoolGrade3,6,, -nces/273239005353,2023,Count_Student_Male_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade3,4,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade3,9,, -nces/320006000670,2023,Count_Student_Male_SchoolGrade3,14,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade3,10,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade3,10,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade3,33,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade3,23,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade3,5,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade4,7,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade4,46,, -nces/262895007802,2023,Count_Student_Female_SchoolGrade4,53,, -nces/272520005369,2023,Count_Student_Female_SchoolGrade4,10,, -nces/273239005353,2023,Count_Student_Female_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade4,3,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade4,10,, -nces/320006000670,2023,Count_Student_Female_SchoolGrade4,19,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade4,19,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade4,8,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade4,35,, -nces/400957002918,2023,Count_Student_Female_SchoolGrade4,296,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade4,1,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade4,27,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade4,5,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade4,2,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade4,41,, -nces/262895007802,2023,Count_Student_Male_SchoolGrade4,43,, -nces/272520005369,2023,Count_Student_Male_SchoolGrade4,5,, -nces/273239005353,2023,Count_Student_Male_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade4,2,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade4,11,, -nces/320006000670,2023,Count_Student_Male_SchoolGrade4,17,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade4,15,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade4,7,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade4,27,, -nces/400957002918,2023,Count_Student_Male_SchoolGrade4,319,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade4,30,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade4,2,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade5,3,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade5,35,, -nces/261884009043,2023,Count_Student_Female_SchoolGrade5,163,, -nces/262895007802,2023,Count_Student_Female_SchoolGrade5,58,, -nces/272520005369,2023,Count_Student_Female_SchoolGrade5,7,, -nces/273239005353,2023,Count_Student_Female_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade5,3,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade5,10,, -nces/320006000670,2023,Count_Student_Female_SchoolGrade5,18,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade5,23,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade5,4,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade5,25,, -nces/400957002918,2023,Count_Student_Female_SchoolGrade5,292,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade5,2,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade5,20,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade5,4,, -nces/720003000010,2023,Count_Student_Female_SchoolGrade5,1,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade5,6,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade5,32,, -nces/261884009043,2023,Count_Student_Male_SchoolGrade5,133,, -nces/262895007802,2023,Count_Student_Male_SchoolGrade5,41,, -nces/272520005369,2023,Count_Student_Male_SchoolGrade5,14,, -nces/273239005353,2023,Count_Student_Male_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade5,4,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade5,11,, -nces/320006000670,2023,Count_Student_Male_SchoolGrade5,6,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade5,19,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade5,1,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade5,28,, -nces/400957002918,2023,Count_Student_Male_SchoolGrade5,332,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade5,1,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade5,25,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade5,2,, -nces/720003000010,2023,Count_Student_Male_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade6,2,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade6,8,, -nces/120144009033,2023,Count_Student_Female_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade6,47,, -nces/250732002639,2023,Count_Student_Female_SchoolGrade6,140,, -nces/261884009043,2023,Count_Student_Female_SchoolGrade6,145,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade6,10,, -nces/270819004622,2023,Count_Student_Female_SchoolGrade6,56,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_SchoolGrade6,11,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_SchoolGrade6,7,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade6,17,, -nces/320006000756,2023,Count_Student_Female_SchoolGrade6,14,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade6,40,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade6,9,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade6,33,, -nces/390487306154,2023,Count_Student_Female_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade6,1,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade6,16,, -nces/530486002475,2023,Count_Student_Female_SchoolGrade6,29,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade6,32,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade6,34,, -nces/560147000454,2023,Count_Student_Female_SchoolGrade6,1,, -nces/720003000010,2023,Count_Student_Female_SchoolGrade6,27,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade6,9,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade6,8,, -nces/120144009033,2023,Count_Student_Male_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade6,48,, -nces/250732002639,2023,Count_Student_Male_SchoolGrade6,149,, -nces/261884009043,2023,Count_Student_Male_SchoolGrade6,177,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade6,7,, -nces/270819004622,2023,Count_Student_Male_SchoolGrade6,53,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_SchoolGrade6,13,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_SchoolGrade6,1,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade6,8,, -nces/320006000756,2023,Count_Student_Male_SchoolGrade6,11,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade6,45,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade6,22,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade6,29,, -nces/390487306154,2023,Count_Student_Male_SchoolGrade6,1,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade6,2,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade6,13,, -nces/530486002475,2023,Count_Student_Male_SchoolGrade6,29,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade6,47,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade6,28,, -nces/560147000454,2023,Count_Student_Male_SchoolGrade6,5,, -nces/720003000010,2023,Count_Student_Male_SchoolGrade6,30,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade7,9,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade7,12,, -nces/120144009033,2023,Count_Student_Female_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade7,40,, -nces/250732002639,2023,Count_Student_Female_SchoolGrade7,136,, -nces/270002503396,2023,Count_Student_Female_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade7,9,, -nces/270819004622,2023,Count_Student_Female_SchoolGrade7,80,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_SchoolGrade7,15,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade7,5,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade7,12,, -nces/320006000756,2023,Count_Student_Female_SchoolGrade7,12,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade7,30,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade7,4,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade7,22,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade7,4,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade7,31,, -nces/530486002475,2023,Count_Student_Female_SchoolGrade7,23,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade7,44,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade7,23,, -nces/720003000010,2023,Count_Student_Female_SchoolGrade7,37,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade7,11,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade7,9,, -nces/120144009033,2023,Count_Student_Male_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade7,43,, -nces/250732002639,2023,Count_Student_Male_SchoolGrade7,160,, -nces/270002503396,2023,Count_Student_Male_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade7,8,, -nces/270819004622,2023,Count_Student_Male_SchoolGrade7,60,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_SchoolGrade7,10,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade7,7,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade7,12,, -nces/320006000756,2023,Count_Student_Male_SchoolGrade7,13,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade7,50,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade7,6,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade7,31,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade7,2,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade7,34,, -nces/530486002475,2023,Count_Student_Male_SchoolGrade7,35,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade7,59,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade7,24,, -nces/720003000010,2023,Count_Student_Male_SchoolGrade7,27,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade8,20,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade8,22,, -nces/120144009033,2023,Count_Student_Female_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade8,49,, -nces/250732002639,2023,Count_Student_Female_SchoolGrade8,170,, -nces/270002503396,2023,Count_Student_Female_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade8,15,, -nces/270819004622,2023,Count_Student_Female_SchoolGrade8,73,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_SchoolGrade8,31,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade8,4,, -nces/317458000209,2023,Count_Student_Female_SchoolGrade8,11,, -nces/320006000756,2023,Count_Student_Female_SchoolGrade8,10,, -nces/350018700811,2023,Count_Student_Female_SchoolGrade8,37,, -nces/360007705767,2023,Count_Student_Female_SchoolGrade8,3,, -nces/360010206477,2023,Count_Student_Female_SchoolGrade8,20,, -nces/410674001907,2023,Count_Student_Female_SchoolGrade8,4,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade8,59,, -nces/530486002475,2023,Count_Student_Female_SchoolGrade8,16,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade8,56,, -nces/550004502575,2023,Count_Student_Female_SchoolGrade8,20,, -nces/720003000010,2023,Count_Student_Female_SchoolGrade8,22,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade8,15,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade8,15,, -nces/120144009033,2023,Count_Student_Male_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade8,48,, -nces/250732002639,2023,Count_Student_Male_SchoolGrade8,189,, -nces/270002503396,2023,Count_Student_Male_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade8,9,, -nces/270819004622,2023,Count_Student_Male_SchoolGrade8,68,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_SchoolGrade8,18,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade8,3,, -nces/317458000209,2023,Count_Student_Male_SchoolGrade8,13,, -nces/320006000756,2023,Count_Student_Male_SchoolGrade8,11,, -nces/350018700811,2023,Count_Student_Male_SchoolGrade8,46,, -nces/360007705767,2023,Count_Student_Male_SchoolGrade8,7,, -nces/360010206477,2023,Count_Student_Male_SchoolGrade8,25,, -nces/410674001907,2023,Count_Student_Male_SchoolGrade8,2,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade8,50,, -nces/530486002475,2023,Count_Student_Male_SchoolGrade8,31,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade8,52,, -nces/550004502575,2023,Count_Student_Male_SchoolGrade8,30,, -nces/720003000010,2023,Count_Student_Male_SchoolGrade8,21,, -nces/060429013779,2023,Count_Student_Female_SchoolGrade9,18,, -nces/080258006836,2023,Count_Student_Female_SchoolGrade9,17,, -nces/080336006756,2023,Count_Student_Female_SchoolGrade9,2,, -nces/160153000605,2023,Count_Student_Female_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_SchoolGrade9,66,, -nces/262016008622,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_SchoolGrade9,9,, -nces/270819004415,2023,Count_Student_Female_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_SchoolGrade9,2,, -nces/272385001044,2023,Count_Student_Female_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_SchoolGrade9,11,, -nces/272520012756,2023,Count_Student_Female_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_SchoolGrade9,12,, -nces/273351012806,2023,Count_Student_Female_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_SchoolGrade9,11,, -nces/318009002335,2023,Count_Student_Female_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_SchoolGrade9,1,, -nces/420009100597,2023,Count_Student_Female_SchoolGrade9,137,, -nces/440090000492,2023,Count_Student_Female_SchoolGrade9,54,, -nces/540135001603,2023,Count_Student_Female_SchoolGrade9,55,, -nces/060429013779,2023,Count_Student_Male_SchoolGrade9,17,, -nces/080258006836,2023,Count_Student_Male_SchoolGrade9,15,, -nces/080336006756,2023,Count_Student_Male_SchoolGrade9,8,, -nces/160153000605,2023,Count_Student_Male_SchoolGrade9,1,, -nces/180004602162,2023,Count_Student_Male_SchoolGrade9,50,, -nces/262016008622,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_SchoolGrade9,9,, -nces/270819004415,2023,Count_Student_Male_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_SchoolGrade9,3,, -nces/272385001044,2023,Count_Student_Male_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_SchoolGrade9,16,, -nces/272520012756,2023,Count_Student_Male_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_SchoolGrade9,6,, -nces/273351012806,2023,Count_Student_Male_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_SchoolGrade9,7,, -nces/318009002335,2023,Count_Student_Male_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_SchoolGrade9,101,, -nces/440090000492,2023,Count_Student_Male_SchoolGrade9,71,, -nces/540135001603,2023,Count_Student_Male_SchoolGrade9,56,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino,109,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino,88,, -nces/080336006756,2023,Count_Student_Female_HispanicOrLatino,12,, -nces/120144009033,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/173081003429,2023,Count_Student_Female_HispanicOrLatino,7,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino,28,, -nces/200795002097,2023,Count_Student_Female_HispanicOrLatino,58,, -nces/250732002639,2023,Count_Student_Female_HispanicOrLatino,285,, -nces/261884009043,2023,Count_Student_Female_HispanicOrLatino,12,, -nces/262016008622,2023,Count_Student_Female_HispanicOrLatino,14,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino,21,, -nces/270002502875,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002503396,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002503554,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002503561,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002503562,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002504216,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002504476,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002504573,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002504823,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270002512817,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino,5,, -nces/270819004415,2023,Count_Student_Female_HispanicOrLatino,4,, -nces/270819004622,2023,Count_Student_Female_HispanicOrLatino,53,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/271503005356,2023,Count_Student_Female_HispanicOrLatino,7,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino,4,, -nces/272520005370,2023,Count_Student_Female_HispanicOrLatino,9,, -nces/272520005371,2023,Count_Student_Female_HispanicOrLatino,21,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/273239005351,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/273239005352,2023,Count_Student_Female_HispanicOrLatino,8,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino,1,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino,8,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino,8,, -nces/317718002379,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/318009002335,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino,17,, -nces/320006000756,2023,Count_Student_Female_HispanicOrLatino,10,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino,7,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino,38,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino,21,, -nces/390487306154,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/400957002918,2023,Count_Student_Female_HispanicOrLatino,90,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino,4,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino,21,, -nces/440090000492,2023,Count_Student_Female_HispanicOrLatino,112,, -nces/530486002475,2023,Count_Student_Female_HispanicOrLatino,9,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino,8,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino,63,, -nces/550747003029,2023,Count_Student_Female_HispanicOrLatino,5,, -nces/550852002475,2023,Count_Student_Female_HispanicOrLatino,69,, -nces/550891002902,2023,Count_Student_Female_HispanicOrLatino,3,, -nces/551266002889,2023,Count_Student_Female_HispanicOrLatino,5,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino,0,, -nces/720003000010,2023,Count_Student_Female_HispanicOrLatino,87,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/173081003429,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,1,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Asian_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Asian_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Asian_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Asian_Kindergarten,13,, -nces/272520005369,2023,Count_Student_Asian_Kindergarten,1,, -nces/273239005353,2023,Count_Student_Asian_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Asian_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Asian_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Asian_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Asian_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Asian_Kindergarten,25,, -nces/410674001907,2023,Count_Student_Asian_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Asian_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Asian_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Black_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Black_Kindergarten,24,, -nces/180004602162,2023,Count_Student_Black_Kindergarten,80,, -nces/262895007802,2023,Count_Student_Black_Kindergarten,15,, -nces/272520005369,2023,Count_Student_Black_Kindergarten,7,, -nces/273239005353,2023,Count_Student_Black_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Black_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Black_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Black_Kindergarten,17,, -nces/360007705767,2023,Count_Student_Black_Kindergarten,2,, -nces/360010206477,2023,Count_Student_Black_Kindergarten,3,, -nces/410674001907,2023,Count_Student_Black_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Black_Kindergarten,30,, -nces/560147000454,2023,Count_Student_Black_Kindergarten,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_Kindergarten,3,, -nces/173081003429,2023,Count_Student_HispanicOrLatino_Kindergarten,3,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_Kindergarten,4,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_Kindergarten,8,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_Kindergarten,1,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_Kindergarten,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_Kindergarten,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_Kindergarten,2,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_Kindergarten,6,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_Kindergarten,8,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_Kindergarten,9,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_Kindergarten,0,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_Kindergarten,16,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_Kindergarten,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/173081003429,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_Kindergarten,1,, -nces/173081003429,2023,Count_Student_Female_Kindergarten,12,, -nces/180004602162,2023,Count_Student_Female_Kindergarten,45,, -nces/262895007802,2023,Count_Student_Female_Kindergarten,47,, -nces/272520005369,2023,Count_Student_Female_Kindergarten,4,, -nces/273239005353,2023,Count_Student_Female_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_Kindergarten,2,, -nces/317458000209,2023,Count_Student_Female_Kindergarten,9,, -nces/320006000670,2023,Count_Student_Female_Kindergarten,13,, -nces/360007705767,2023,Count_Student_Female_Kindergarten,9,, -nces/360010206477,2023,Count_Student_Female_Kindergarten,21,, -nces/410674001907,2023,Count_Student_Female_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_Kindergarten,30,, -nces/560147000454,2023,Count_Student_Female_Kindergarten,3,, -nces/060429013779,2023,Count_Student_Male_Kindergarten,5,, -nces/173081003429,2023,Count_Student_Male_Kindergarten,17,, -nces/180004602162,2023,Count_Student_Male_Kindergarten,42,, -nces/262895007802,2023,Count_Student_Male_Kindergarten,58,, -nces/272520005369,2023,Count_Student_Male_Kindergarten,5,, -nces/273239005353,2023,Count_Student_Male_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_Kindergarten,1,, -nces/317458000209,2023,Count_Student_Male_Kindergarten,10,, -nces/320006000670,2023,Count_Student_Male_Kindergarten,14,, -nces/360007705767,2023,Count_Student_Male_Kindergarten,5,, -nces/360010206477,2023,Count_Student_Male_Kindergarten,29,, -nces/410674001907,2023,Count_Student_Male_Kindergarten,1,, -nces/550004502575,2023,Count_Student_Male_Kindergarten,26,, -nces/560147000454,2023,Count_Student_Male_Kindergarten,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/173081003429,2023,Count_Student_TwoOrMoreRaces_Kindergarten,2,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_Kindergarten,3,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_Kindergarten,19,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_Kindergarten,3,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_Kindergarten,2,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_Kindergarten,6,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_Kindergarten,8,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_Kindergarten,0,, -nces/060429013779,2023,Count_Student_White_Kindergarten,3,, -nces/173081003429,2023,Count_Student_White_Kindergarten,0,, -nces/180004602162,2023,Count_Student_White_Kindergarten,0,, -nces/262895007802,2023,Count_Student_White_Kindergarten,50,, -nces/272520005369,2023,Count_Student_White_Kindergarten,0,, -nces/273239005353,2023,Count_Student_White_Kindergarten,0,, -nces/279144305446,2023,Count_Student_White_Kindergarten,3,, -nces/317458000209,2023,Count_Student_White_Kindergarten,17,, -nces/320006000670,2023,Count_Student_White_Kindergarten,1,, -nces/360007705767,2023,Count_Student_White_Kindergarten,2,, -nces/360010206477,2023,Count_Student_White_Kindergarten,7,, -nces/410674001907,2023,Count_Student_White_Kindergarten,0,, -nces/550004502575,2023,Count_Student_White_Kindergarten,2,, -nces/560147000454,2023,Count_Student_White_Kindergarten,3,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -nces/080336006756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/120144009033,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/173081003429,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/200795002097,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -nces/250732002639,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/261884009043,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/262016008622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002502875,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002503396,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002503554,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002503561,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002503562,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002504216,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002504476,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002504573,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002504823,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270002512817,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270819004415,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/270819004622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/271503005356,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/272520005370,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/272520005371,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/273239005351,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/273239005352,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/317718002379,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/318009002335,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,2,, -nces/320006000756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,3,, -nces/390487306154,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/400957002918,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,1,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/440090000492,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/530486002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/550747003029,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/550852002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/550891002902,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/551266002889,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/720003000010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,1,, -nces/080336006756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/120144009033,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/173081003429,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/200795002097,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/250732002639,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/261884009043,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,1,, -nces/262016008622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002502875,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002503396,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002503554,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002503561,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002503562,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002504216,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002504476,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002504573,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002504823,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270002512817,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270819004415,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270819004622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/271503005356,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/272520005370,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/272520005371,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/273239005351,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/273239005352,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/317718002379,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/318009002335,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/320006000756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,1,, -nces/390487306154,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/400957002918,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,2,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,2,, -nces/440090000492,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/530486002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/550747003029,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/550852002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/550891002902,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/551266002889,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/720003000010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/550852002475,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/550891002902,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/262895007802,2023,Count_Student_Asian_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Asian_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Asian_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Asian_PreKindergarten,6,, -nces/550004502575,2023,Count_Student_Asian_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Asian_PreKindergarten,8,, -nces/550852002475,2023,Count_Student_Asian_PreKindergarten,37,, -nces/550891002902,2023,Count_Student_Asian_PreKindergarten,5,, -nces/551266002889,2023,Count_Student_Asian_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Black_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Black_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Black_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Black_PreKindergarten,4,, -nces/550004502575,2023,Count_Student_Black_PreKindergarten,26,, -nces/550747003029,2023,Count_Student_Black_PreKindergarten,2,, -nces/550852002475,2023,Count_Student_Black_PreKindergarten,106,, -nces/550891002902,2023,Count_Student_Black_PreKindergarten,2,, -nces/551266002889,2023,Count_Student_Black_PreKindergarten,2,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_HispanicOrLatino_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_PreKindergarten,9,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_PreKindergarten,8,, -nces/550747003029,2023,Count_Student_HispanicOrLatino_PreKindergarten,16,, -nces/550852002475,2023,Count_Student_HispanicOrLatino_PreKindergarten,135,, -nces/550891002902,2023,Count_Student_HispanicOrLatino_PreKindergarten,4,, -nces/551266002889,2023,Count_Student_HispanicOrLatino_PreKindergarten,9,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550852002475,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550891002902,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_White_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_White_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_White_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_White_PreKindergarten,16,, -nces/550004502575,2023,Count_Student_White_PreKindergarten,1,, -nces/550747003029,2023,Count_Student_White_PreKindergarten,249,, -nces/550852002475,2023,Count_Student_White_PreKindergarten,266,, -nces/550891002902,2023,Count_Student_White_PreKindergarten,105,, -nces/551266002889,2023,Count_Student_White_PreKindergarten,23,, -nces/262895007802,2023,Count_Student_Female_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_PreKindergarten,20,, -nces/550004502575,2023,Count_Student_Female_PreKindergarten,26,, -nces/550747003029,2023,Count_Student_Female_PreKindergarten,145,, -nces/550852002475,2023,Count_Student_Female_PreKindergarten,284,, -nces/550891002902,2023,Count_Student_Female_PreKindergarten,51,, -nces/551266002889,2023,Count_Student_Female_PreKindergarten,24,, -nces/262895007802,2023,Count_Student_Male_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_PreKindergarten,17,, -nces/550004502575,2023,Count_Student_Male_PreKindergarten,16,, -nces/550747003029,2023,Count_Student_Male_PreKindergarten,145,, -nces/550852002475,2023,Count_Student_Male_PreKindergarten,310,, -nces/550891002902,2023,Count_Student_Male_PreKindergarten,69,, -nces/551266002889,2023,Count_Student_Male_PreKindergarten,16,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,2,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,7,, -nces/550747003029,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,14,, -nces/550852002475,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,49,, -nces/550891002902,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,4,, -nces/551266002889,2023,Count_Student_TwoOrMoreRaces_PreKindergarten,5,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces,10,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces,7,, -nces/080336006756,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/120144009033,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/173081003429,2023,Count_Student_Female_TwoOrMoreRaces,6,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces,18,, -nces/200795002097,2023,Count_Student_Female_TwoOrMoreRaces,5,, -nces/250732002639,2023,Count_Student_Female_TwoOrMoreRaces,11,, -nces/261884009043,2023,Count_Student_Female_TwoOrMoreRaces,8,, -nces/262016008622,2023,Count_Student_Female_TwoOrMoreRaces,1,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces,42,, -nces/270002502875,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002503396,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002503554,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002503561,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002503562,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002504216,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002504476,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002504573,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002504823,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270002512817,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces,1,, -nces/270819004415,2023,Count_Student_Female_TwoOrMoreRaces,3,, -nces/270819004622,2023,Count_Student_Female_TwoOrMoreRaces,12,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/271503005356,2023,Count_Student_Female_TwoOrMoreRaces,3,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces,4,, -nces/272520005370,2023,Count_Student_Female_TwoOrMoreRaces,7,, -nces/272520005371,2023,Count_Student_Female_TwoOrMoreRaces,8,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/273239005351,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/273239005352,2023,Count_Student_Female_TwoOrMoreRaces,6,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces,3,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces,12,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/317718002379,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/318009002335,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces,5,, -nces/320006000756,2023,Count_Student_Female_TwoOrMoreRaces,3,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces,4,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces,15,, -nces/390487306154,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/400957002918,2023,Count_Student_Female_TwoOrMoreRaces,55,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces,2,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces,9,, -nces/440090000492,2023,Count_Student_Female_TwoOrMoreRaces,4,, -nces/530486002475,2023,Count_Student_Female_TwoOrMoreRaces,10,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces,15,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces,26,, -nces/550747003029,2023,Count_Student_Female_TwoOrMoreRaces,7,, -nces/550852002475,2023,Count_Student_Female_TwoOrMoreRaces,19,, -nces/550891002902,2023,Count_Student_Female_TwoOrMoreRaces,2,, -nces/551266002889,2023,Count_Student_Female_TwoOrMoreRaces,5,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/720003000010,2023,Count_Student_Female_TwoOrMoreRaces,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces,12,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/080336006756,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/120144009033,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/173081003429,2023,Count_Student_Male_TwoOrMoreRaces,5,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces,10,, -nces/200795002097,2023,Count_Student_Male_TwoOrMoreRaces,1,, -nces/250732002639,2023,Count_Student_Male_TwoOrMoreRaces,11,, -nces/261884009043,2023,Count_Student_Male_TwoOrMoreRaces,11,, -nces/262016008622,2023,Count_Student_Male_TwoOrMoreRaces,1,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces,19,, -nces/270002502875,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002503396,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002503554,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002503561,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002503562,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002504216,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002504476,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002504573,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002504823,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270002512817,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces,3,, -nces/270819004415,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/270819004622,2023,Count_Student_Male_TwoOrMoreRaces,11,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/271503005356,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces,4,, -nces/272520005370,2023,Count_Student_Male_TwoOrMoreRaces,3,, -nces/272520005371,2023,Count_Student_Male_TwoOrMoreRaces,4,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/273239005351,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/273239005352,2023,Count_Student_Male_TwoOrMoreRaces,8,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces,1,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces,1,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/317718002379,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/318009002335,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces,7,, -nces/320006000756,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces,22,, -nces/390487306154,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/400957002918,2023,Count_Student_Male_TwoOrMoreRaces,59,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces,1,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces,4,, -nces/440090000492,2023,Count_Student_Male_TwoOrMoreRaces,6,, -nces/530486002475,2023,Count_Student_Male_TwoOrMoreRaces,13,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces,12,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces,26,, -nces/550747003029,2023,Count_Student_Male_TwoOrMoreRaces,7,, -nces/550852002475,2023,Count_Student_Male_TwoOrMoreRaces,30,, -nces/550891002902,2023,Count_Student_Male_TwoOrMoreRaces,2,, -nces/551266002889,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/720003000010,2023,Count_Student_Male_TwoOrMoreRaces,0,, -nces/200795002097,2023,Count_Student_Female_UngradedClasses,125,, -nces/320006000670,2023,Count_Student_Female_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_UngradedClasses,63,, -nces/320006000670,2023,Count_Student_Male_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_UngradedClasses,0,, -nces/060429013779,2023,Count_Student_Female_White,42,, -nces/080258006836,2023,Count_Student_Female_White,48,, -nces/080336006756,2023,Count_Student_Female_White,26,, -nces/120144009033,2023,Count_Student_Female_White,0,, -nces/160153000605,2023,Count_Student_Female_White,0,, -nces/173081003429,2023,Count_Student_Female_White,0,, -nces/180004602162,2023,Count_Student_Female_White,2,, -nces/200795002097,2023,Count_Student_Female_White,19,, -nces/250732002639,2023,Count_Student_Female_White,127,, -nces/261884009043,2023,Count_Student_Female_White,279,, -nces/262016008622,2023,Count_Student_Female_White,3,, -nces/262895007802,2023,Count_Student_Female_White,174,, -nces/270002502875,2023,Count_Student_Female_White,0,, -nces/270002503396,2023,Count_Student_Female_White,0,, -nces/270002503397,2023,Count_Student_Female_White,0,, -nces/270002503554,2023,Count_Student_Female_White,0,, -nces/270002503561,2023,Count_Student_Female_White,0,, -nces/270002503562,2023,Count_Student_Female_White,0,, -nces/270002504216,2023,Count_Student_Female_White,0,, -nces/270002504476,2023,Count_Student_Female_White,0,, -nces/270002504573,2023,Count_Student_Female_White,0,, -nces/270002504823,2023,Count_Student_Female_White,0,, -nces/270002512817,2023,Count_Student_Female_White,0,, -nces/270015000652,2023,Count_Student_Female_White,67,, -nces/270819004415,2023,Count_Student_Female_White,6,, -nces/270819004622,2023,Count_Student_Female_White,119,, -nces/270819005118,2023,Count_Student_Female_White,0,, -nces/271503005356,2023,Count_Student_Female_White,6,, -nces/272385001044,2023,Count_Student_Female_White,0,, -nces/272520005369,2023,Count_Student_Female_White,6,, -nces/272520005370,2023,Count_Student_Female_White,18,, -nces/272520005371,2023,Count_Student_Female_White,24,, -nces/272520012756,2023,Count_Student_Female_White,0,, -nces/273239005351,2023,Count_Student_Female_White,0,, -nces/273239005352,2023,Count_Student_Female_White,32,, -nces/273239005353,2023,Count_Student_Female_White,0,, -nces/273351012806,2023,Count_Student_Female_White,0,, -nces/279144305446,2023,Count_Student_Female_White,12,, -nces/279144305447,2023,Count_Student_Female_White,75,, -nces/317458000209,2023,Count_Student_Female_White,92,, -nces/317718002379,2023,Count_Student_Female_White,0,, -nces/318009002335,2023,Count_Student_Female_White,0,, -nces/320006000670,2023,Count_Student_Female_White,2,, -nces/320006000756,2023,Count_Student_Female_White,1,, -nces/350018700811,2023,Count_Student_Female_White,147,, -nces/360007705767,2023,Count_Student_Female_White,17,, -nces/360010206477,2023,Count_Student_Female_White,57,, -nces/390487306154,2023,Count_Student_Female_White,1,, -nces/400957002918,2023,Count_Student_Female_White,321,, -nces/410674001907,2023,Count_Student_Female_White,7,, -nces/420009100597,2023,Count_Student_Female_White,557,, -nces/440090000492,2023,Count_Student_Female_White,4,, -nces/530486002475,2023,Count_Student_Female_White,40,, -nces/540135001603,2023,Count_Student_Female_White,285,, -nces/550004502575,2023,Count_Student_Female_White,10,, -nces/550747003029,2023,Count_Student_Female_White,125,, -nces/550852002475,2023,Count_Student_Female_White,129,, -nces/550891002902,2023,Count_Student_Female_White,44,, -nces/551266002889,2023,Count_Student_Female_White,12,, -nces/560147000454,2023,Count_Student_Female_White,18,, -nces/720003000010,2023,Count_Student_Female_White,0,, -nces/060429013779,2023,Count_Student_Male_White,30,, -nces/080258006836,2023,Count_Student_Male_White,43,, -nces/080336006756,2023,Count_Student_Male_White,31,, -nces/120144009033,2023,Count_Student_Male_White,0,, -nces/160153000605,2023,Count_Student_Male_White,3,, -nces/173081003429,2023,Count_Student_Male_White,0,, -nces/180004602162,2023,Count_Student_Male_White,1,, -nces/200795002097,2023,Count_Student_Male_White,9,, -nces/250732002639,2023,Count_Student_Male_White,128,, -nces/261884009043,2023,Count_Student_Male_White,274,, -nces/262016008622,2023,Count_Student_Male_White,4,, -nces/262895007802,2023,Count_Student_Male_White,152,, -nces/270002502875,2023,Count_Student_Male_White,0,, -nces/270002503396,2023,Count_Student_Male_White,0,, -nces/270002503397,2023,Count_Student_Male_White,0,, -nces/270002503554,2023,Count_Student_Male_White,0,, -nces/270002503561,2023,Count_Student_Male_White,0,, -nces/270002503562,2023,Count_Student_Male_White,0,, -nces/270002504216,2023,Count_Student_Male_White,0,, -nces/270002504476,2023,Count_Student_Male_White,0,, -nces/270002504573,2023,Count_Student_Male_White,0,, -nces/270002504823,2023,Count_Student_Male_White,0,, -nces/270002512817,2023,Count_Student_Male_White,0,, -nces/270015000652,2023,Count_Student_Male_White,53,, -nces/270819004415,2023,Count_Student_Male_White,11,, -nces/270819004622,2023,Count_Student_Male_White,94,, -nces/270819005118,2023,Count_Student_Male_White,0,, -nces/271503005356,2023,Count_Student_Male_White,6,, -nces/272385001044,2023,Count_Student_Male_White,1,, -nces/272520005369,2023,Count_Student_Male_White,6,, -nces/272520005370,2023,Count_Student_Male_White,12,, -nces/272520005371,2023,Count_Student_Male_White,25,, -nces/272520012756,2023,Count_Student_Male_White,0,, -nces/273239005351,2023,Count_Student_Male_White,0,, -nces/273239005352,2023,Count_Student_Male_White,23,, -nces/273239005353,2023,Count_Student_Male_White,0,, -nces/273351012806,2023,Count_Student_Male_White,0,, -nces/279144305446,2023,Count_Student_Male_White,10,, -nces/279144305447,2023,Count_Student_Male_White,67,, -nces/317458000209,2023,Count_Student_Male_White,84,, -nces/317718002379,2023,Count_Student_Male_White,0,, -nces/318009002335,2023,Count_Student_Male_White,0,, -nces/320006000670,2023,Count_Student_Male_White,2,, -nces/320006000756,2023,Count_Student_Male_White,0,, -nces/350018700811,2023,Count_Student_Male_White,159,, -nces/360007705767,2023,Count_Student_Male_White,19,, -nces/360010206477,2023,Count_Student_Male_White,63,, -nces/390487306154,2023,Count_Student_Male_White,1,, -nces/400957002918,2023,Count_Student_Male_White,368,, -nces/410674001907,2023,Count_Student_Male_White,3,, -nces/420009100597,2023,Count_Student_Male_White,440,, -nces/440090000492,2023,Count_Student_Male_White,10,, -nces/530486002475,2023,Count_Student_Male_White,47,, -nces/540135001603,2023,Count_Student_Male_White,334,, -nces/550004502575,2023,Count_Student_Male_White,20,, -nces/550747003029,2023,Count_Student_Male_White,124,, -nces/550852002475,2023,Count_Student_Male_White,137,, -nces/550891002902,2023,Count_Student_Male_White,61,, -nces/551266002889,2023,Count_Student_Male_White,11,, -nces/560147000454,2023,Count_Student_Male_White,18,, -nces/720003000010,2023,Count_Student_Male_White,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_Black_SchoolGrade1,28,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade1,96,, -nces/262895007802,2023,Count_Student_Black_SchoolGrade1,14,, -nces/272520005369,2023,Count_Student_Black_SchoolGrade1,5,, -nces/273239005353,2023,Count_Student_Black_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Black_SchoolGrade1,24,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade1,3,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade1,40,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_HispanicOrLatino_SchoolGrade1,6,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade1,4,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_SchoolGrade1,6,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade1,1,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_SchoolGrade1,5,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade1,13,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade1,13,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade1,1,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade1,12,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,3,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,3,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,8,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,4,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,4,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_White_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_White_SchoolGrade1,49,, -nces/272520005369,2023,Count_Student_White_SchoolGrade1,2,, -nces/273239005353,2023,Count_Student_White_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade1,1,, -nces/317458000209,2023,Count_Student_White_SchoolGrade1,19,, -nces/320006000670,2023,Count_Student_White_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_White_SchoolGrade1,14,, -nces/360007705767,2023,Count_Student_White_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_White_SchoolGrade1,13,, -nces/410674001907,2023,Count_Student_White_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_White_SchoolGrade1,3,, -nces/560147000454,2023,Count_Student_White_SchoolGrade1,5,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,2,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Asian_SchoolGrade2,9,, -nces/272520005369,2023,Count_Student_Asian_SchoolGrade2,3,, -nces/273239005353,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade2,1,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade2,35,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Black_SchoolGrade2,30,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade2,97,, -nces/262895007802,2023,Count_Student_Black_SchoolGrade2,9,, -nces/272520005369,2023,Count_Student_Black_SchoolGrade2,7,, -nces/273239005353,2023,Count_Student_Black_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Black_SchoolGrade2,17,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade2,6,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade2,2,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade2,30,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade2,2,, -nces/173081003429,2023,Count_Student_HispanicOrLatino_SchoolGrade2,6,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade2,2,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_SchoolGrade2,5,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_SchoolGrade2,1,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade2,3,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_SchoolGrade2,4,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade2,1,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade2,11,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade2,7,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade2,2,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade2,13,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,2,, -nces/173081003429,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,3,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,2,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,5,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,4,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,3,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_White_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_White_SchoolGrade2,62,, -nces/272520005369,2023,Count_Student_White_SchoolGrade2,2,, -nces/273239005353,2023,Count_Student_White_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade2,1,, -nces/317458000209,2023,Count_Student_White_SchoolGrade2,19,, -nces/320006000670,2023,Count_Student_White_SchoolGrade2,1,, -nces/350018700811,2023,Count_Student_White_SchoolGrade2,12,, -nces/360007705767,2023,Count_Student_White_SchoolGrade2,5,, -nces/360010206477,2023,Count_Student_White_SchoolGrade2,13,, -nces/410674001907,2023,Count_Student_White_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_White_SchoolGrade2,4,, -nces/560147000454,2023,Count_Student_White_SchoolGrade2,4,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Asian_SchoolGrade3,8,, -nces/272520005369,2023,Count_Student_Asian_SchoolGrade3,5,, -nces/273239005353,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade3,1,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade3,40,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Black_SchoolGrade3,30,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade3,79,, -nces/262895007802,2023,Count_Student_Black_SchoolGrade3,15,, -nces/272520005369,2023,Count_Student_Black_SchoolGrade3,4,, -nces/273239005353,2023,Count_Student_Black_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Black_SchoolGrade3,18,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade3,4,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade3,4,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade3,2,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade3,32,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade3,7,, -nces/173081003429,2023,Count_Student_HispanicOrLatino_SchoolGrade3,8,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade3,4,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_SchoolGrade3,8,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_SchoolGrade3,3,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade3,3,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade3,2,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_SchoolGrade3,2,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade3,1,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade3,7,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade3,5,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade3,7,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,1,, -nces/173081003429,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,2,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,11,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,2,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,3,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,2,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade3,4,, -nces/173081003429,2023,Count_Student_White_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_White_SchoolGrade3,60,, -nces/272520005369,2023,Count_Student_White_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_White_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade3,3,, -nces/317458000209,2023,Count_Student_White_SchoolGrade3,18,, -nces/320006000670,2023,Count_Student_White_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_White_SchoolGrade3,17,, -nces/360007705767,2023,Count_Student_White_SchoolGrade3,3,, -nces/360010206477,2023,Count_Student_White_SchoolGrade3,14,, -nces/410674001907,2023,Count_Student_White_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_White_SchoolGrade3,3,, -nces/560147000454,2023,Count_Student_White_SchoolGrade3,5,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/400957002918,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,10,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Asian_SchoolGrade4,9,, -nces/272520005369,2023,Count_Student_Asian_SchoolGrade4,3,, -nces/273239005353,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade4,37,, -nces/400957002918,2023,Count_Student_Asian_SchoolGrade4,56,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade4,82,, -nces/262895007802,2023,Count_Student_Black_SchoolGrade4,10,, -nces/272520005369,2023,Count_Student_Black_SchoolGrade4,7,, -nces/273239005353,2023,Count_Student_Black_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Black_SchoolGrade4,22,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade4,2,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade4,1,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade4,1,, -nces/400957002918,2023,Count_Student_Black_SchoolGrade4,45,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade4,30,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade4,8,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade4,4,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_SchoolGrade4,13,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_SchoolGrade4,10,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade4,1,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade4,8,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade4,5,, -nces/400957002918,2023,Count_Student_HispanicOrLatino_SchoolGrade4,83,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade4,19,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/400957002918,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,10,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,1,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,2,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,2,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,2,, -nces/400957002918,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,65,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,6,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade4,1,, -nces/160153000605,2023,Count_Student_White_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_White_SchoolGrade4,54,, -nces/272520005369,2023,Count_Student_White_SchoolGrade4,4,, -nces/273239005353,2023,Count_Student_White_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade4,3,, -nces/317458000209,2023,Count_Student_White_SchoolGrade4,21,, -nces/320006000670,2023,Count_Student_White_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_White_SchoolGrade4,30,, -nces/360007705767,2023,Count_Student_White_SchoolGrade4,5,, -nces/360010206477,2023,Count_Student_White_SchoolGrade4,16,, -nces/400957002918,2023,Count_Student_White_SchoolGrade4,356,, -nces/410674001907,2023,Count_Student_White_SchoolGrade4,1,, -nces/550004502575,2023,Count_Student_White_SchoolGrade4,2,, -nces/560147000454,2023,Count_Student_White_SchoolGrade4,7,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,1,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,2,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,19,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,2,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade5,1,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Asian_SchoolGrade5,8,, -nces/262895007802,2023,Count_Student_Asian_SchoolGrade5,17,, -nces/272520005369,2023,Count_Student_Asian_SchoolGrade5,6,, -nces/273239005353,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade5,1,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade5,32,, -nces/400957002918,2023,Count_Student_Asian_SchoolGrade5,64,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Asian_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade5,63,, -nces/261884009043,2023,Count_Student_Black_SchoolGrade5,3,, -nces/262895007802,2023,Count_Student_Black_SchoolGrade5,11,, -nces/272520005369,2023,Count_Student_Black_SchoolGrade5,4,, -nces/273239005353,2023,Count_Student_Black_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Black_SchoolGrade5,19,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade5,3,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_Black_SchoolGrade5,62,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade5,31,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Black_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/261884009043,2023,Count_Student_HispanicOrLatino_SchoolGrade5,9,, -nces/262895007802,2023,Count_Student_HispanicOrLatino_SchoolGrade5,9,, -nces/272520005369,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_SchoolGrade5,5,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade5,4,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade5,3,, -nces/400957002918,2023,Count_Student_HispanicOrLatino_SchoolGrade5,94,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade5,1,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_HispanicOrLatino_SchoolGrade5,1,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,2,, -nces/400957002918,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,3,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,3,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,1,, -nces/261884009043,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,10,, -nces/262895007802,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,11,, -nces/272520005369,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,4,, -nces/273239005353,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,3,, -nces/400957002918,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,49,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,9,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade5,2,, -nces/160153000605,2023,Count_Student_White_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_White_SchoolGrade5,266,, -nces/262895007802,2023,Count_Student_White_SchoolGrade5,51,, -nces/272520005369,2023,Count_Student_White_SchoolGrade5,4,, -nces/273239005353,2023,Count_Student_White_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade5,6,, -nces/317458000209,2023,Count_Student_White_SchoolGrade5,18,, -nces/320006000670,2023,Count_Student_White_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_White_SchoolGrade5,34,, -nces/360007705767,2023,Count_Student_White_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_White_SchoolGrade5,13,, -nces/400957002918,2023,Count_Student_White_SchoolGrade5,333,, -nces/410674001907,2023,Count_Student_White_SchoolGrade5,1,, -nces/550004502575,2023,Count_Student_White_SchoolGrade5,4,, -nces/560147000454,2023,Count_Student_White_SchoolGrade5,6,, -nces/720003000010,2023,Count_Student_White_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,2,, -nces/390487306154,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,7,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade6,1,, -nces/120144009033,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Asian_SchoolGrade6,1,, -nces/261884009043,2023,Count_Student_Asian_SchoolGrade6,5,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Asian_SchoolGrade6,4,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Asian_SchoolGrade6,1,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade6,3,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade6,2,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade6,30,, -nces/390487306154,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Asian_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade6,1,, -nces/120144009033,2023,Count_Student_Black_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade6,91,, -nces/250732002639,2023,Count_Student_Black_SchoolGrade6,19,, -nces/261884009043,2023,Count_Student_Black_SchoolGrade6,5,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Black_SchoolGrade6,10,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Black_SchoolGrade6,10,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Black_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Black_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Black_SchoolGrade6,18,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade6,4,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade6,10,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade6,1,, -nces/390487306154,2023,Count_Student_Black_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade6,3,, -nces/530486002475,2023,Count_Student_Black_SchoolGrade6,1,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade6,44,, -nces/560147000454,2023,Count_Student_Black_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Black_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade6,10,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade6,9,, -nces/120144009033,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade6,3,, -nces/250732002639,2023,Count_Student_HispanicOrLatino_SchoolGrade6,197,, -nces/261884009043,2023,Count_Student_HispanicOrLatino_SchoolGrade6,14,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade6,2,, -nces/270819004622,2023,Count_Student_HispanicOrLatino_SchoolGrade6,24,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_HispanicOrLatino_SchoolGrade6,4,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade6,1,, -nces/320006000756,2023,Count_Student_HispanicOrLatino_SchoolGrade6,3,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade6,16,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -nces/390487306154,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade6,7,, -nces/530486002475,2023,Count_Student_HispanicOrLatino_SchoolGrade6,13,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade6,3,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade6,11,, -nces/560147000454,2023,Count_Student_HispanicOrLatino_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_HispanicOrLatino_SchoolGrade6,57,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/390487306154,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -nces/250732002639,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,6,, -nces/261884009043,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,9,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -nces/270819004622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,3,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,2,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,8,, -nces/390487306154,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,8,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,1,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,6,, -nces/560147000454,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade6,1,, -nces/080258006836,2023,Count_Student_White_SchoolGrade6,5,, -nces/120144009033,2023,Count_Student_White_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_White_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_White_SchoolGrade6,66,, -nces/261884009043,2023,Count_Student_White_SchoolGrade6,287,, -nces/270015000652,2023,Count_Student_White_SchoolGrade6,14,, -nces/270819004622,2023,Count_Student_White_SchoolGrade6,68,, -nces/270819005118,2023,Count_Student_White_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_White_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_White_SchoolGrade6,7,, -nces/272520012756,2023,Count_Student_White_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_White_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_White_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_White_SchoolGrade6,5,, -nces/317458000209,2023,Count_Student_White_SchoolGrade6,24,, -nces/320006000756,2023,Count_Student_White_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_White_SchoolGrade6,70,, -nces/360007705767,2023,Count_Student_White_SchoolGrade6,3,, -nces/360010206477,2023,Count_Student_White_SchoolGrade6,14,, -nces/390487306154,2023,Count_Student_White_SchoolGrade6,1,, -nces/410674001907,2023,Count_Student_White_SchoolGrade6,2,, -nces/420009100597,2023,Count_Student_White_SchoolGrade6,16,, -nces/530486002475,2023,Count_Student_White_SchoolGrade6,29,, -nces/540135001603,2023,Count_Student_White_SchoolGrade6,75,, -nces/550004502575,2023,Count_Student_White_SchoolGrade6,1,, -nces/560147000454,2023,Count_Student_White_SchoolGrade6,6,, -nces/720003000010,2023,Count_Student_White_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,5,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Asian_SchoolGrade7,2,, -nces/270002503396,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Asian_SchoolGrade7,5,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Asian_SchoolGrade7,5,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade7,2,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade7,21,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Asian_SchoolGrade7,2,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Asian_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade7,1,, -nces/120144009033,2023,Count_Student_Black_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade7,77,, -nces/250732002639,2023,Count_Student_Black_SchoolGrade7,13,, -nces/270002503396,2023,Count_Student_Black_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Black_SchoolGrade7,12,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Black_SchoolGrade7,7,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Black_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade7,1,, -nces/320006000756,2023,Count_Student_Black_SchoolGrade7,13,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade7,4,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade7,4,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade7,3,, -nces/530486002475,2023,Count_Student_Black_SchoolGrade7,1,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade7,1,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade7,33,, -nces/720003000010,2023,Count_Student_Black_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade7,17,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade7,11,, -nces/120144009033,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade7,5,, -nces/250732002639,2023,Count_Student_HispanicOrLatino_SchoolGrade7,193,, -nces/270002503396,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -nces/270819004622,2023,Count_Student_HispanicOrLatino_SchoolGrade7,29,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_HispanicOrLatino_SchoolGrade7,3,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade7,2,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade7,5,, -nces/320006000756,2023,Count_Student_HispanicOrLatino_SchoolGrade7,11,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade7,6,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade7,7,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade7,7,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -nces/530486002475,2023,Count_Student_HispanicOrLatino_SchoolGrade7,13,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade7,1,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade7,9,, -nces/720003000010,2023,Count_Student_HispanicOrLatino_SchoolGrade7,64,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,1,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,1,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/120144009033,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/250732002639,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,8,, -nces/270002503396,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,8,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,3,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,3,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,1,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,3,, -nces/530486002475,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,10,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,7,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,4,, -nces/720003000010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade7,2,, -nces/080258006836,2023,Count_Student_White_SchoolGrade7,8,, -nces/120144009033,2023,Count_Student_White_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_White_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_White_SchoolGrade7,80,, -nces/270002503396,2023,Count_Student_White_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade7,16,, -nces/270819004622,2023,Count_Student_White_SchoolGrade7,85,, -nces/270819005118,2023,Count_Student_White_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_White_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_White_SchoolGrade7,7,, -nces/272520012756,2023,Count_Student_White_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_White_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_White_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade7,10,, -nces/317458000209,2023,Count_Student_White_SchoolGrade7,18,, -nces/320006000756,2023,Count_Student_White_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_White_SchoolGrade7,67,, -nces/360007705767,2023,Count_Student_White_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_White_SchoolGrade7,16,, -nces/410674001907,2023,Count_Student_White_SchoolGrade7,4,, -nces/420009100597,2023,Count_Student_White_SchoolGrade7,58,, -nces/530486002475,2023,Count_Student_White_SchoolGrade7,27,, -nces/540135001603,2023,Count_Student_White_SchoolGrade7,94,, -nces/550004502575,2023,Count_Student_White_SchoolGrade7,1,, -nces/720003000010,2023,Count_Student_White_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,5,, -nces/360007705767,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/410674001907,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,6,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Asian_SchoolGrade8,8,, -nces/270002503396,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Asian_SchoolGrade8,3,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Asian_SchoolGrade8,10,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Asian_SchoolGrade8,1,, -nces/350018700811,2023,Count_Student_Asian_SchoolGrade8,1,, -nces/360007705767,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Asian_SchoolGrade8,19,, -nces/410674001907,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade8,1,, -nces/530486002475,2023,Count_Student_Asian_SchoolGrade8,1,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Asian_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade8,2,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade8,2,, -nces/120144009033,2023,Count_Student_Black_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade8,88,, -nces/250732002639,2023,Count_Student_Black_SchoolGrade8,13,, -nces/270002503396,2023,Count_Student_Black_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Black_SchoolGrade8,17,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Black_SchoolGrade8,14,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Black_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Black_SchoolGrade8,1,, -nces/320006000756,2023,Count_Student_Black_SchoolGrade8,11,, -nces/350018700811,2023,Count_Student_Black_SchoolGrade8,8,, -nces/360007705767,2023,Count_Student_Black_SchoolGrade8,3,, -nces/360010206477,2023,Count_Student_Black_SchoolGrade8,1,, -nces/410674001907,2023,Count_Student_Black_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade8,4,, -nces/530486002475,2023,Count_Student_Black_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade8,3,, -nces/550004502575,2023,Count_Student_Black_SchoolGrade8,28,, -nces/720003000010,2023,Count_Student_Black_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade8,24,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade8,16,, -nces/120144009033,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -nces/250732002639,2023,Count_Student_HispanicOrLatino_SchoolGrade8,221,, -nces/270002503396,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_HispanicOrLatino_SchoolGrade8,49,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_HispanicOrLatino_SchoolGrade8,4,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade8,1,, -nces/317458000209,2023,Count_Student_HispanicOrLatino_SchoolGrade8,1,, -nces/320006000756,2023,Count_Student_HispanicOrLatino_SchoolGrade8,7,, -nces/350018700811,2023,Count_Student_HispanicOrLatino_SchoolGrade8,7,, -nces/360007705767,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -nces/360010206477,2023,Count_Student_HispanicOrLatino_SchoolGrade8,6,, -nces/410674001907,2023,Count_Student_HispanicOrLatino_SchoolGrade8,3,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade8,5,, -nces/530486002475,2023,Count_Student_HispanicOrLatino_SchoolGrade8,4,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade8,1,, -nces/550004502575,2023,Count_Student_HispanicOrLatino_SchoolGrade8,10,, -nces/720003000010,2023,Count_Student_HispanicOrLatino_SchoolGrade8,43,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -nces/410674001907,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,4,, -nces/250732002639,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,8,, -nces/270002503396,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -nces/270819004622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,12,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,5,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,2,, -nces/350018700811,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,1,, -nces/360010206477,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,4,, -nces/410674001907,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,2,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,5,, -nces/530486002475,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,5,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,4,, -nces/550004502575,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,3,, -nces/720003000010,2023,Count_Student_TwoOrMoreRaces_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_White_SchoolGrade8,8,, -nces/080258006836,2023,Count_Student_White_SchoolGrade8,16,, -nces/120144009033,2023,Count_Student_White_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_White_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_White_SchoolGrade8,109,, -nces/270002503396,2023,Count_Student_White_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade8,23,, -nces/270819004622,2023,Count_Student_White_SchoolGrade8,60,, -nces/270819005118,2023,Count_Student_White_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_White_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_White_SchoolGrade8,16,, -nces/272520012756,2023,Count_Student_White_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_White_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_White_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade8,6,, -nces/317458000209,2023,Count_Student_White_SchoolGrade8,22,, -nces/320006000756,2023,Count_Student_White_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_White_SchoolGrade8,62,, -nces/360007705767,2023,Count_Student_White_SchoolGrade8,1,, -nces/360010206477,2023,Count_Student_White_SchoolGrade8,14,, -nces/410674001907,2023,Count_Student_White_SchoolGrade8,1,, -nces/420009100597,2023,Count_Student_White_SchoolGrade8,94,, -nces/530486002475,2023,Count_Student_White_SchoolGrade8,31,, -nces/540135001603,2023,Count_Student_White_SchoolGrade8,100,, -nces/550004502575,2023,Count_Student_White_SchoolGrade8,9,, -nces/720003000010,2023,Count_Student_White_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/270819004415,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/318009002335,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,2,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade9,1,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade9,1,, -nces/080336006756,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Asian_SchoolGrade9,1,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Asian_SchoolGrade9,1,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Asian_SchoolGrade9,3,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_Asian_SchoolGrade9,5,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade9,2,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Black_SchoolGrade9,1,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade9,106,, -nces/262016008622,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Black_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Black_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Black_SchoolGrade9,10,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Black_SchoolGrade9,5,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Black_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Black_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade9,17,, -nces/440090000492,2023,Count_Student_Black_SchoolGrade9,22,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade9,1,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade9,26,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade9,17,, -nces/080336006756,2023,Count_Student_HispanicOrLatino_SchoolGrade9,4,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade9,5,, -nces/262016008622,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade9,1,, -nces/270819004415,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_HispanicOrLatino_SchoolGrade9,3,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_HispanicOrLatino_SchoolGrade9,4,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_HispanicOrLatino_SchoolGrade9,3,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade9,2,, -nces/318009002335,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_HispanicOrLatino_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade9,12,, -nces/440090000492,2023,Count_Student_HispanicOrLatino_SchoolGrade9,85,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade9,1,, -nces/060429013779,2023,Count_Student_White_SchoolGrade9,6,, -nces/080258006836,2023,Count_Student_White_SchoolGrade9,13,, -nces/080336006756,2023,Count_Student_White_SchoolGrade9,5,, -nces/160153000605,2023,Count_Student_White_SchoolGrade9,1,, -nces/180004602162,2023,Count_Student_White_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_White_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_White_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade9,16,, -nces/270819004415,2023,Count_Student_White_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_White_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_White_SchoolGrade9,1,, -nces/272385001044,2023,Count_Student_White_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_White_SchoolGrade9,11,, -nces/272520012756,2023,Count_Student_White_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_White_SchoolGrade9,4,, -nces/273351012806,2023,Count_Student_White_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade9,12,, -nces/318009002335,2023,Count_Student_White_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_White_SchoolGrade9,1,, -nces/420009100597,2023,Count_Student_White_SchoolGrade9,205,, -nces/440090000492,2023,Count_Student_White_SchoolGrade9,6,, -nces/540135001603,2023,Count_Student_White_SchoolGrade9,104,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade10,4,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Asian_SchoolGrade10,10,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade10,1,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade10,5,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade10,1,, -nces/080336006756,2023,Count_Student_Black_SchoolGrade10,1,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade10,96,, -nces/262016008622,2023,Count_Student_Black_SchoolGrade10,6,, -nces/270002502875,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Black_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Black_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Black_SchoolGrade10,12,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Black_SchoolGrade10,1,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade10,2,, -nces/318009002335,2023,Count_Student_Black_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade10,10,, -nces/440090000492,2023,Count_Student_Black_SchoolGrade10,14,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade10,1,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade10,39,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade10,34,, -nces/080336006756,2023,Count_Student_HispanicOrLatino_SchoolGrade10,7,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade10,1,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade10,5,, -nces/262016008622,2023,Count_Student_HispanicOrLatino_SchoolGrade10,2,, -nces/270002502875,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_HispanicOrLatino_SchoolGrade10,2,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_HispanicOrLatino_SchoolGrade10,8,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_HispanicOrLatino_SchoolGrade10,5,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade10,3,, -nces/318009002335,2023,Count_Student_HispanicOrLatino_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade10,5,, -nces/440090000492,2023,Count_Student_HispanicOrLatino_SchoolGrade10,64,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade10,2,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,4,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -nces/080336006756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -nces/262016008622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,4,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,2,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,1,, -nces/318009002335,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,0,, -nces/440090000492,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,3,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade10,4,, -nces/060429013779,2023,Count_Student_White_SchoolGrade10,13,, -nces/080258006836,2023,Count_Student_White_SchoolGrade10,14,, -nces/080336006756,2023,Count_Student_White_SchoolGrade10,14,, -nces/160153000605,2023,Count_Student_White_SchoolGrade10,2,, -nces/180004602162,2023,Count_Student_White_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_White_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_White_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade10,10,, -nces/270819004415,2023,Count_Student_White_SchoolGrade10,1,, -nces/270819005118,2023,Count_Student_White_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_White_SchoolGrade10,2,, -nces/272385001044,2023,Count_Student_White_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_White_SchoolGrade10,9,, -nces/272520012756,2023,Count_Student_White_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_White_SchoolGrade10,14,, -nces/273351012806,2023,Count_Student_White_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade10,26,, -nces/318009002335,2023,Count_Student_White_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_White_SchoolGrade10,209,, -nces/440090000492,2023,Count_Student_White_SchoolGrade10,3,, -nces/540135001603,2023,Count_Student_White_SchoolGrade10,93,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/318009002335,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade11,3,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Asian_SchoolGrade11,3,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Asian_SchoolGrade11,2,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/440090000492,2023,Count_Student_Asian_SchoolGrade11,2,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade11,5,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade11,1,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade11,92,, -nces/262016008622,2023,Count_Student_Black_SchoolGrade11,11,, -nces/270002502875,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Black_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Black_SchoolGrade11,2,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Black_SchoolGrade11,15,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Black_SchoolGrade11,10,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade11,1,, -nces/318009002335,2023,Count_Student_Black_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade11,7,, -nces/440090000492,2023,Count_Student_Black_SchoolGrade11,8,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade11,2,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade11,29,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade11,38,, -nces/080336006756,2023,Count_Student_HispanicOrLatino_SchoolGrade11,12,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade11,6,, -nces/262016008622,2023,Count_Student_HispanicOrLatino_SchoolGrade11,9,, -nces/270002502875,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_HispanicOrLatino_SchoolGrade11,4,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_HispanicOrLatino_SchoolGrade11,6,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_HispanicOrLatino_SchoolGrade11,2,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade11,3,, -nces/318009002335,2023,Count_Student_HispanicOrLatino_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade11,5,, -nces/440090000492,2023,Count_Student_HispanicOrLatino_SchoolGrade11,66,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade11,3,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,9,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,4,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,2,, -nces/262016008622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,2,, -nces/270002502875,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,1,, -nces/270819004415,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,2,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,6,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,3,, -nces/318009002335,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,0,, -nces/440090000492,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,1,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade11,3,, -nces/060429013779,2023,Count_Student_White_SchoolGrade11,14,, -nces/080258006836,2023,Count_Student_White_SchoolGrade11,18,, -nces/080336006756,2023,Count_Student_White_SchoolGrade11,20,, -nces/160153000605,2023,Count_Student_White_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade11,1,, -nces/262016008622,2023,Count_Student_White_SchoolGrade11,3,, -nces/270002502875,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_White_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_White_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade11,23,, -nces/270819004415,2023,Count_Student_White_SchoolGrade11,1,, -nces/270819005118,2023,Count_Student_White_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_White_SchoolGrade11,6,, -nces/272385001044,2023,Count_Student_White_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_White_SchoolGrade11,12,, -nces/272520012756,2023,Count_Student_White_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_White_SchoolGrade11,12,, -nces/273351012806,2023,Count_Student_White_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade11,33,, -nces/318009002335,2023,Count_Student_White_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_White_SchoolGrade11,214,, -nces/440090000492,2023,Count_Student_White_SchoolGrade11,4,, -nces/540135001603,2023,Count_Student_White_SchoolGrade11,79,, -nces/060429013779,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/080258006836,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/270819005118,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/273351012806,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,5,, -nces/318009002335,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Asian_SchoolGrade12,5,, -nces/080258006836,2023,Count_Student_Asian_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Asian_SchoolGrade12,1,, -nces/270002502875,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Asian_SchoolGrade12,3,, -nces/270819005118,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Asian_SchoolGrade12,19,, -nces/272520012756,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Asian_SchoolGrade12,1,, -nces/273351012806,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Asian_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Asian_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Black_SchoolGrade12,3,, -nces/080258006836,2023,Count_Student_Black_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Black_SchoolGrade12,2,, -nces/160153000605,2023,Count_Student_Black_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Black_SchoolGrade12,83,, -nces/200795002097,2023,Count_Student_Black_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Black_SchoolGrade12,22,, -nces/270002502875,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Black_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Black_SchoolGrade12,2,, -nces/270819005118,2023,Count_Student_Black_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Black_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Black_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Black_SchoolGrade12,21,, -nces/272520012756,2023,Count_Student_Black_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Black_SchoolGrade12,4,, -nces/273351012806,2023,Count_Student_Black_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Black_SchoolGrade12,1,, -nces/318009002335,2023,Count_Student_Black_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Black_SchoolGrade12,5,, -nces/440090000492,2023,Count_Student_Black_SchoolGrade12,7,, -nces/540135001603,2023,Count_Student_Black_SchoolGrade12,4,, -nces/060429013779,2023,Count_Student_HispanicOrLatino_SchoolGrade12,38,, -nces/080258006836,2023,Count_Student_HispanicOrLatino_SchoolGrade12,29,, -nces/080336006756,2023,Count_Student_HispanicOrLatino_SchoolGrade12,4,, -nces/160153000605,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_HispanicOrLatino_SchoolGrade12,2,, -nces/200795002097,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_HispanicOrLatino_SchoolGrade12,20,, -nces/270002502875,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_HispanicOrLatino_SchoolGrade12,1,, -nces/270819004415,2023,Count_Student_HispanicOrLatino_SchoolGrade12,6,, -nces/270819005118,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_HispanicOrLatino_SchoolGrade12,6,, -nces/272385001044,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_HispanicOrLatino_SchoolGrade12,12,, -nces/272520012756,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_HispanicOrLatino_SchoolGrade12,4,, -nces/273351012806,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_HispanicOrLatino_SchoolGrade12,5,, -nces/318009002335,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_HispanicOrLatino_SchoolGrade12,3,, -nces/440090000492,2023,Count_Student_HispanicOrLatino_SchoolGrade12,57,, -nces/540135001603,2023,Count_Student_HispanicOrLatino_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,2,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,2,, -nces/200795002097,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -nces/270819004415,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,5,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,3,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,5,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,3,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,6,, -nces/318009002335,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,1,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade12,3,, -nces/060429013779,2023,Count_Student_White_SchoolGrade12,16,, -nces/080258006836,2023,Count_Student_White_SchoolGrade12,17,, -nces/080336006756,2023,Count_Student_White_SchoolGrade12,18,, -nces/160153000605,2023,Count_Student_White_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_White_SchoolGrade12,1,, -nces/200795002097,2023,Count_Student_White_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_White_SchoolGrade12,4,, -nces/270002502875,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_White_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_White_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_White_SchoolGrade12,18,, -nces/270819004415,2023,Count_Student_White_SchoolGrade12,15,, -nces/270819005118,2023,Count_Student_White_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_White_SchoolGrade12,3,, -nces/272385001044,2023,Count_Student_White_SchoolGrade12,1,, -nces/272520005371,2023,Count_Student_White_SchoolGrade12,17,, -nces/272520012756,2023,Count_Student_White_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_White_SchoolGrade12,25,, -nces/273351012806,2023,Count_Student_White_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_White_SchoolGrade12,55,, -nces/318009002335,2023,Count_Student_White_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_White_SchoolGrade12,201,, -nces/440090000492,2023,Count_Student_White_SchoolGrade12,1,, -nces/540135001603,2023,Count_Student_White_SchoolGrade12,74,, -nces/060429013779,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -nces/540135001603,2023,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,1,, -nces/080336006756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,5,, -nces/262016008622,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,1,, -nces/272520012756,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,3,, -nces/273351012806,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,3,, -nces/318009002335,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,3,, -nces/440090000492,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,5,, -nces/540135001603,2023,Count_Student_TwoOrMoreRaces_SchoolGrade9,5,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,1,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/550852002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550891002902,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/550852002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/550891002902,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,1,, -nces/262895007802,2023,Count_Student_Female_Asian_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_Asian_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_Asian_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_Asian_PreKindergarten,5,, -nces/550004502575,2023,Count_Student_Female_Asian_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Female_Asian_PreKindergarten,6,, -nces/550852002475,2023,Count_Student_Female_Asian_PreKindergarten,21,, -nces/550891002902,2023,Count_Student_Female_Asian_PreKindergarten,2,, -nces/551266002889,2023,Count_Student_Female_Asian_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Male_Asian_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_Asian_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_Asian_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_Asian_PreKindergarten,1,, -nces/550004502575,2023,Count_Student_Male_Asian_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Male_Asian_PreKindergarten,2,, -nces/550852002475,2023,Count_Student_Male_Asian_PreKindergarten,16,, -nces/550891002902,2023,Count_Student_Male_Asian_PreKindergarten,3,, -nces/551266002889,2023,Count_Student_Male_Asian_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Female_Black_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_Black_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_Black_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_Black_PreKindergarten,2,, -nces/550004502575,2023,Count_Student_Female_Black_PreKindergarten,15,, -nces/550747003029,2023,Count_Student_Female_Black_PreKindergarten,1,, -nces/550852002475,2023,Count_Student_Female_Black_PreKindergarten,46,, -nces/550891002902,2023,Count_Student_Female_Black_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_Female_Black_PreKindergarten,2,, -nces/262895007802,2023,Count_Student_Male_Black_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_Black_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_Black_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_Black_PreKindergarten,2,, -nces/550004502575,2023,Count_Student_Male_Black_PreKindergarten,11,, -nces/550747003029,2023,Count_Student_Male_Black_PreKindergarten,1,, -nces/550852002475,2023,Count_Student_Male_Black_PreKindergarten,60,, -nces/550891002902,2023,Count_Student_Male_Black_PreKindergarten,2,, -nces/551266002889,2023,Count_Student_Male_Black_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,5,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,6,, -nces/550747003029,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,5,, -nces/550852002475,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,69,, -nces/550891002902,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,3,, -nces/551266002889,2023,Count_Student_Female_HispanicOrLatino_PreKindergarten,5,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,4,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,2,, -nces/550747003029,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,11,, -nces/550852002475,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,66,, -nces/550891002902,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,1,, -nces/551266002889,2023,Count_Student_Male_HispanicOrLatino_PreKindergarten,4,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550852002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550891002902,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550852002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/550891002902,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/551266002889,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,1,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,5,, -nces/550747003029,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,7,, -nces/550852002475,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,19,, -nces/550891002902,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,2,, -nces/551266002889,2023,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,5,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,1,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,2,, -nces/550747003029,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,7,, -nces/550852002475,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,30,, -nces/550891002902,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,2,, -nces/551266002889,2023,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0,, -nces/262895007802,2023,Count_Student_Female_White_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Female_White_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Female_White_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Female_White_PreKindergarten,7,, -nces/550004502575,2023,Count_Student_Female_White_PreKindergarten,0,, -nces/550747003029,2023,Count_Student_Female_White_PreKindergarten,125,, -nces/550852002475,2023,Count_Student_Female_White_PreKindergarten,129,, -nces/550891002902,2023,Count_Student_Female_White_PreKindergarten,44,, -nces/551266002889,2023,Count_Student_Female_White_PreKindergarten,12,, -nces/262895007802,2023,Count_Student_Male_White_PreKindergarten,0,, -nces/317458000209,2023,Count_Student_Male_White_PreKindergarten,0,, -nces/317718002379,2023,Count_Student_Male_White_PreKindergarten,0,, -nces/360007705767,2023,Count_Student_Male_White_PreKindergarten,9,, -nces/550004502575,2023,Count_Student_Male_White_PreKindergarten,1,, -nces/550747003029,2023,Count_Student_Male_White_PreKindergarten,124,, -nces/550852002475,2023,Count_Student_Male_White_PreKindergarten,137,, -nces/550891002902,2023,Count_Student_Male_White_PreKindergarten,61,, -nces/551266002889,2023,Count_Student_Male_White_PreKindergarten,11,, -nces/200795002097,2023,Count_Student_AmericanIndianOrAlaskaNative_UngradedClasses,1,, -nces/320006000670,2023,Count_Student_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Asian_UngradedClasses,4,, -nces/320006000670,2023,Count_Student_Asian_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Asian_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Black_UngradedClasses,58,, -nces/320006000670,2023,Count_Student_Black_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Black_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_HispanicOrLatino_UngradedClasses,90,, -nces/320006000670,2023,Count_Student_HispanicOrLatino_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_HispanicOrLatino_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_HawaiianNativeOrPacificIslander_UngradedClasses,1,, -nces/320006000670,2023,Count_Student_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_TwoOrMoreRaces_UngradedClasses,6,, -nces/320006000670,2023,Count_Student_TwoOrMoreRaces_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_TwoOrMoreRaces_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_White_UngradedClasses,28,, -nces/320006000670,2023,Count_Student_White_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_White_UngradedClasses,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,1,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Female_Asian_SchoolGrade1,3,, -nces/272520005369,2023,Count_Student_Female_Asian_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Female_Asian_SchoolGrade1,1,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade1,16,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Male_Asian_SchoolGrade1,5,, -nces/272520005369,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade1,16,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_Black_SchoolGrade1,15,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade1,46,, -nces/262895007802,2023,Count_Student_Female_Black_SchoolGrade1,10,, -nces/272520005369,2023,Count_Student_Female_Black_SchoolGrade1,3,, -nces/273239005353,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Female_Black_SchoolGrade1,13,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade1,1,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade1,20,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_Male_Black_SchoolGrade1,13,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade1,50,, -nces/262895007802,2023,Count_Student_Male_Black_SchoolGrade1,4,, -nces/272520005369,2023,Count_Student_Male_Black_SchoolGrade1,2,, -nces/273239005353,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_Black_SchoolGrade1,11,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade1,2,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade1,20,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,2,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,7,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,6,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,1,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,7,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,4,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,2,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,4,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,4,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,6,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,7,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,5,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,1,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,3,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,7,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,3,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,2,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,1,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,2,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade1,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/173081003429,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Female_White_SchoolGrade1,25,, -nces/272520005369,2023,Count_Student_Female_White_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade1,11,, -nces/320006000670,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade1,8,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade1,1,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade1,4,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade1,2,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade1,3,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade1,1,, -nces/173081003429,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/262895007802,2023,Count_Student_Male_White_SchoolGrade1,24,, -nces/272520005369,2023,Count_Student_Male_White_SchoolGrade1,1,, -nces/273239005353,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade1,1,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade1,8,, -nces/320006000670,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade1,6,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade1,9,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade1,0,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade1,1,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade1,2,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,1,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Female_Asian_SchoolGrade2,3,, -nces/272520005369,2023,Count_Student_Female_Asian_SchoolGrade2,1,, -nces/273239005353,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade2,17,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Male_Asian_SchoolGrade2,6,, -nces/272520005369,2023,Count_Student_Male_Asian_SchoolGrade2,2,, -nces/273239005353,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade2,1,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade2,18,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Female_Black_SchoolGrade2,18,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade2,47,, -nces/262895007802,2023,Count_Student_Female_Black_SchoolGrade2,7,, -nces/272520005369,2023,Count_Student_Female_Black_SchoolGrade2,5,, -nces/273239005353,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Female_Black_SchoolGrade2,8,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade2,4,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade2,1,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade2,12,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Male_Black_SchoolGrade2,12,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade2,50,, -nces/262895007802,2023,Count_Student_Male_Black_SchoolGrade2,2,, -nces/272520005369,2023,Count_Student_Male_Black_SchoolGrade2,2,, -nces/273239005353,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Male_Black_SchoolGrade2,9,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade2,2,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade2,1,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade2,18,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,3,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,5,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,2,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,1,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,10,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,4,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,2,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,6,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,5,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,1,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,3,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,1,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,2,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,2,, -nces/173081003429,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,1,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,4,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,2,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,3,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade2,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade2,1,, -nces/173081003429,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade2,1,, -nces/262895007802,2023,Count_Student_Female_White_SchoolGrade2,35,, -nces/272520005369,2023,Count_Student_Female_White_SchoolGrade2,2,, -nces/273239005353,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade2,8,, -nces/320006000670,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade2,7,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade2,2,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade2,8,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade2,0,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade2,2,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/173081003429,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/262895007802,2023,Count_Student_Male_White_SchoolGrade2,27,, -nces/272520005369,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/273239005353,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade2,1,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade2,11,, -nces/320006000670,2023,Count_Student_Male_White_SchoolGrade2,1,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade2,5,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade2,3,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade2,5,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade2,0,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade2,4,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade2,2,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,1,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Female_Asian_SchoolGrade3,5,, -nces/272520005369,2023,Count_Student_Female_Asian_SchoolGrade3,4,, -nces/273239005353,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade3,1,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade3,21,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Male_Asian_SchoolGrade3,3,, -nces/272520005369,2023,Count_Student_Male_Asian_SchoolGrade3,1,, -nces/273239005353,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade3,19,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Female_Black_SchoolGrade3,11,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade3,48,, -nces/262895007802,2023,Count_Student_Female_Black_SchoolGrade3,7,, -nces/272520005369,2023,Count_Student_Female_Black_SchoolGrade3,1,, -nces/273239005353,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Female_Black_SchoolGrade3,7,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade3,2,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade3,2,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade3,1,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade3,17,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Male_Black_SchoolGrade3,19,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade3,31,, -nces/262895007802,2023,Count_Student_Male_Black_SchoolGrade3,8,, -nces/272520005369,2023,Count_Student_Male_Black_SchoolGrade3,3,, -nces/273239005353,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_Black_SchoolGrade3,11,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade3,2,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade3,2,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade3,1,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade3,15,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,4,, -nces/173081003429,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,4,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,4,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,3,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,2,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,1,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,3,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,3,, -nces/173081003429,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,6,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,2,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,1,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,6,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,4,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/173081003429,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,3,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,6,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,2,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -nces/173081003429,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,5,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,1,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,2,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade3,2,, -nces/173081003429,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Female_White_SchoolGrade3,32,, -nces/272520005369,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade3,1,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade3,9,, -nces/320006000670,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade3,10,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade3,1,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade3,6,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade3,1,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade3,0,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade3,2,, -nces/173081003429,2023,Count_Student_Male_White_SchoolGrade3,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade3,0,, -nces/262895007802,2023,Count_Student_Male_White_SchoolGrade3,28,, -nces/272520005369,2023,Count_Student_Male_White_SchoolGrade3,0,, -nces/273239005353,2023,Count_Student_Male_White_SchoolGrade3,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade3,2,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade3,9,, -nces/320006000670,2023,Count_Student_Male_White_SchoolGrade3,1,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade3,7,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade3,2,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade3,8,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade3,1,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade3,2,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade3,5,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/400957002918,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,6,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,1,, -nces/400957002918,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,4,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Female_Asian_SchoolGrade4,5,, -nces/272520005369,2023,Count_Student_Female_Asian_SchoolGrade4,2,, -nces/273239005353,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade4,22,, -nces/400957002918,2023,Count_Student_Female_Asian_SchoolGrade4,24,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Male_Asian_SchoolGrade4,4,, -nces/272520005369,2023,Count_Student_Male_Asian_SchoolGrade4,1,, -nces/273239005353,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade4,15,, -nces/400957002918,2023,Count_Student_Male_Asian_SchoolGrade4,32,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Female_Asian_Kindergarten,5,, -nces/272520005369,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Female_Asian_Kindergarten,13,, -nces/410674001907,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Female_Asian_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Male_Asian_Kindergarten,8,, -nces/272520005369,2023,Count_Student_Male_Asian_Kindergarten,1,, -nces/273239005353,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Male_Asian_Kindergarten,12,, -nces/410674001907,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Male_Asian_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_Black_Kindergarten,11,, -nces/180004602162,2023,Count_Student_Female_Black_Kindergarten,42,, -nces/262895007802,2023,Count_Student_Female_Black_Kindergarten,6,, -nces/272520005369,2023,Count_Student_Female_Black_Kindergarten,3,, -nces/273239005353,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_Black_Kindergarten,6,, -nces/360007705767,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Female_Black_Kindergarten,1,, -nces/410674001907,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_Black_Kindergarten,14,, -nces/560147000454,2023,Count_Student_Female_Black_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Male_Black_Kindergarten,13,, -nces/180004602162,2023,Count_Student_Male_Black_Kindergarten,38,, -nces/262895007802,2023,Count_Student_Male_Black_Kindergarten,9,, -nces/272520005369,2023,Count_Student_Male_Black_Kindergarten,4,, -nces/273239005353,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Male_Black_Kindergarten,11,, -nces/360007705767,2023,Count_Student_Male_Black_Kindergarten,2,, -nces/360010206477,2023,Count_Student_Male_Black_Kindergarten,2,, -nces/410674001907,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_Black_Kindergarten,16,, -nces/560147000454,2023,Count_Student_Male_Black_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -nces/173081003429,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,4,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,1,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,4,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,6,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,3,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,11,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -nces/173081003429,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,3,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,4,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,2,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,6,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,5,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,12,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,2,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,4,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,2,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,7,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,1,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,4,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,4,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_White_Kindergarten,0,, -nces/173081003429,2023,Count_Student_Female_White_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Female_White_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Female_White_Kindergarten,20,, -nces/272520005369,2023,Count_Student_Female_White_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Female_White_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Female_White_Kindergarten,2,, -nces/317458000209,2023,Count_Student_Female_White_Kindergarten,9,, -nces/320006000670,2023,Count_Student_Female_White_Kindergarten,1,, -nces/360007705767,2023,Count_Student_Female_White_Kindergarten,1,, -nces/360010206477,2023,Count_Student_Female_White_Kindergarten,2,, -nces/410674001907,2023,Count_Student_Female_White_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Female_White_Kindergarten,1,, -nces/560147000454,2023,Count_Student_Female_White_Kindergarten,3,, -nces/060429013779,2023,Count_Student_Male_White_Kindergarten,3,, -nces/173081003429,2023,Count_Student_Male_White_Kindergarten,0,, -nces/180004602162,2023,Count_Student_Male_White_Kindergarten,0,, -nces/262895007802,2023,Count_Student_Male_White_Kindergarten,30,, -nces/272520005369,2023,Count_Student_Male_White_Kindergarten,0,, -nces/273239005353,2023,Count_Student_Male_White_Kindergarten,0,, -nces/279144305446,2023,Count_Student_Male_White_Kindergarten,1,, -nces/317458000209,2023,Count_Student_Male_White_Kindergarten,8,, -nces/320006000670,2023,Count_Student_Male_White_Kindergarten,0,, -nces/360007705767,2023,Count_Student_Male_White_Kindergarten,1,, -nces/360010206477,2023,Count_Student_Male_White_Kindergarten,5,, -nces/410674001907,2023,Count_Student_Male_White_Kindergarten,0,, -nces/550004502575,2023,Count_Student_Male_White_Kindergarten,1,, -nces/560147000454,2023,Count_Student_Male_White_Kindergarten,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade4,42,, -nces/262895007802,2023,Count_Student_Female_Black_SchoolGrade4,6,, -nces/272520005369,2023,Count_Student_Female_Black_SchoolGrade4,5,, -nces/273239005353,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_Black_SchoolGrade4,11,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade4,2,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade4,1,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade4,1,, -nces/400957002918,2023,Count_Student_Female_Black_SchoolGrade4,20,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade4,14,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade4,40,, -nces/262895007802,2023,Count_Student_Male_Black_SchoolGrade4,4,, -nces/272520005369,2023,Count_Student_Male_Black_SchoolGrade4,2,, -nces/273239005353,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_Black_SchoolGrade4,11,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/400957002918,2023,Count_Student_Male_Black_SchoolGrade4,25,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade4,16,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,6,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,5,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,1,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,2,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,3,, -nces/400957002918,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,46,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,9,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,1,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,10,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,5,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,6,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,2,, -nces/400957002918,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,37,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,10,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/400957002918,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/400957002918,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,9,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/400957002918,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,33,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,3,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,2,, -nces/400957002918,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,32,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,3,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade4,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade4,1,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Female_White_SchoolGrade4,30,, -nces/272520005369,2023,Count_Student_Female_White_SchoolGrade4,2,, -nces/273239005353,2023,Count_Student_Female_White_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade4,2,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade4,10,, -nces/320006000670,2023,Count_Student_Female_White_SchoolGrade4,1,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade4,15,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade4,4,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade4,9,, -nces/400957002918,2023,Count_Student_Female_White_SchoolGrade4,167,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade4,1,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade4,1,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade4,5,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/262895007802,2023,Count_Student_Male_White_SchoolGrade4,24,, -nces/272520005369,2023,Count_Student_Male_White_SchoolGrade4,2,, -nces/273239005353,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade4,1,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade4,11,, -nces/320006000670,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade4,15,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade4,1,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade4,7,, -nces/400957002918,2023,Count_Student_Male_White_SchoolGrade4,189,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade4,0,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade4,1,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade4,2,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,2,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,7,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,1,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,1,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,12,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,1,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Female_Asian_SchoolGrade5,5,, -nces/262895007802,2023,Count_Student_Female_Asian_SchoolGrade5,10,, -nces/272520005369,2023,Count_Student_Female_Asian_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade5,1,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade5,16,, -nces/400957002918,2023,Count_Student_Female_Asian_SchoolGrade5,37,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_Asian_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade5,1,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Male_Asian_SchoolGrade5,3,, -nces/262895007802,2023,Count_Student_Male_Asian_SchoolGrade5,7,, -nces/272520005369,2023,Count_Student_Male_Asian_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade5,16,, -nces/400957002918,2023,Count_Student_Male_Asian_SchoolGrade5,27,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_Asian_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade5,33,, -nces/261884009043,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_Female_Black_SchoolGrade5,4,, -nces/272520005369,2023,Count_Student_Female_Black_SchoolGrade5,1,, -nces/273239005353,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_Black_SchoolGrade5,13,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade5,2,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_Female_Black_SchoolGrade5,27,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade5,16,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_Black_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade5,30,, -nces/261884009043,2023,Count_Student_Male_Black_SchoolGrade5,3,, -nces/262895007802,2023,Count_Student_Male_Black_SchoolGrade5,7,, -nces/272520005369,2023,Count_Student_Male_Black_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Male_Black_SchoolGrade5,6,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade5,1,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/400957002918,2023,Count_Student_Male_Black_SchoolGrade5,35,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade5,15,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_Black_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -nces/261884009043,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,6,, -nces/262895007802,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,5,, -nces/272520005369,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,5,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,3,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -nces/400957002918,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,44,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade5,1,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,2,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,2,, -nces/261884009043,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -nces/262895007802,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,4,, -nces/272520005369,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,3,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,1,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,2,, -nces/400957002918,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,50,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -nces/400957002918,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/262895007802,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/272520005369,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/273239005353,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,1,, -nces/400957002918,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,2,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -nces/261884009043,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,4,, -nces/262895007802,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,7,, -nces/272520005369,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,2,, -nces/273239005353,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,1,, -nces/400957002918,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,22,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,3,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,3,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,6,, -nces/262895007802,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,4,, -nces/272520005369,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,2,, -nces/273239005353,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,2,, -nces/400957002918,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,27,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,6,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/720003000010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade5,2,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Female_White_SchoolGrade5,148,, -nces/262895007802,2023,Count_Student_Female_White_SchoolGrade5,32,, -nces/272520005369,2023,Count_Student_Female_White_SchoolGrade5,1,, -nces/273239005353,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade5,3,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade5,10,, -nces/320006000670,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade5,19,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade5,6,, -nces/400957002918,2023,Count_Student_Female_White_SchoolGrade5,154,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade5,1,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade5,4,, -nces/720003000010,2023,Count_Student_Female_White_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/261884009043,2023,Count_Student_Male_White_SchoolGrade5,118,, -nces/262895007802,2023,Count_Student_Male_White_SchoolGrade5,19,, -nces/272520005369,2023,Count_Student_Male_White_SchoolGrade5,3,, -nces/273239005353,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade5,3,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade5,8,, -nces/320006000670,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade5,15,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade5,7,, -nces/400957002918,2023,Count_Student_Male_White_SchoolGrade5,179,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade5,4,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade5,2,, -nces/720003000010,2023,Count_Student_Male_White_SchoolGrade5,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/390487306154,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,5,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/390487306154,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,1,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,2,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_Female_Asian_SchoolGrade6,2,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Female_Asian_SchoolGrade6,2,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_Asian_SchoolGrade6,1,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade6,2,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade6,17,, -nces/390487306154,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_Asian_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -nces/120144009033,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -nces/261884009043,2023,Count_Student_Male_Asian_SchoolGrade6,3,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Male_Asian_SchoolGrade6,2,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade6,1,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade6,2,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade6,13,, -nces/390487306154,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_Asian_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade6,1,, -nces/120144009033,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade6,46,, -nces/250732002639,2023,Count_Student_Female_Black_SchoolGrade6,7,, -nces/261884009043,2023,Count_Student_Female_Black_SchoolGrade6,1,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Female_Black_SchoolGrade6,4,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_Black_SchoolGrade6,2,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Female_Black_SchoolGrade6,9,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade6,1,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade6,4,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade6,1,, -nces/390487306154,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade6,22,, -nces/560147000454,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_Black_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade6,45,, -nces/250732002639,2023,Count_Student_Male_Black_SchoolGrade6,12,, -nces/261884009043,2023,Count_Student_Male_Black_SchoolGrade6,4,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Male_Black_SchoolGrade6,6,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_Black_SchoolGrade6,8,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_Black_SchoolGrade6,9,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade6,3,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade6,6,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/390487306154,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade6,2,, -nces/530486002475,2023,Count_Student_Male_Black_SchoolGrade6,1,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade6,22,, -nces/560147000454,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_Black_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,2,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,3,, -nces/120144009033,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,1,, -nces/250732002639,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,91,, -nces/261884009043,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,6,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,2,, -nces/270819004622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,15,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,3,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,1,, -nces/320006000756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,2,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,3,, -nces/390487306154,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -nces/530486002475,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,4,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,2,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,6,, -nces/560147000454,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade6,27,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,8,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,6,, -nces/120144009033,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,2,, -nces/250732002639,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,106,, -nces/261884009043,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,8,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,9,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,1,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,12,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,4,, -nces/390487306154,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,3,, -nces/530486002475,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,9,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,1,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,5,, -nces/560147000454,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade6,30,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/390487306154,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/261884009043,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/390487306154,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,4,, -nces/261884009043,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,4,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/270819004622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,2,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,1,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,2,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,3,, -nces/390487306154,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/530486002475,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,5,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,5,, -nces/560147000454,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade6,4,, -nces/120144009033,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Female_White_SchoolGrade6,38,, -nces/261884009043,2023,Count_Student_Female_White_SchoolGrade6,131,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade6,8,, -nces/270819004622,2023,Count_Student_Female_White_SchoolGrade6,33,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Female_White_SchoolGrade6,4,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Female_White_SchoolGrade6,4,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade6,16,, -nces/320006000756,2023,Count_Student_Female_White_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade6,32,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade6,1,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade6,8,, -nces/390487306154,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade6,1,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade6,10,, -nces/530486002475,2023,Count_Student_Female_White_SchoolGrade6,15,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade6,30,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade6,1,, -nces/560147000454,2023,Count_Student_Female_White_SchoolGrade6,1,, -nces/720003000010,2023,Count_Student_Female_White_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade6,1,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade6,1,, -nces/120144009033,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/250732002639,2023,Count_Student_Male_White_SchoolGrade6,28,, -nces/261884009043,2023,Count_Student_Male_White_SchoolGrade6,156,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade6,6,, -nces/270819004622,2023,Count_Student_Male_White_SchoolGrade6,35,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_White_SchoolGrade6,3,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_White_SchoolGrade6,1,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade6,8,, -nces/320006000756,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade6,38,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade6,2,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade6,6,, -nces/390487306154,2023,Count_Student_Male_White_SchoolGrade6,1,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade6,1,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade6,6,, -nces/530486002475,2023,Count_Student_Male_White_SchoolGrade6,14,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade6,45,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/560147000454,2023,Count_Student_Male_White_SchoolGrade6,5,, -nces/720003000010,2023,Count_Student_Male_White_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/120144009033,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/250732002639,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,2,, -nces/261884009043,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,5,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/270819004622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/272520005370,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273239005351,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/279144305446,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/320006000756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,5,, -nces/390487306154,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/530486002475,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,3,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,1,, -nces/560147000454,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/720003000010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade6,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,1,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,4,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Female_Asian_SchoolGrade7,3,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_Asian_SchoolGrade7,1,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade7,11,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Female_Asian_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Male_Asian_SchoolGrade7,2,, -nces/270002503396,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_Asian_SchoolGrade7,2,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_Asian_SchoolGrade7,4,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade7,2,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade7,10,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Male_Asian_SchoolGrade7,2,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Male_Asian_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade7,1,, -nces/120144009033,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade7,36,, -nces/250732002639,2023,Count_Student_Female_Black_SchoolGrade7,6,, -nces/270002503396,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Female_Black_SchoolGrade7,9,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_Black_SchoolGrade7,5,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade7,1,, -nces/320006000756,2023,Count_Student_Female_Black_SchoolGrade7,6,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade7,1,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade7,2,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade7,3,, -nces/530486002475,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade7,15,, -nces/720003000010,2023,Count_Student_Female_Black_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade7,41,, -nces/250732002639,2023,Count_Student_Male_Black_SchoolGrade7,7,, -nces/270002503396,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_Black_SchoolGrade7,3,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_Black_SchoolGrade7,2,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Male_Black_SchoolGrade7,7,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade7,3,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade7,2,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Male_Black_SchoolGrade7,1,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade7,1,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade7,18,, -nces/720003000010,2023,Count_Student_Male_Black_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,8,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,8,, -nces/120144009033,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -nces/250732002639,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,89,, -nces/270002503396,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,1,, -nces/270819004622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,13,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,2,, -nces/320006000756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,6,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,2,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,1,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,3,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,1,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,5,, -nces/720003000010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade7,37,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,9,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,3,, -nces/120144009033,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,2,, -nces/250732002639,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,104,, -nces/270002503396,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,16,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,2,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,3,, -nces/320006000756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,5,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,4,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,4,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,6,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,1,, -nces/530486002475,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,10,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,4,, -nces/720003000010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade7,27,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,1,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,1,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503396,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/530486002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -nces/120144009033,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -nces/250732002639,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -nces/270002503396,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,1,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -nces/530486002475,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,4,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,4,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,2,, -nces/720003000010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/120144009033,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,6,, -nces/270002503396,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/270819004622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,6,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/320006000756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,3,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,1,, -nces/530486002475,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,6,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,3,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,2,, -nces/720003000010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade7,1,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade7,2,, -nces/120144009033,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Female_White_SchoolGrade7,39,, -nces/270002503396,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade7,8,, -nces/270819004622,2023,Count_Student_Female_White_SchoolGrade7,52,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Female_White_SchoolGrade7,4,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade7,5,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade7,9,, -nces/320006000756,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade7,26,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade7,6,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade7,3,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade7,26,, -nces/530486002475,2023,Count_Student_Female_White_SchoolGrade7,15,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade7,39,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade7,1,, -nces/720003000010,2023,Count_Student_Female_White_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade7,1,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade7,6,, -nces/120144009033,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/250732002639,2023,Count_Student_Male_White_SchoolGrade7,41,, -nces/270002503396,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade7,8,, -nces/270819004622,2023,Count_Student_Male_White_SchoolGrade7,33,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/272520005370,2023,Count_Student_Male_White_SchoolGrade7,3,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/273239005351,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade7,5,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade7,9,, -nces/320006000756,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade7,41,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade7,10,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade7,1,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade7,32,, -nces/530486002475,2023,Count_Student_Male_White_SchoolGrade7,12,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade7,55,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/720003000010,2023,Count_Student_Male_White_SchoolGrade7,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,3,, -nces/360007705767,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/410674001907,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,3,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,1,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,2,, -nces/360007705767,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/410674001907,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,3,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Female_Asian_SchoolGrade8,6,, -nces/270002503396,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_Asian_SchoolGrade8,6,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -nces/350018700811,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -nces/360007705767,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Female_Asian_SchoolGrade8,7,, -nces/410674001907,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade8,1,, -nces/530486002475,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Female_Asian_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Male_Asian_SchoolGrade8,2,, -nces/270002503396,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Male_Asian_SchoolGrade8,3,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_Asian_SchoolGrade8,4,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Male_Asian_SchoolGrade8,12,, -nces/410674001907,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Male_Asian_SchoolGrade8,1,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Male_Asian_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade8,46,, -nces/250732002639,2023,Count_Student_Male_Black_SchoolGrade8,9,, -nces/270002503396,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Male_Black_SchoolGrade8,11,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_Black_SchoolGrade8,6,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_Black_SchoolGrade8,1,, -nces/320006000756,2023,Count_Student_Male_Black_SchoolGrade8,6,, -nces/350018700811,2023,Count_Student_Male_Black_SchoolGrade8,5,, -nces/360007705767,2023,Count_Student_Male_Black_SchoolGrade8,2,, -nces/360010206477,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/410674001907,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade8,1,, -nces/530486002475,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade8,1,, -nces/550004502575,2023,Count_Student_Male_Black_SchoolGrade8,18,, -nces/720003000010,2023,Count_Student_Male_Black_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,14,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,10,, -nces/120144009033,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,3,, -nces/250732002639,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,105,, -nces/270002503396,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,25,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,3,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,1,, -nces/317458000209,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,1,, -nces/320006000756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,2,, -nces/350018700811,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,2,, -nces/360010206477,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,1,, -nces/410674001907,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,2,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,3,, -nces/530486002475,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,2,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,1,, -nces/550004502575,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,5,, -nces/720003000010,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade8,22,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,10,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,6,, -nces/120144009033,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,2,, -nces/250732002639,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,116,, -nces/270002503396,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,24,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,1,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,5,, -nces/350018700811,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,7,, -nces/360007705767,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,3,, -nces/360010206477,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,5,, -nces/410674001907,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,1,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,2,, -nces/530486002475,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,2,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,5,, -nces/720003000010,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade8,21,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade10,3,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_Asian_SchoolGrade10,6,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade10,1,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade10,1,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_Asian_SchoolGrade10,4,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade10,3,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade10,39,, -nces/262016008622,2023,Count_Student_Female_Black_SchoolGrade10,2,, -nces/270002502875,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_Black_SchoolGrade10,7,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade10,1,, -nces/318009002335,2023,Count_Student_Female_Black_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade10,7,, -nces/440090000492,2023,Count_Student_Female_Black_SchoolGrade10,11,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade10,1,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade10,2,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade10,1,, -nces/080336006756,2023,Count_Student_Male_Black_SchoolGrade10,1,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade10,57,, -nces/262016008622,2023,Count_Student_Male_Black_SchoolGrade10,4,, -nces/270002502875,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_Black_SchoolGrade10,5,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_Black_SchoolGrade10,1,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade10,1,, -nces/318009002335,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade10,3,, -nces/440090000492,2023,Count_Student_Male_Black_SchoolGrade10,3,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,20,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,16,, -nces/080336006756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,4,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,4,, -nces/262016008622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,1,, -nces/270002502875,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,5,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,3,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,1,, -nces/318009002335,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,2,, -nces/440090000492,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,25,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade10,2,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,19,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,18,, -nces/080336006756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,3,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,1,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,1,, -nces/262016008622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,1,, -nces/270002502875,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,2,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,3,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,2,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,2,, -nces/318009002335,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,3,, -nces/440090000492,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,39,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade10,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade10,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,3,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -nces/262016008622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,2,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,2,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/318009002335,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,0,, -nces/440090000492,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,1,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade10,2,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -nces/080336006756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,2,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -nces/262016008622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819004415,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,2,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,2,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,1,, -nces/318009002335,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,0,, -nces/440090000492,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,2,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade10,2,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade10,8,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade10,7,, -nces/080336006756,2023,Count_Student_Female_White_SchoolGrade10,6,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade10,8,, -nces/270819004415,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Female_White_SchoolGrade10,1,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Female_White_SchoolGrade10,2,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Female_White_SchoolGrade10,5,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade10,13,, -nces/318009002335,2023,Count_Student_Female_White_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade10,117,, -nces/440090000492,2023,Count_Student_Female_White_SchoolGrade10,1,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade10,43,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade10,5,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade10,7,, -nces/080336006756,2023,Count_Student_Male_White_SchoolGrade10,8,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade10,2,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/262016008622,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002502875,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002503554,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002503561,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002503562,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002504216,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002504476,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002504573,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002504823,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270002512817,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade10,2,, -nces/270819004415,2023,Count_Student_Male_White_SchoolGrade10,1,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/271503005356,2023,Count_Student_Male_White_SchoolGrade10,1,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/272520005371,2023,Count_Student_Male_White_SchoolGrade10,7,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/273239005352,2023,Count_Student_Male_White_SchoolGrade10,9,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade10,13,, -nces/318009002335,2023,Count_Student_Male_White_SchoolGrade10,0,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade10,92,, -nces/440090000492,2023,Count_Student_Male_White_SchoolGrade10,2,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade10,50,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,1,, -nces/318009002335,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade11,1,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_Asian_SchoolGrade11,2,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/440090000492,2023,Count_Student_Female_Asian_SchoolGrade11,1,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade11,2,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_Asian_SchoolGrade11,1,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_Asian_SchoolGrade11,2,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/440090000492,2023,Count_Student_Male_Asian_SchoolGrade11,1,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade11,2,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade11,1,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade11,54,, -nces/262016008622,2023,Count_Student_Female_Black_SchoolGrade11,6,, -nces/270002502875,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_Black_SchoolGrade11,2,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_Black_SchoolGrade11,13,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_Black_SchoolGrade11,4,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade11,1,, -nces/318009002335,2023,Count_Student_Female_Black_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade11,5,, -nces/440090000492,2023,Count_Student_Female_Black_SchoolGrade11,3,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade11,2,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade11,3,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade11,38,, -nces/262016008622,2023,Count_Student_Male_Black_SchoolGrade11,5,, -nces/270002502875,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_Black_SchoolGrade11,2,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_Black_SchoolGrade11,6,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade11,2,, -nces/440090000492,2023,Count_Student_Male_Black_SchoolGrade11,5,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,17,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,21,, -nces/080336006756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,7,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,3,, -nces/262016008622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,3,, -nces/270002502875,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,2,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,4,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,2,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,2,, -nces/318009002335,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,2,, -nces/440090000492,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,26,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade11,1,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,12,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,17,, -nces/080336006756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,5,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,3,, -nces/262016008622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,6,, -nces/270002502875,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,2,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,2,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,1,, -nces/318009002335,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,3,, -nces/440090000492,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,40,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade11,2,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002502875,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade11,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,6,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,4,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -nces/262016008622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -nces/270002502875,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270819004415,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,2,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,4,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,3,, -nces/318009002335,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,0,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade11,1,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,3,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -nces/262016008622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -nces/270002502875,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -nces/270819004415,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,2,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/318009002335,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,0,, -nces/440090000492,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,1,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade11,2,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade11,9,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade11,13,, -nces/080336006756,2023,Count_Student_Female_White_SchoolGrade11,9,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade11,1,, -nces/262016008622,2023,Count_Student_Female_White_SchoolGrade11,1,, -nces/270002502875,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade11,11,, -nces/270819004415,2023,Count_Student_Female_White_SchoolGrade11,1,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Female_White_SchoolGrade11,2,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Female_White_SchoolGrade11,5,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Female_White_SchoolGrade11,9,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade11,21,, -nces/318009002335,2023,Count_Student_Female_White_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade11,122,, -nces/440090000492,2023,Count_Student_Female_White_SchoolGrade11,2,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade11,44,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade11,5,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade11,5,, -nces/080336006756,2023,Count_Student_Male_White_SchoolGrade11,11,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/262016008622,2023,Count_Student_Male_White_SchoolGrade11,2,, -nces/270002502875,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002503554,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002503561,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002503562,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002504216,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002504476,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002504573,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002504823,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270002512817,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade11,12,, -nces/270819004415,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/271503005356,2023,Count_Student_Male_White_SchoolGrade11,4,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/272520005371,2023,Count_Student_Male_White_SchoolGrade11,7,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/273239005352,2023,Count_Student_Male_White_SchoolGrade11,3,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade11,12,, -nces/318009002335,2023,Count_Student_Male_White_SchoolGrade11,0,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade11,92,, -nces/440090000492,2023,Count_Student_Male_White_SchoolGrade11,2,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade11,35,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/318009002335,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,4,, -nces/318009002335,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade12,4,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Female_Asian_SchoolGrade12,1,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_Asian_SchoolGrade12,10,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade12,1,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_Asian_SchoolGrade12,1,, -nces/270002502875,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_Asian_SchoolGrade12,2,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_Asian_SchoolGrade12,9,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_Asian_SchoolGrade12,1,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade12,3,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Female_Black_SchoolGrade12,1,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade12,45,, -nces/200795002097,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_Black_SchoolGrade12,7,, -nces/270002502875,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Female_Black_SchoolGrade12,1,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_Black_SchoolGrade12,12,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_Black_SchoolGrade12,2,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade12,1,, -nces/318009002335,2023,Count_Student_Female_Black_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_Female_Black_SchoolGrade12,3,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade12,2,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Male_Black_SchoolGrade12,1,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade12,38,, -nces/200795002097,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_Black_SchoolGrade12,15,, -nces/270002502875,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_Black_SchoolGrade12,1,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_Black_SchoolGrade12,9,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_Black_SchoolGrade12,2,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Male_Black_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade12,4,, -nces/440090000492,2023,Count_Student_Male_Black_SchoolGrade12,4,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade12,2,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,22,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,20,, -nces/080336006756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,1,, -nces/200795002097,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,10,, -nces/270002502875,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,1,, -nces/270819004415,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,4,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,4,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,10,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,2,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,3,, -nces/318009002335,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,2,, -nces/440090000492,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,27,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,16,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,9,, -nces/080336006756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,4,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,1,, -nces/200795002097,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,10,, -nces/270002502875,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,2,, -nces/318009002335,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,30,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade12,10,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade12,8,, -nces/080336006756,2023,Count_Student_Female_White_SchoolGrade12,10,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_White_SchoolGrade12,2,, -nces/270002502875,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade12,10,, -nces/270819004415,2023,Count_Student_Female_White_SchoolGrade12,5,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_White_SchoolGrade12,2,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_White_SchoolGrade12,10,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_White_SchoolGrade12,16,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade12,26,, -nces/318009002335,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade12,118,, -nces/440090000492,2023,Count_Student_Female_White_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade12,29,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade12,6,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade12,9,, -nces/080336006756,2023,Count_Student_Male_White_SchoolGrade12,8,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade12,1,, -nces/200795002097,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_White_SchoolGrade12,2,, -nces/270002502875,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade12,8,, -nces/270819004415,2023,Count_Student_Male_White_SchoolGrade12,10,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_White_SchoolGrade12,1,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade12,1,, -nces/272520005371,2023,Count_Student_Male_White_SchoolGrade12,7,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_White_SchoolGrade12,9,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade12,29,, -nces/318009002335,2023,Count_Student_Male_White_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade12,83,, -nces/440090000492,2023,Count_Student_Male_White_SchoolGrade12,1,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade12,45,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade8,2,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade8,2,, -nces/120144009033,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade8,42,, -nces/250732002639,2023,Count_Student_Female_Black_SchoolGrade8,4,, -nces/270002503396,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_Black_SchoolGrade8,6,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_Black_SchoolGrade8,8,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Female_Black_SchoolGrade8,5,, -nces/350018700811,2023,Count_Student_Female_Black_SchoolGrade8,3,, -nces/360007705767,2023,Count_Student_Female_Black_SchoolGrade8,1,, -nces/360010206477,2023,Count_Student_Female_Black_SchoolGrade8,1,, -nces/410674001907,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade8,3,, -nces/530486002475,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade8,2,, -nces/550004502575,2023,Count_Student_Female_Black_SchoolGrade8,10,, -nces/720003000010,2023,Count_Student_Female_Black_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,1,, -nces/410674001907,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503396,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/410674001907,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/550004502575,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/720003000010,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -nces/120144009033,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,4,, -nces/250732002639,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,5,, -nces/270002503396,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270819004622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,8,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,4,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,2,, -nces/350018700811,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,2,, -nces/410674001907,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,5,, -nces/530486002475,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,1,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,3,, -nces/550004502575,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,2,, -nces/720003000010,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/120144009033,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,3,, -nces/270002503396,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/270819004622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,4,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/317458000209,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/320006000756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/360007705767,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/360010206477,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,2,, -nces/410674001907,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/530486002475,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,4,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/550004502575,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,1,, -nces/720003000010,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade8,4,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade8,8,, -nces/120144009033,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Female_White_SchoolGrade8,50,, -nces/270002503396,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade8,15,, -nces/270819004622,2023,Count_Student_Female_White_SchoolGrade8,34,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Female_White_SchoolGrade8,10,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade8,3,, -nces/317458000209,2023,Count_Student_Female_White_SchoolGrade8,10,, -nces/320006000756,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Female_White_SchoolGrade8,30,, -nces/360007705767,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/360010206477,2023,Count_Student_Female_White_SchoolGrade8,8,, -nces/410674001907,2023,Count_Student_Female_White_SchoolGrade8,1,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade8,47,, -nces/530486002475,2023,Count_Student_Female_White_SchoolGrade8,10,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade8,50,, -nces/550004502575,2023,Count_Student_Female_White_SchoolGrade8,3,, -nces/720003000010,2023,Count_Student_Female_White_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade8,4,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade8,8,, -nces/120144009033,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/250732002639,2023,Count_Student_Male_White_SchoolGrade8,59,, -nces/270002503396,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade8,8,, -nces/270819004622,2023,Count_Student_Male_White_SchoolGrade8,26,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/272520005370,2023,Count_Student_Male_White_SchoolGrade8,6,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/273239005351,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade8,3,, -nces/317458000209,2023,Count_Student_Male_White_SchoolGrade8,12,, -nces/320006000756,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/350018700811,2023,Count_Student_Male_White_SchoolGrade8,32,, -nces/360007705767,2023,Count_Student_Male_White_SchoolGrade8,1,, -nces/360010206477,2023,Count_Student_Male_White_SchoolGrade8,6,, -nces/410674001907,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade8,47,, -nces/530486002475,2023,Count_Student_Male_White_SchoolGrade8,21,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade8,50,, -nces/550004502575,2023,Count_Student_Male_White_SchoolGrade8,6,, -nces/720003000010,2023,Count_Student_Male_White_SchoolGrade8,0,, -nces/060429013779,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/270819004415,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/540135001603,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/318009002335,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,1,, -nces/540135001603,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Female_Asian_SchoolGrade9,1,, -nces/080258006836,2023,Count_Student_Female_Asian_SchoolGrade9,1,, -nces/080336006756,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_Asian_SchoolGrade9,2,, -nces/273351012806,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_Female_Asian_SchoolGrade9,2,, -nces/540135001603,2023,Count_Student_Female_Asian_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_Asian_SchoolGrade9,1,, -nces/272385001044,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_Asian_SchoolGrade9,1,, -nces/272520012756,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_Asian_SchoolGrade9,1,, -nces/273351012806,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/440090000492,2023,Count_Student_Male_Asian_SchoolGrade9,3,, -nces/540135001603,2023,Count_Student_Male_Asian_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Female_Black_SchoolGrade9,1,, -nces/080258006836,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_Black_SchoolGrade9,62,, -nces/262016008622,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_Black_SchoolGrade9,2,, -nces/272520012756,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_Black_SchoolGrade9,5,, -nces/273351012806,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_Black_SchoolGrade9,10,, -nces/440090000492,2023,Count_Student_Female_Black_SchoolGrade9,14,, -nces/540135001603,2023,Count_Student_Female_Black_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Male_Black_SchoolGrade9,1,, -nces/080258006836,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Male_Black_SchoolGrade9,1,, -nces/160153000605,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_Black_SchoolGrade9,44,, -nces/262016008622,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_Black_SchoolGrade9,8,, -nces/272520012756,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_Black_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_Black_SchoolGrade9,7,, -nces/440090000492,2023,Count_Student_Male_Black_SchoolGrade9,8,, -nces/540135001603,2023,Count_Student_Male_Black_SchoolGrade9,1,, -nces/060429013779,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,12,, -nces/080258006836,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,10,, -nces/080336006756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/160153000605,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/262016008622,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/270819004415,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/272385001044,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,2,, -nces/272520012756,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/273351012806,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/318009002335,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,8,, -nces/440090000492,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,34,, -nces/540135001603,2023,Count_Student_Female_HispanicOrLatino_SchoolGrade9,1,, -nces/060429013779,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,14,, -nces/080258006836,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,7,, -nces/080336006756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,3,, -nces/160153000605,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -nces/262016008622,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,2,, -nces/272385001044,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,2,, -nces/272520012756,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,2,, -nces/273351012806,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,1,, -nces/318009002335,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,4,, -nces/440090000492,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,51,, -nces/540135001603,2023,Count_Student_Male_HispanicOrLatino_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,1,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade9,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/080336006756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,3,, -nces/262016008622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,3,, -nces/318009002335,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -nces/440090000492,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,2,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade9,4,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -nces/080336006756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,2,, -nces/262016008622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819004415,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/318009002335,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -nces/440090000492,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,3,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade9,1,, -nces/060429013779,2023,Count_Student_Female_White_SchoolGrade9,4,, -nces/080258006836,2023,Count_Student_Female_White_SchoolGrade9,6,, -nces/080336006756,2023,Count_Student_Female_White_SchoolGrade9,1,, -nces/160153000605,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/180004602162,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Female_White_SchoolGrade9,7,, -nces/270819004415,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Female_White_SchoolGrade9,1,, -nces/272385001044,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Female_White_SchoolGrade9,7,, -nces/272520012756,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Female_White_SchoolGrade9,2,, -nces/273351012806,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Female_White_SchoolGrade9,7,, -nces/318009002335,2023,Count_Student_Female_White_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Female_White_SchoolGrade9,1,, -nces/420009100597,2023,Count_Student_Female_White_SchoolGrade9,117,, -nces/440090000492,2023,Count_Student_Female_White_SchoolGrade9,1,, -nces/540135001603,2023,Count_Student_Female_White_SchoolGrade9,50,, -nces/060429013779,2023,Count_Student_Male_White_SchoolGrade9,2,, -nces/080258006836,2023,Count_Student_Male_White_SchoolGrade9,7,, -nces/080336006756,2023,Count_Student_Male_White_SchoolGrade9,4,, -nces/160153000605,2023,Count_Student_Male_White_SchoolGrade9,1,, -nces/180004602162,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/262016008622,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002502875,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002503396,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002503397,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002503554,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002503561,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002503562,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002504216,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002504476,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002504823,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270002512817,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270015000652,2023,Count_Student_Male_White_SchoolGrade9,9,, -nces/270819004415,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/270819005118,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/271503005356,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/272385001044,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/272520005371,2023,Count_Student_Male_White_SchoolGrade9,4,, -nces/272520012756,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/273239005352,2023,Count_Student_Male_White_SchoolGrade9,2,, -nces/273351012806,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/279144305447,2023,Count_Student_Male_White_SchoolGrade9,5,, -nces/318009002335,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/390487306154,2023,Count_Student_Male_White_SchoolGrade9,0,, -nces/420009100597,2023,Count_Student_Male_White_SchoolGrade9,88,, -nces/440090000492,2023,Count_Student_Male_White_SchoolGrade9,5,, -nces/540135001603,2023,Count_Student_Male_White_SchoolGrade9,54,, -nces/060429013779,2023,Count_Teacher,11.01,, -nces/080258006836,2023,Count_Teacher,18,, -nces/080336006756,2023,Count_Teacher,9.59,, -nces/120144009033,2023,Count_Teacher,0,, -nces/160153000605,2023,Count_Teacher,1,, -nces/173081003429,2023,Count_Teacher,12.45,, -nces/180004602162,2023,Count_Teacher,100,, -nces/250732002639,2023,Count_Teacher,97.98,, -nces/261884009043,2023,Count_Teacher,32.46,, -nces/262016008622,2023,Count_Teacher,4,, -nces/262895007802,2023,Count_Teacher,30.03,, -nces/270015000652,2023,Count_Teacher,9.82,, -nces/270819004415,2023,Count_Teacher,0,, -nces/270819004622,2023,Count_Teacher,0,, -nces/271503005356,2023,Count_Teacher,2.89,, -nces/272385001044,2023,Count_Teacher,0,, -nces/272520005369,2023,Count_Teacher,7.73,, -nces/272520005370,2023,Count_Teacher,11.01,, -nces/272520005371,2023,Count_Teacher,20.32,, -nces/273239005352,2023,Count_Teacher,5.73,, -nces/279144305446,2023,Count_Teacher,5.64,, -nces/279144305447,2023,Count_Teacher,3.8,, -nces/317458000209,2023,Count_Teacher,11.82,, -nces/317718002379,2023,Count_Teacher,0,, -nces/318009002335,2023,Count_Teacher,1,, -nces/320006000670,2023,Count_Teacher,6.5,, -nces/320006000756,2023,Count_Teacher,2.5,, -nces/350018700811,2023,Count_Teacher,32.5,, -nces/360007705767,2023,Count_Teacher,30.1,, -nces/360010206477,2023,Count_Teacher,26.71,, -nces/390487306154,2023,Count_Teacher,0,, -nces/400957002918,2023,Count_Teacher,66.24,, -nces/410674001907,2023,Count_Teacher,1.5,, -nces/420009100597,2023,Count_Teacher,51.45,, -nces/440090000492,2023,Count_Teacher,27,, -nces/530486002475,2023,Count_Teacher,8,, -nces/540135001603,2023,Count_Teacher,56,, -nces/550004502575,2023,Count_Teacher,28,, -nces/550747003029,2023,Count_Teacher,8.02,, -nces/550852002475,2023,Count_Teacher,47,, -nces/550891002902,2023,Count_Teacher,4,, -nces/551266002889,2023,Count_Teacher,2,, -nces/560147000454,2023,Count_Teacher,4.5,, -nces/720003000010,2023,Count_Teacher,17,, -nces/060429013779,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/080258006836,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819005118,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/080258006836,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,1,, -nces/080336006756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/270819005118,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272385001044,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/272520012756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_SchoolGrade12,0,, -nces/060429013779,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -nces/080258006836,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/200795002097,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -nces/270819004415,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,3,, -nces/270819005118,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -nces/272385001044,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,4,, -nces/272520012756,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/273351012806,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,6,, -nces/318009002335,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,0,, -nces/440090000492,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -nces/540135001603,2023,Count_Student_Female_TwoOrMoreRaces_SchoolGrade12,1,, -nces/060429013779,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -nces/080258006836,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/080336006756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/160153000605,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/180004602162,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -nces/200795002097,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/262016008622,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002502875,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503397,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503554,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503561,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002503562,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504216,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504476,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504573,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002504823,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270002512817,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270015000652,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/270819004415,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -nces/270819005118,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/271503005356,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -nces/272385001044,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/272520005371,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -nces/272520012756,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/273239005352,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,3,, -nces/273351012806,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/279144305447,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/318009002335,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/420009100597,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,1,, -nces/440090000492,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,0,, -nces/540135001603,2023,Count_Student_Male_TwoOrMoreRaces_SchoolGrade12,2,, -nces/060429013779,2023,Percent_Student_AsAFractionOf_Count_Teacher,30.52,, -nces/080258006836,2023,Percent_Student_AsAFractionOf_Count_Teacher,15.06,, -nces/080336006756,2023,Percent_Student_AsAFractionOf_Count_Teacher,9.59,, -nces/160153000605,2023,Percent_Student_AsAFractionOf_Count_Teacher,4,, -nces/173081003429,2023,Percent_Student_AsAFractionOf_Count_Teacher,11.81,, -nces/180004602162,2023,Percent_Student_AsAFractionOf_Count_Teacher,12.13,, -nces/250732002639,2023,Percent_Student_AsAFractionOf_Count_Teacher,9.63,, -nces/261884009043,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.04,, -nces/262016008622,2023,Percent_Student_AsAFractionOf_Count_Teacher,20,, -nces/262895007802,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.11,, -nces/270015000652,2023,Percent_Student_AsAFractionOf_Count_Teacher,13.24,, -nces/271503005356,2023,Percent_Student_AsAFractionOf_Count_Teacher,12.11,, -nces/272520005369,2023,Percent_Student_AsAFractionOf_Count_Teacher,10.61,, -nces/272520005370,2023,Percent_Student_AsAFractionOf_Count_Teacher,8.9,, -nces/272520005371,2023,Percent_Student_AsAFractionOf_Count_Teacher,8.96,, -nces/273239005352,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.37,, -nces/279144305446,2023,Percent_Student_AsAFractionOf_Count_Teacher,5.67,, -nces/279144305447,2023,Percent_Student_AsAFractionOf_Count_Teacher,47.89,, -nces/317458000209,2023,Percent_Student_AsAFractionOf_Count_Teacher,16.58,, -nces/318009002335,2023,Percent_Student_AsAFractionOf_Count_Teacher,0,, -nces/320006000670,2023,Percent_Student_AsAFractionOf_Count_Teacher,25.85,, -nces/320006000756,2023,Percent_Student_AsAFractionOf_Count_Teacher,28.4,, -nces/350018700811,2023,Percent_Student_AsAFractionOf_Count_Teacher,11.63,, -nces/360007705767,2023,Percent_Student_AsAFractionOf_Count_Teacher,5.88,, -nces/360010206477,2023,Percent_Student_AsAFractionOf_Count_Teacher,19.21,, -nces/400957002918,2023,Percent_Student_AsAFractionOf_Count_Teacher,18.7,, -nces/410674001907,2023,Percent_Student_AsAFractionOf_Count_Teacher,16.67,, -nces/420009100597,2023,Percent_Student_AsAFractionOf_Count_Teacher,21.44,, -nces/440090000492,2023,Percent_Student_AsAFractionOf_Count_Teacher,13.33,, -nces/530486002475,2023,Percent_Student_AsAFractionOf_Count_Teacher,20.38,, -nces/540135001603,2023,Percent_Student_AsAFractionOf_Count_Teacher,11.95,, -nces/550004502575,2023,Percent_Student_AsAFractionOf_Count_Teacher,18.29,, -nces/550747003029,2023,Percent_Student_AsAFractionOf_Count_Teacher,36.16,, -nces/550852002475,2023,Percent_Student_AsAFractionOf_Count_Teacher,12.64,, -nces/550891002902,2023,Percent_Student_AsAFractionOf_Count_Teacher,30,, -nces/551266002889,2023,Percent_Student_AsAFractionOf_Count_Teacher,20,, -nces/560147000454,2023,Percent_Student_AsAFractionOf_Count_Teacher,8,, -nces/720003000010,2023,Percent_Student_AsAFractionOf_Count_Teacher,9.71,, -nces/200795002097,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_UngradedClasses,1,, -nces/320006000670,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/320006000670,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_AmericanIndianOrAlaskaNative_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_Asian_UngradedClasses,2,, -nces/320006000670,2023,Count_Student_Female_Asian_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_Asian_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_Asian_UngradedClasses,2,, -nces/320006000670,2023,Count_Student_Male_Asian_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_Asian_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_Black_UngradedClasses,39,, -nces/320006000670,2023,Count_Student_Female_Black_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_Black_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_Black_UngradedClasses,19,, -nces/320006000670,2023,Count_Student_Male_Black_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_Black_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_HispanicOrLatino_UngradedClasses,58,, -nces/320006000670,2023,Count_Student_Female_HispanicOrLatino_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_HispanicOrLatino_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_HispanicOrLatino_UngradedClasses,32,, -nces/320006000670,2023,Count_Student_Male_HispanicOrLatino_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_HispanicOrLatino_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_UngradedClasses,1,, -nces/320006000670,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/320006000670,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_HawaiianNativeOrPacificIslander_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_TwoOrMoreRaces_UngradedClasses,5,, -nces/320006000670,2023,Count_Student_Female_TwoOrMoreRaces_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_TwoOrMoreRaces_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_TwoOrMoreRaces_UngradedClasses,1,, -nces/320006000670,2023,Count_Student_Male_TwoOrMoreRaces_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_TwoOrMoreRaces_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Female_White_UngradedClasses,19,, -nces/320006000670,2023,Count_Student_Female_White_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Female_White_UngradedClasses,0,, -nces/200795002097,2023,Count_Student_Male_White_UngradedClasses,9,, -nces/320006000670,2023,Count_Student_Male_White_UngradedClasses,0,, -nces/320006000756,2023,Count_Student_Male_White_UngradedClasses,0,, +nces/061077001195,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,25.0,, +nces/180004602162,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +nces/250732002639,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/262895007802,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004415,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004622,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/270819005118,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/271503005356,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/273239005351,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/273239005352,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +nces/273239005353,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/273351012806,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/317458000209,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/318009002335,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/420009100597,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/530486002475,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,4.0,, +nces/720003000010,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +nces/061077001195,2025,Count_Student_AmericanIndianOrAlaskaNative,49.0,, +nces/180004602162,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/250732002639,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/262895007802,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004415,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004622,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/270819005118,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/271503005356,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/273239005351,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/273239005352,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/273239005353,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/273351012806,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/317458000209,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/318009002335,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/420009100597,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/530486002475,2025,Count_Student_AmericanIndianOrAlaskaNative,10.0,, +nces/720003000010,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/061077001195,2025,Count_Student_Asian,0.0,, +nces/180004602162,2025,Count_Student_Asian,0.0,, +nces/250732002639,2025,Count_Student_Asian,10.0,, +nces/262895007802,2025,Count_Student_Asian,56.0,, +nces/270819004415,2025,Count_Student_Asian,1.0,, +nces/270819004622,2025,Count_Student_Asian,7.0,, +nces/270819005118,2025,Count_Student_Asian,0.0,, +nces/271503005356,2025,Count_Student_Asian,0.0,, +nces/273239005351,2025,Count_Student_Asian,0.0,, +nces/273239005352,2025,Count_Student_Asian,4.0,, +nces/273239005353,2025,Count_Student_Asian,0.0,, +nces/273351012806,2025,Count_Student_Asian,0.0,, +nces/317458000209,2025,Count_Student_Asian,0.0,, +nces/318009002335,2025,Count_Student_Asian,0.0,, +nces/420009100597,2025,Count_Student_Asian,17.0,, +nces/530486002475,2025,Count_Student_Asian,12.0,, +nces/720003000010,2025,Count_Student_Asian,0.0,, +nces/061077001195,2025,Count_Student_Black,0.0,, +nces/180004602162,2025,Count_Student_Black,1088.0,, +nces/250732002639,2025,Count_Student_Black,60.0,, +nces/262895007802,2025,Count_Student_Black,81.0,, +nces/270819004415,2025,Count_Student_Black,2.0,, +nces/270819004622,2025,Count_Student_Black,47.0,, +nces/270819005118,2025,Count_Student_Black,0.0,, +nces/271503005356,2025,Count_Student_Black,0.0,, +nces/273239005351,2025,Count_Student_Black,0.0,, +nces/273239005352,2025,Count_Student_Black,19.0,, +nces/273239005353,2025,Count_Student_Black,0.0,, +nces/273351012806,2025,Count_Student_Black,0.0,, +nces/317458000209,2025,Count_Student_Black,1.0,, +nces/318009002335,2025,Count_Student_Black,0.0,, +nces/420009100597,2025,Count_Student_Black,156.0,, +nces/530486002475,2025,Count_Student_Black,7.0,, +nces/720003000010,2025,Count_Student_Black,0.0,, +nces/061077001195,2025,Count_Student_Female,41.0,, +nces/180004602162,2025,Count_Student_Female,618.0,, +nces/250732002639,2025,Count_Student_Female,489.0,, +nces/262895007802,2025,Count_Student_Female,310.0,, +nces/270819004415,2025,Count_Student_Female,6.0,, +nces/270819004622,2025,Count_Student_Female,216.0,, +nces/270819005118,2025,Count_Student_Female,0.0,, +nces/271503005356,2025,Count_Student_Female,0.0,, +nces/273239005351,2025,Count_Student_Female,0.0,, +nces/273239005352,2025,Count_Student_Female,34.0,, +nces/273239005353,2025,Count_Student_Female,0.0,, +nces/273351012806,2025,Count_Student_Female,0.0,, +nces/317458000209,2025,Count_Student_Female,98.0,, +nces/318009002335,2025,Count_Student_Female,0.0,, +nces/420009100597,2025,Count_Student_Female,542.0,, +nces/530486002475,2025,Count_Student_Female,104.0,, +nces/720003000010,2025,Count_Student_Female,104.0,, +nces/061077001195,2025,Count_Student_FreeLunch,68.0,, +nces/180004602162,2025,Count_Student_FreeLunch,858.0,, +nces/262895007802,2025,Count_Student_FreeLunch,115.0,, +nces/270819004415,2025,Count_Student_FreeLunch,5.0,, +nces/270819004622,2025,Count_Student_FreeLunch,109.0,, +nces/273239005352,2025,Count_Student_FreeLunch,28.0,, +nces/317458000209,2025,Count_Student_FreeLunch,31.0,, +nces/530486002475,2025,Count_Student_FreeLunch,65.0,, +nces/720003000010,2025,Count_Student_FreeLunch,149.0,, +nces/061077001195,2025,Count_Student_DirectCertificationLunch,75.0,, +nces/180004602162,2025,Count_Student_DirectCertificationLunch,913.0,, +nces/262895007802,2025,Count_Student_DirectCertificationLunch,122.0,, +nces/270819004415,2025,Count_Student_DirectCertificationLunch,6.0,, +nces/270819004622,2025,Count_Student_DirectCertificationLunch,140.0,, +nces/273239005352,2025,Count_Student_DirectCertificationLunch,31.0,, +nces/317458000209,2025,Count_Student_DirectCertificationLunch,45.0,, +nces/530486002475,2025,Count_Student_DirectCertificationLunch,75.0,, +nces/720003000010,2025,Count_Student_DirectCertificationLunch,177.0,, +nces/061077001195,2025,Count_Student_SchoolGrade1,10.0,, +nces/180004602162,2025,Count_Student_SchoolGrade1,87.0,, +nces/262895007802,2025,Count_Student_SchoolGrade1,96.0,, +nces/273239005353,2025,Count_Student_SchoolGrade1,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade1,20.0,, +nces/180004602162,2025,Count_Student_SchoolGrade10,87.0,, +nces/270819004415,2025,Count_Student_SchoolGrade10,0.0,, +nces/270819005118,2025,Count_Student_SchoolGrade10,0.0,, +nces/271503005356,2025,Count_Student_SchoolGrade10,0.0,, +nces/273239005352,2025,Count_Student_SchoolGrade10,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade10,0.0,, +nces/318009002335,2025,Count_Student_SchoolGrade10,0.0,, +nces/420009100597,2025,Count_Student_SchoolGrade10,193.0,, +nces/180004602162,2025,Count_Student_SchoolGrade11,88.0,, +nces/270819004415,2025,Count_Student_SchoolGrade11,4.0,, +nces/270819005118,2025,Count_Student_SchoolGrade11,0.0,, +nces/271503005356,2025,Count_Student_SchoolGrade11,0.0,, +nces/273239005352,2025,Count_Student_SchoolGrade11,31.0,, +nces/273351012806,2025,Count_Student_SchoolGrade11,0.0,, +nces/318009002335,2025,Count_Student_SchoolGrade11,0.0,, +nces/420009100597,2025,Count_Student_SchoolGrade11,245.0,, +nces/180004602162,2025,Count_Student_SchoolGrade12,87.0,, +nces/270819004415,2025,Count_Student_SchoolGrade12,24.0,, +nces/270819005118,2025,Count_Student_SchoolGrade12,0.0,, +nces/271503005356,2025,Count_Student_SchoolGrade12,0.0,, +nces/273239005352,2025,Count_Student_SchoolGrade12,40.0,, +nces/273351012806,2025,Count_Student_SchoolGrade12,0.0,, +nces/318009002335,2025,Count_Student_SchoolGrade12,0.0,, +nces/420009100597,2025,Count_Student_SchoolGrade12,206.0,, +nces/061077001195,2025,Count_Student_SchoolGrade2,8.0,, +nces/180004602162,2025,Count_Student_SchoolGrade2,101.0,, +nces/262895007802,2025,Count_Student_SchoolGrade2,88.0,, +nces/273239005353,2025,Count_Student_SchoolGrade2,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade2,21.0,, +nces/061077001195,2025,Count_Student_SchoolGrade3,19.0,, +nces/180004602162,2025,Count_Student_SchoolGrade3,82.0,, +nces/262895007802,2025,Count_Student_SchoolGrade3,87.0,, +nces/273239005353,2025,Count_Student_SchoolGrade3,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade3,22.0,, +nces/061077001195,2025,Count_Student_SchoolGrade4,17.0,, +nces/180004602162,2025,Count_Student_SchoolGrade4,81.0,, +nces/262895007802,2025,Count_Student_SchoolGrade4,103.0,, +nces/273239005353,2025,Count_Student_SchoolGrade4,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade4,19.0,, +nces/061077001195,2025,Count_Student_SchoolGrade5,14.0,, +nces/180004602162,2025,Count_Student_SchoolGrade5,98.0,, +nces/262895007802,2025,Count_Student_SchoolGrade5,102.0,, +nces/273239005353,2025,Count_Student_SchoolGrade5,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade5,21.0,, +nces/061077001195,2025,Count_Student_SchoolGrade6,0.0,, +nces/180004602162,2025,Count_Student_SchoolGrade6,67.0,, +nces/250732002639,2025,Count_Student_SchoolGrade6,369.0,, +nces/270819004622,2025,Count_Student_SchoolGrade6,139.0,, +nces/270819005118,2025,Count_Student_SchoolGrade6,0.0,, +nces/273239005351,2025,Count_Student_SchoolGrade6,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade6,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade6,22.0,, +nces/420009100597,2025,Count_Student_SchoolGrade6,20.0,, +nces/530486002475,2025,Count_Student_SchoolGrade6,105.0,, +nces/720003000010,2025,Count_Student_SchoolGrade6,62.0,, +nces/180004602162,2025,Count_Student_SchoolGrade7,93.0,, +nces/250732002639,2025,Count_Student_SchoolGrade7,292.0,, +nces/270819004622,2025,Count_Student_SchoolGrade7,142.0,, +nces/270819005118,2025,Count_Student_SchoolGrade7,0.0,, +nces/273239005351,2025,Count_Student_SchoolGrade7,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade7,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade7,24.0,, +nces/420009100597,2025,Count_Student_SchoolGrade7,53.0,, +nces/530486002475,2025,Count_Student_SchoolGrade7,57.0,, +nces/720003000010,2025,Count_Student_SchoolGrade7,59.0,, +nces/180004602162,2025,Count_Student_SchoolGrade8,84.0,, +nces/250732002639,2025,Count_Student_SchoolGrade8,304.0,, +nces/270819004622,2025,Count_Student_SchoolGrade8,130.0,, +nces/270819005118,2025,Count_Student_SchoolGrade8,0.0,, +nces/273239005351,2025,Count_Student_SchoolGrade8,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade8,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade8,24.0,, +nces/420009100597,2025,Count_Student_SchoolGrade8,77.0,, +nces/530486002475,2025,Count_Student_SchoolGrade8,55.0,, +nces/720003000010,2025,Count_Student_SchoolGrade8,75.0,, +nces/180004602162,2025,Count_Student_SchoolGrade9,118.0,, +nces/270819004415,2025,Count_Student_SchoolGrade9,0.0,, +nces/270819005118,2025,Count_Student_SchoolGrade9,0.0,, +nces/271503005356,2025,Count_Student_SchoolGrade9,0.0,, +nces/273239005352,2025,Count_Student_SchoolGrade9,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade9,0.0,, +nces/318009002335,2025,Count_Student_SchoolGrade9,0.0,, +nces/420009100597,2025,Count_Student_SchoolGrade9,202.0,, +nces/061077001195,2025,Count_Student_SchoolGrade1To8,68.0,, +nces/180004602162,2025,Count_Student_SchoolGrade1To8,693.0,, +nces/250732002639,2025,Count_Student_SchoolGrade1To8,965.0,, +nces/262895007802,2025,Count_Student_SchoolGrade1To8,476.0,, +nces/270819004622,2025,Count_Student_SchoolGrade1To8,411.0,, +nces/270819005118,2025,Count_Student_SchoolGrade1To8,0.0,, +nces/273239005351,2025,Count_Student_SchoolGrade1To8,0.0,, +nces/273239005353,2025,Count_Student_SchoolGrade1To8,0.0,, +nces/273351012806,2025,Count_Student_SchoolGrade1To8,0.0,, +nces/317458000209,2025,Count_Student_SchoolGrade1To8,173.0,, +nces/420009100597,2025,Count_Student_SchoolGrade1To8,150.0,, +nces/530486002475,2025,Count_Student_SchoolGrade1To8,217.0,, +nces/720003000010,2025,Count_Student_SchoolGrade1To8,196.0,, +nces/180004602162,2025,Count_Student_SchoolGrade9To12,380.0,, +nces/270819004415,2025,Count_Student_SchoolGrade9To12,28.0,, +nces/270819005118,2025,Count_Student_SchoolGrade9To12,0.0,, +nces/271503005356,2025,Count_Student_SchoolGrade9To12,0.0,, +nces/273239005352,2025,Count_Student_SchoolGrade9To12,71.0,, +nces/273351012806,2025,Count_Student_SchoolGrade9To12,0.0,, +nces/318009002335,2025,Count_Student_SchoolGrade9To12,0.0,, +nces/420009100597,2025,Count_Student_SchoolGrade9To12,846.0,, +nces/061077001195,2025,Count_Student_HispanicOrLatino,10.0,, +nces/180004602162,2025,Count_Student_HispanicOrLatino,64.0,, +nces/250732002639,2025,Count_Student_HispanicOrLatino,641.0,, +nces/262895007802,2025,Count_Student_HispanicOrLatino,47.0,, +nces/270819004415,2025,Count_Student_HispanicOrLatino,5.0,, +nces/270819004622,2025,Count_Student_HispanicOrLatino,77.0,, +nces/270819005118,2025,Count_Student_HispanicOrLatino,0.0,, +nces/271503005356,2025,Count_Student_HispanicOrLatino,0.0,, +nces/273239005351,2025,Count_Student_HispanicOrLatino,0.0,, +nces/273239005352,2025,Count_Student_HispanicOrLatino,7.0,, +nces/273239005353,2025,Count_Student_HispanicOrLatino,0.0,, +nces/273351012806,2025,Count_Student_HispanicOrLatino,0.0,, +nces/317458000209,2025,Count_Student_HispanicOrLatino,19.0,, +nces/318009002335,2025,Count_Student_HispanicOrLatino,0.0,, +nces/420009100597,2025,Count_Student_HispanicOrLatino,78.0,, +nces/530486002475,2025,Count_Student_HispanicOrLatino,46.0,, +nces/720003000010,2025,Count_Student_HispanicOrLatino,194.0,, +nces/061077001195,2025,Count_Student_Kindergarten,18.0,, +nces/180004602162,2025,Count_Student_Kindergarten,107.0,, +nces/262895007802,2025,Count_Student_Kindergarten,113.0,, +nces/273239005353,2025,Count_Student_Kindergarten,0.0,, +nces/317458000209,2025,Count_Student_Kindergarten,21.0,, +nces/061077001195,2025,Count_Student_Male,45.0,, +nces/180004602162,2025,Count_Student_Male,562.0,, +nces/250732002639,2025,Count_Student_Male,474.0,, +nces/262895007802,2025,Count_Student_Male,279.0,, +nces/270819004415,2025,Count_Student_Male,22.0,, +nces/270819004622,2025,Count_Student_Male,195.0,, +nces/270819005118,2025,Count_Student_Male,0.0,, +nces/271503005356,2025,Count_Student_Male,0.0,, +nces/273239005351,2025,Count_Student_Male,0.0,, +nces/273239005352,2025,Count_Student_Male,37.0,, +nces/273239005353,2025,Count_Student_Male,0.0,, +nces/273351012806,2025,Count_Student_Male,0.0,, +nces/317458000209,2025,Count_Student_Male,96.0,, +nces/318009002335,2025,Count_Student_Male,0.0,, +nces/420009100597,2025,Count_Student_Male,454.0,, +nces/530486002475,2025,Count_Student_Male,113.0,, +nces/720003000010,2025,Count_Student_Male,92.0,, +nces/061077001195,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/180004602162,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/250732002639,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/262895007802,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/270819004415,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/270819004622,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +nces/270819005118,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/271503005356,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/273239005351,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/273239005352,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/273239005353,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/273351012806,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/317458000209,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/318009002335,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/420009100597,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, +nces/530486002475,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/720003000010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/262895007802,2025,Count_Student_PreKindergarten,0.0,, +nces/317458000209,2025,Count_Student_PreKindergarten,0.0,, +nces/061077001195,2025,Count_Student_ReducedLunch,7.0,, +nces/180004602162,2025,Count_Student_ReducedLunch,55.0,, +nces/262895007802,2025,Count_Student_ReducedLunch,7.0,, +nces/270819004415,2025,Count_Student_ReducedLunch,1.0,, +nces/270819004622,2025,Count_Student_ReducedLunch,31.0,, +nces/273239005352,2025,Count_Student_ReducedLunch,3.0,, +nces/317458000209,2025,Count_Student_ReducedLunch,14.0,, +nces/530486002475,2025,Count_Student_ReducedLunch,10.0,, +nces/720003000010,2025,Count_Student_ReducedLunch,28.0,, +nces/061077001195,2025,Count_Student,86.0,, +nces/180004602162,2025,Count_Student,1180.0,, +nces/250732002639,2025,Count_Student,965.0,, +nces/262895007802,2025,Count_Student,589.0,, +nces/270819004415,2025,Count_Student,28.0,, +nces/270819004622,2025,Count_Student,411.0,, +nces/270819005118,2025,Count_Student,0.0,, +nces/271503005356,2025,Count_Student,0.0,, +nces/273239005351,2025,Count_Student,0.0,, +nces/273239005352,2025,Count_Student,71.0,, +nces/273239005353,2025,Count_Student,0.0,, +nces/273351012806,2025,Count_Student,0.0,, +nces/317458000209,2025,Count_Student,194.0,, +nces/318009002335,2025,Count_Student,0.0,, +nces/420009100597,2025,Count_Student,996.0,, +nces/530486002475,2025,Count_Student,217.0,, +nces/720003000010,2025,Count_Student,196.0,, +nces/061077001195,2025,Count_Student_TwoOrMoreRaces,8.0,, +nces/180004602162,2025,Count_Student_TwoOrMoreRaces,26.0,, +nces/250732002639,2025,Count_Student_TwoOrMoreRaces,22.0,, +nces/262895007802,2025,Count_Student_TwoOrMoreRaces,60.0,, +nces/270819004415,2025,Count_Student_TwoOrMoreRaces,3.0,, +nces/270819004622,2025,Count_Student_TwoOrMoreRaces,26.0,, +nces/270819005118,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/271503005356,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/273239005351,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/273239005352,2025,Count_Student_TwoOrMoreRaces,10.0,, +nces/273239005353,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/273351012806,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/317458000209,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/318009002335,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/420009100597,2025,Count_Student_TwoOrMoreRaces,76.0,, +nces/530486002475,2025,Count_Student_TwoOrMoreRaces,35.0,, +nces/720003000010,2025,Count_Student_TwoOrMoreRaces,0.0,, +nces/061077001195,2025,Count_Student_White,19.0,, +nces/180004602162,2025,Count_Student_White,1.0,, +nces/250732002639,2025,Count_Student_White,229.0,, +nces/262895007802,2025,Count_Student_White,345.0,, +nces/270819004415,2025,Count_Student_White,17.0,, +nces/270819004622,2025,Count_Student_White,253.0,, +nces/270819005118,2025,Count_Student_White,0.0,, +nces/271503005356,2025,Count_Student_White,0.0,, +nces/273239005351,2025,Count_Student_White,0.0,, +nces/273239005352,2025,Count_Student_White,30.0,, +nces/273239005353,2025,Count_Student_White,0.0,, +nces/273351012806,2025,Count_Student_White,0.0,, +nces/317458000209,2025,Count_Student_White,174.0,, +nces/318009002335,2025,Count_Student_White,0.0,, +nces/420009100597,2025,Count_Student_White,665.0,, +nces/530486002475,2025,Count_Student_White,107.0,, +nces/720003000010,2025,Count_Student_White,2.0,, diff --git a/scripts/us_nces/demographics/public_school/validation_config.json b/scripts/us_nces/demographics/public_school/validation_config.json new file mode 100644 index 0000000000..a658238861 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/validation_config.json @@ -0,0 +1,13 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Strictly enforce historical deletion average threshold of 0.1%", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + } + ] +} diff --git a/scripts/us_nces/demographics/school_district/config.py b/scripts/us_nces/demographics/school_district/config.py index 7f8a6126ba..c25b3262cd 100644 --- a/scripts/us_nces/demographics/school_district/config.py +++ b/scripts/us_nces/demographics/school_district/config.py @@ -33,7 +33,6 @@ "Two or More Races.*", "Nat. Hawaiian or Other Pacific Isl.*", "Grades.*", "Prekindergarten and Kindergarten.*" ] - # Excluding the unwanted columns. EXCLUDE_DATA_COLUMNS = [ "Individualized Education Program Students", '(Includes AE)', From 6d4840e0ab7b787aaec409ff14a4a4dc4c566389 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 31 Aug 2026 11:54:08 +0000 Subject: [PATCH 08/17] Fix Python formatting as per yapf style --- scripts/us_nces/common/prop_conf.py | 2 ++ scripts/us_nces/common/us_education.py | 9 ++++----- scripts/us_nces/demographics/school_district/config.py | 7 ++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py index f6f664819a..4326f04a2a 100644 --- a/scripts/us_nces/common/prop_conf.py +++ b/scripts/us_nces/common/prop_conf.py @@ -131,11 +131,13 @@ # melting the columns based on sv_name column. MELT_VAR_COL = "sv_name" + def _PV_FORMAT(pv): """Formats property-value pairs for MCF nodes; modified based on column.""" t = tuple(pv) return f'"{t[0]}": "dcs:{t[1]}"' if 'None' not in str(t[1]) else "" + # pylint:disable=unnecessary-lambda-assignment _UPDATE_MEASUREMENT_DENO = lambda prop: _DENOMINATOR_PROP.get(prop, prop) _UPDATE_POPULATION_TYPE = lambda prop: _POPULATION_PROP.get(prop, "Student") diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index bd224ef15d..031c6929a6 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -940,11 +940,10 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: #If current year data is already there in main df - merge the columns # Combine place columns of the same year with key columns - df_dist_tmp = ( - df_dist_tmp.set_index(self._key_col_place) - .combine_first(df_place.set_index(self._key_col_place)) - .reset_index() - ) + df_dist_tmp = (df_dist_tmp.set_index( + self._key_col_place).combine_first( + df_place.set_index( + self._key_col_place)).reset_index()) else: # The current year data not present in final df diff --git a/scripts/us_nces/demographics/school_district/config.py b/scripts/us_nces/demographics/school_district/config.py index c25b3262cd..0b983c006d 100644 --- a/scripts/us_nces/demographics/school_district/config.py +++ b/scripts/us_nces/demographics/school_district/config.py @@ -28,9 +28,10 @@ # Considering the required columns for Demographics Data. POSSIBLE_DATA_COLUMNS = [ "[Public School]", ".*Students.*", ".*Teacher.*", ".*American.*", - ".*Asian.*", ".*Hispanic.*", ".*Black.*", ".*White.*", ".*Adult Education.*", - ".*Staff.*", ".*Admin.*", ".*Counselor.*", ".*Psychologist.*", "Ungraded.*", - "Two or More Races.*", "Nat. Hawaiian or Other Pacific Isl.*", "Grades.*", + ".*Asian.*", ".*Hispanic.*", ".*Black.*", ".*White.*", + ".*Adult Education.*", ".*Staff.*", ".*Admin.*", ".*Counselor.*", + ".*Psychologist.*", "Ungraded.*", "Two or More Races.*", + "Nat. Hawaiian or Other Pacific Isl.*", "Grades.*", "Prekindergarten and Kindergarten.*" ] # Excluding the unwanted columns. From a2c33dae6daca3261803b7cd4dbbc098a506da00 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 2 Sep 2026 05:09:11 +0000 Subject: [PATCH 09/17] Updated place merge logic --- scripts/us_nces/common/us_education.py | 56 ++++++-------------------- 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index bd224ef15d..7111c6ba3a 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -665,12 +665,12 @@ def _transform_public_place(self): self._final_df_place["Public_School_Name"].astype(str).apply( lambda x: x.title())) - # Sorting and dropping duplicates - self._final_df_place = self._final_df_place.sort_values(by=["year"], - ascending=False) - self._final_df_place = self._final_df_place.reset_index(drop=True) - self._final_df_place = self._final_df_place.drop_duplicates( - subset=["school_state_code"]).reset_index(drop=True) + # Sorting and merging non-null place columns + self._final_df_place = ( + self._final_df_place.sort_values(by=["year"], ascending=False) + .groupby("school_state_code", as_index=False, sort=False) + .first() + ) @log_method_execution def _transform_district_place(self): @@ -815,10 +815,11 @@ def _transform_district_place(self): to_replace={'': pd.NA}) self._final_df_place[col] = "dcs:" + self._final_df_place[col] - self._final_df_place = self._final_df_place.sort_values(by=["year"], - ascending=False) - self._final_df_place = self._final_df_place.drop_duplicates( - subset=["school_state_code"]).reset_index(drop=True) + self._final_df_place = ( + self._final_df_place.sort_values(by=["year"], ascending=False) + .groupby("school_state_code", as_index=False, sort=False) + .first() + ) @log_method_execution def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: @@ -928,41 +929,8 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: "private_school", "district_school", "public_school" ]: df_place.loc[:, 'year'] = self._year[0:4].strip() - df_place = df_place.loc[:, ~df_place.columns.duplicated()] - if self._final_df_place.shape[0] > 0: - - #Merge the place columns for the current year which is across different files. - df_dist_tmp = self._final_df_place.loc[ - self._final_df_place['year'] == self._year[0:4].strip()] - - if df_dist_tmp.shape[0] > 0: - #If current year data is already there in main df - merge the columns - - # Combine place columns of the same year with key columns - df_dist_tmp = ( - df_dist_tmp.set_index(self._key_col_place) - .combine_first(df_place.set_index(self._key_col_place)) - .reset_index() - ) - - else: - # The current year data not present in final df - - df_dist_tmp = df_place - - # Concat the current processing year data to final place df - - self._final_df_place = pd.concat([ - self._final_df_place.loc[self._final_df_place['year'] != - self._year[0:4].strip()], - df_dist_tmp - ]) - - else: - # For the first file being processed set the final place dataframe to place columns from the current file. - - self._final_df_place = df_place + self._final_df_place = pd.concat([self._final_df_place, df_place]) if not self._generate_statvars: return df_cleaned[data_cols] From a815f5671c9f239f4c6322773f72720364fbfdd8 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 2 Sep 2026 05:46:26 +0000 Subject: [PATCH 10/17] Fix Python formatting as per yapf style --- scripts/us_nces/common/us_education.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index 7111c6ba3a..8a30c08c48 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -666,11 +666,10 @@ def _transform_public_place(self): lambda x: x.title())) # Sorting and merging non-null place columns - self._final_df_place = ( - self._final_df_place.sort_values(by=["year"], ascending=False) - .groupby("school_state_code", as_index=False, sort=False) - .first() - ) + self._final_df_place = (self._final_df_place.sort_values( + by=["year"], ascending=False).groupby("school_state_code", + as_index=False, + sort=False).first()) @log_method_execution def _transform_district_place(self): @@ -815,11 +814,10 @@ def _transform_district_place(self): to_replace={'': pd.NA}) self._final_df_place[col] = "dcs:" + self._final_df_place[col] - self._final_df_place = ( - self._final_df_place.sort_values(by=["year"], ascending=False) - .groupby("school_state_code", as_index=False, sort=False) - .first() - ) + self._final_df_place = (self._final_df_place.sort_values( + by=["year"], ascending=False).groupby("school_state_code", + as_index=False, + sort=False).first()) @log_method_execution def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: From d2eae4ad970858266bd31e3fd688b98fa011d2b3 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 2 Sep 2026 09:03:05 +0000 Subject: [PATCH 11/17] updated test files --- ...ELSI_csv_export_6388698149695369774990.csv | 20 + ...ELSI_csv_export_6392166529530453281445.csv | 10 - .../us_nces_demographics_public_place.csv | 31 +- .../us_nces_demographics_public_school.csv | 323 +++---- ...ELSI_csv_export_6388697913866868074478.csv | 20 + ...ELSI_csv_export_6391562516627516691672.csv | 30 - .../ELSI_csv_export_639156251902613595159.csv | 20 + .../us_nces_demographics_district_place.csv | 29 +- .../us_nces_demographics_district_school.csv | 876 +++++++----------- 9 files changed, 541 insertions(+), 818 deletions(-) create mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6388698149695369774990.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6388697913866868074478.csv delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6388698149695369774990.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6388698149695369774990.csv new file mode 100644 index 0000000000..2b448b9ced --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6388698149695369774990.csv @@ -0,0 +1,20 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a Public School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +School Name,State Name [Public School] Latest available year,State Name [Public School] 2015-16,State Abbr [Public School] Latest available year,School Name [Public School] 2015-16,School ID (12-digit) - NCES Assigned [Public School] Latest available year,Agency Name [Public School] 2015-16,Agency ID - NCES Assigned [Public School] Latest available year,County Number [Public School] 2015-16,ANSI/FIPS State Code [Public School] Latest available year,Location Address 1 [Public School] 2015-16,Location City [Public School] 2015-16,Location ZIP [Public School] 2015-16,Location ZIP4 [Public School] 2015-16,Phone Number [Public School] 2015-16,School Type [Public School] 2015-16,Charter School [Public School] 2015-16,Magnet School [Public School] 2015-16,Locale [Public School] 2015-16,Title I School Status [Public School] 2015-16,Latitude [Public School] 2015-16,Longitude [Public School] 2015-16,State School ID [Public School] 2015-16,National School Lunch Program [Public School] 2015-16,School Level [Public School] 2015-16,Lowest Grade Offered [Public School] 2015-16,Highest Grade Offered [Public School] 2015-16,Total Students All Grades (Excludes AE) [Public School] 2015-16,Total Students All Grades (Includes AE) [Public School] 2015-16,Free Lunch Eligible [Public School] 2015-16,Reduced-price Lunch Eligible Students [Public School] 2015-16,Free and Reduced Lunch Students [Public School] 2015-16,Grades 1-8 Students [Public School] 2015-16,Grades 9-12 Students [Public School] 2015-16,Prekindergarten Students [Public School] 2015-16,Kindergarten Students [Public School] 2015-16,Grade 1 Students [Public School] 2015-16,Grade 2 Students [Public School] 2015-16,Grade 3 Students [Public School] 2015-16,Grade 4 Students [Public School] 2015-16,Grade 5 Students [Public School] 2015-16,Grade 6 Students [Public School] 2015-16,Grade 7 Students [Public School] 2015-16,Grade 8 Students [Public School] 2015-16,Grade 9 Students [Public School] 2015-16,Grade 10 Students [Public School] 2015-16,Grade 11 Students [Public School] 2015-16,Grade 12 Students [Public School] 2015-16,Grade 13 Students [Public School] 2015-16,Ungraded Students [Public School] 2015-16,Adult Education Students [Public School] 2015-16,Male Students [Public School] 2015-16,Female Students [Public School] 2015-16,American Indian/Alaska Native Students [Public School] 2015-16,Asian or Asian/Pacific Islander Students [Public School] 2015-16,Hispanic Students [Public School] 2015-16,Black or African American Students [Public School] 2015-16,White Students [Public School] 2015-16,Nat. Hawaiian or Other Pacific Isl. Students [Public School] 2015-16,Two or More Races Students [Public School] 2015-16,Total Race/Ethnicity [Public School] 2015-16 +1 LT CHARLES W. WHITCOMB SCHOOL,Massachusetts,MASSACHUSETTS,MA ,1 LT Charles W. Whitcomb School,250732002639,Marlborough,2507320,25017,25,25 UNION STREET,MARLBOROUGH,01752,†,5084603502,1-Regular school,2-No,2-No,21-Suburb: Large,5-Title I schoolwide school,42.357350,-71.548591,0170-01700045,Yes participating without using any Provision or the CEO,2-Middle,5th Grade,8th Grade,1298,1298,–,–,–,1298,†,†,†,†,†,†,†,381,288,306,323,†,†,†,†,†,0,†,687,611,1,34,540,38,648,0,37,1298 +100 ACADEMY OF ENGINEERING AND TECHNOLOGY ES,Nevada,NEVADA,NV ,Imagine 100 Academy of Excellence,320006000670,CLARK COUNTY SCHOOL DISTRICT,3200060,32003,32,2341 COMSTOCK DR.,NORTH LAS VEGAS,89032,†,7026362551,1-Regular school,1-Yes,2-No,11-City: Large,5-Title I schoolwide school,36.200008,-115.164596,02-02093,Yes participating without using any Provision or the CEO,1-Primary,Prekindergarten,5th Grade,441,441,368,34,402,367,†,0,74,72,85,79,67,64,†,†,†,†,†,†,†,†,†,†,199,242,1,2,80,321,4,1,32,441 +100 ACADEMY OF ENGINEERING AND TECHNOLOGY MS,Nevada,NEVADA,NV ,Imagine 100 Academy of Excellence,320006000756,CLARK COUNTY SCHOOL DISTRICT,3200060,32003,32,2341 COMSTOCK DR.,NORTH LAS VEGAS,89032,†,7026362551,1-Regular school,1-Yes,2-No,21-Suburb: Large,5-Title I schoolwide school,36.201490,-115.166081,02-02364,Yes participating without using any Provision or the CEO,2-Middle,6th Grade,8th Grade,132,132,110,7,117,132,†,†,†,†,†,†,†,†,49,41,42,†,†,†,†,†,†,†,67,65,0,0,36,89,1,0,6,132 +10TH STREET SCHOOL,Washington,WASHINGTON,WA ,10th Street School,530486002475,Marysville School District,5304860,53061,53,7204 27TH AVE NE,MARYSVILLE,98271,†,3609650400,1-Regular school,2-No,–,22-Suburb: Mid-size,5-Title I schoolwide school,48.061912,-122.194909,31025-1656,Yes participating without using any Provision or the CEO,2-Middle,6th Grade,8th Grade,171,171,28,3,31,171,†,†,†,†,†,†,†,†,61,60,50,†,†,†,†,†,†,†,77,94,8,5,20,1,122,0,15,171 +112 ALC INDEPENDENT STUDY,Minnesota,MINNESOTA,MN ,112 ALC AFTER SCHOOL & SUMMER SCH,270819004415,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27019,27,11 PEAVEY RD,CHASKA,55317,2321,9525566211,4-Alternative Education School,2-No,2-No,21-Suburb: Large,6-Not a Title I school,44.841740,-93.596841,010112-010112067,No,3-High,9th Grade,12th Grade,34,34,8,3,11,†,34,†,†,†,†,†,†,†,†,†,†,0,0,0,34,†,†,†,24,10,0,1,10,0,22,0,1,34 +112 ALC MIDDLE SCHOOL,Minnesota,MINNESOTA,MN ,112 ALC MIDDLE SCHOOL,270819004622,EASTERN CARVER COUNTY PUBLIC SCHOOL,2708190,27019,27,11 PEAVEY RD,CHASKA,55318,8888,9525566211,4-Alternative Education School,2-No,2-No,21-Suburb: Large,6-Not a Title I school,44.842800,-93.596591,010112-010112066,No,2-Middle,6th Grade,8th Grade,130,130,54,7,61,130,†,†,†,†,†,†,†,†,22,22,86,†,†,†,†,†,†,†,65,65,0,5,32,8,82,0,3,130 +12TH STREET ELEMENTARY,Michigan,MICHIGAN,MI ,12th Street Elementary,262895007802,Portage Public Schools,2628950,26077,26,6501 SOUTH 12TH ST,PORTAGE,49024,1705,2693236900,1-Regular school,2-No,2-No,13-City: Small,6-Not a Title I school,42.220382,-85.646607,39140-09848,Yes participating without using any Provision or the CEO,1-Primary,Prekindergarten,5th Grade,594,594,99,21,120,478,†,–,116,71,99,95,112,101,†,†,†,†,†,†,†,†,0,†,292,302,0,68,27,48,406,0,45,594 +133-K8-N-6,Florida,FLORIDA,FL ,133-K8-N-6,120144008289,ORANGE,1201440,12095,12,445 W AMELIA ST,ORLANDO,32801,1129,4073173209,1-Regular school,2-No,†,11-City: Large,†,28.565644,-81.347048,48-1851,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0 +1R ELEMENTARY,Nebraska,NEBRASKA,NE ,1R ELEMENTARY,317458000209,NORTHWEST PUBLIC SCHOOLS,3174580,31079,31,3301 W ONE-R ROAD,GRAND ISLAND,68803,9331,3083856352,1-Regular school,†,†,41-Rural: Fringe,6-Not a Title I school,41.002960,-98.379911,400082000-400082003,Yes participating without using any Provision or the CEO,1-Primary,Prekindergarten,8th Grade,171,171,15,30,45,152,†,1,18,17,17,17,23,23,17,14,24,†,†,†,†,†,†,†,96,75,1,0,12,3,155,0,0,171 +20 DE SEPTIEMBRE DE 1988,Puerto Rico,PUERTO RICO,PR ,ESC INT 20 DE SEPTIEMBRE DE 1988,720003000010,PUERTO RICO DEPARTMENT OF EDUCATION,7200030,72147,72,CARR ESTATAL 200 ESQ CARR ESTA,VIEQUES,00765,†,7877413091,1-Regular school,†,†,41-Rural: Fringe,5-Title I schoolwide school,18.098410,-65.423530,01-35295,Yes participating without using any Provision or the CEO,2-Middle,6th Grade,8th Grade,210,210,172,18,190,208,†,†,†,†,†,†,†,†,70,67,71,†,†,†,†,†,2,†,96,114,0,0,210,0,0,0,0,210 +21-M-E-2,FLORIDA,FLORIDA,FL ,21-M-E-2,120144008431,ORANGE,1201440,12095,12,445 W AMELIA ST,ORLANDO,32801,1129,4073173209,1-Regular school,2-No,†,21-Suburb: Large,†,28.534597,-81.139077,48-1852,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0 +21ST CENTURY ACADEMY,Kentucky,KENTUCKY,KY ,21st Century Academy,210115002241,Christian County,2101150,21047,21,210 GLASS AVE,HOPKINSVILLE,42240,†,2708877401,4-Alternative Education School,†,2-No,32-Town: Distant,6-Not a Title I school,36.879210,-87.492835,024115000-024115185,No,3-High,8th Grade,12th Grade,61,61,46,3,49,1,60,†,†,†,†,†,†,†,†,†,1,3,12,21,24,†,†,†,39,22,0,0,1,25,33,0,2,61 +21ST CENTURY CHARTER SCH OF GARY,Indiana,INDIANA,IN ,21st Century Charter Sch of Gary,180004602162,21st Century Charter Sch of Gary,1800046,18089,18,556 WASHINGTON ST,GARY,46402,†,2198869339,1-Regular school,1-Yes,2-No,13-City: Small,5-Title I schoolwide school,41.600960,-87.338900,9545-4164,Yes under Community Eligibility Option (CEO),4-Other,Kindergarten,12th Grade,758,758,718,0,718,487,208,†,63,55,67,63,57,56,60,66,63,64,59,48,37,†,†,†,392,366,1,0,15,734,0,0,8,758 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv index f356dfec03..20c4350bfe 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_input/ELSI_csv_export_6392166529530453281445.csv @@ -18,13 +18,3 @@ School Name,State Name [Public School] Latest available year,State Name [Public 196ONLINE ELEMENTARY,MINNESOTA,MINNESOTA,MN ,196Online Elementary,273239005353,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196766,No,Elementary,Kindergarten,5th Grade,0,0,†,†,†,†,0,†,†,0,0,0,0,0,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0 196ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online High School,273239005352,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6519055857,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196067,No,High,9th Grade,12th Grade,71,71,28,28,3,31,†,71,†,†,†,†,†,†,†,†,†,†,0,0,31,40,†,†,†,37,34,1,4,7,19,30,0,10,71,1 196ONLINE MIDDLE SCHOOL,MINNESOTA,MINNESOTA,MN ,196Online Middle School,273239005351,ROSEMOUNT-APPLE VALLEY-EAGAN,2732390,27037,27,3455 153RD ST W,ROSEMOUNT,55068,8888,6514237915,1-Regular school,2-No,13-City: Small,44.817947,-93.217123,MN-010196-010196066,No,Middle,6th Grade,8th Grade,0,0,†,†,†,†,0,†,†,†,†,†,†,†,†,0,0,0,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,0,0,0 -199 ONLINE HIGH SCHOOL,MINNESOTA,MINNESOTA,MN ,199 Online High School,271503005356,INVER GROVE HEIGHTS SCHOOLS,2715030,27037,27,2920 80TH ST E,INVER GROVE HEIGHTS,55076,8888,6513067009,1-Regular school,2-No,21-Suburb: Large,44.832598,-93.047207,MN-010199-010199090,No,High,9th Grade,12th Grade,0,0,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,0,0,0,0,†,†,†,0,0,0,0,0,0,0,0,0,0,0 -1R ELEMENTARY,Nebraska,NEBRASKA,NE ,1R ELEMENTARY,317458000209,NORTHWEST PUBLIC SCHOOLS,3174580,31079,31,3301 W ONE-R ROAD,GRAND ISLAND,68803,9331,3083856352,1-Regular school,†,41-Rural: Fringe,41.002783,-98.379562,NE-400082000-400082003,Yes participating without using any Provision or the CEO,Elementary,Prekindergarten,8th Grade,194,194,31,–,14,45,173,†,0,21,20,21,22,19,21,22,24,24,†,†,†,†,†,†,†,96,98,0,0,19,1,174,0,0,194,0 -20 DE SEPTIEMBRE DE 1988,Puerto Rico,PUERTO RICO,PR ,20 DE SEPTIEMBRE DE 1988,720003000010,PUERTO RICO DEPARTMENT OF EDUCATION,7200030,72147,72,CARR ESTATAL 200 ESQ CARR ESTATAL 993,VIEQUES,00765, ,7877413091,1-Regular school,2-No,32-Town: Distant,18.143769,-65.441611,PR-01-35295,Yes participating without using any Provision or the CEO,Middle,6th Grade,8th Grade,196,196,149,–,28,177,196,†,†,†,†,†,†,†,†,62,59,75,†,†,†,†,†,†,†,92,104,0,0,194,0,2,0,0,196,0 -21ST CENTURY CHARTER SCH OF GARY,Indiana,INDIANA,IN ,21st Century Charter Sch of Gary,180004602162,21st Century Charter Sch of Gary,1800046,18089,18,556 Washington St,Gary,46402, ,2198869339,1-Regular school,1-Yes,21-Suburb: Large,41.600759,-87.338843,IN-9545-4164,Yes under Community Eligibility Option (CEO),Other,Kindergarten,12th Grade,1180,1180,858,761,55,913,693,380,†,107,87,101,82,81,98,67,93,84,118,87,88,87,†,†,†,562,618,1,0,64,1088,1,0,26,1180,1 -21ST CENTURY CYBER CS,Pennsylvania,PENNSYLVANIA,PA ,21st Century Cyber CS,420009100597,21st Century Cyber CS,4200091,42029,42,1245 Wrights Lane,West Chester,19380, ,4848755400,1-Regular school,1-Yes,21-Suburb: Large,39.988310,-75.574369,PA-124150002-7691,No,High,6th Grade,12th Grade,996,996,‡,–,‡,‡,150,846,†,†,†,†,†,†,†,20,53,77,202,193,245,206,†,†,†,454,542,1,17,78,156,665,3,76,996,0 -21ST CENTURY LEARNING INSTITUTE,CALIFORNIA,CALIFORNIA,CA ,21st Century Learning Institute,060429013779,Beaumont Unified,0604290,06065,06,939 East 10th St.,Beaumont,92223,1927,9517698424,4-Alternative Education School,2-No,21-Suburb: Large,33.935293,-116.969354,CA-3366993-0129882,–,Other,Kindergarten,12th Grade,314,314,175,128,51,226,92,221,†,1,7,5,6,13,6,14,18,23,38,51,73,59,†,†,†,148,163,2,9,193,18,68,0,21,311,2 -21ST CENTURY PREPARATORY SCHOOL,Wisconsin,WISCONSIN,WI ,21st Century Preparatory School,550004502575,Racine Charter One Inc,5500045,55101,55,1220 Mound Ave,Racine,53404, ,2625980026,1-Regular school,1-Yes,13-City: Small,42.728321,-87.795889,WI-8010-8110,Yes under Community Eligibility Option (CEO),Elementary,Prekindergarten,8th Grade,438,438,277,–,0,277,359,†,36,43,42,53,37,40,47,39,58,43,†,†,†,†,†,†,†,232,206,0,0,88,275,20,0,55,438,0 -21ST CENTURY PRIMARY CENTER,Illinois,ILLINOIS,IL ,21st Century Primary Center,173081003429,Park Forest SD 163,1730810,17031,17,240 S Orchard Dr,Park Forest,60466,2045,7086689451,1-Regular school,2-No,21-Suburb: Large,41.477716,-87.682344,IL-07-016-1630-02-070161630022008,Yes under Community Eligibility Option (CEO),Elementary,Kindergarten,3rd Grade,152,152,–,–,–,121,108,†,†,44,32,37,39,†,†,†,†,†,†,†,†,†,†,†,†,73,79,0,0,19,116,0,0,17,152,0 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,350018700811,21ST CENTURY PUBLIC ACADEMY,3500187,35001,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,1-Regular school,1-Yes,11-City: Large,35.105101,-106.599226,NM-35580000-35580001,Yes under Community Eligibility Option (CEO),Elementary,1st Grade,8th Grade,371,371,156,83,16,172,371,†,†,†,16,24,22,38,44,70,86,71,†,†,†,†,†,†,†,188,183,7,3,59,17,257,0,28,371,2 -227 ACADEMY- HS,MONTANA,MONTANA,MT ,227 Academy- HS,300065501146,East Helena K-12,3000655,30049,30,2760 Valley Dr,East Helena,59635, ,4062277700,1-Regular school,†,41-Rural: Fringe,46.603668,-111.916008,MT-1240-3029,No,High,9th Grade,12th Grade,59,59,32,–,4,36,†,59,†,†,†,†,†,†,†,†,†,†,8,18,18,15,†,†,†,33,26,2,0,1,0,50,0,6,59,1 diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv index 32c53a5540..8904364acc 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv @@ -1,19 +1,12 @@ -"school_state_code","County_code","Public_School_Name","School_Id","School_Type_Public","Charter_School","State_School_ID","National_School_Lunch_Program","Lowest_Grade_Public","Highest_Grade_Public","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","ZIP","Location_ZIP4","Agency_Name","State_District_ID","year","School_Level","Validated_State_Abbr","ContainedInPlace","School_Management" -"nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" -"nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA ","Marlborough","","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","geoId/25017,geoId/25","" -"nces/180004602162","geoId/18089","21St Century Charter Sch Of Gary","180004602162","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","IN-9545-4164","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade12","2198869339","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","46402","","21st Century Charter Sch of Gary","dcs:geoId/sch1800046","2024","dcs:NCES_SchoolLevelOther","IN","zip/46402,geoId/18089,geoId/18","" -"nces/720003000010","geoId/72147","20 De Septiembre De 1988","720003000010","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","PR-01-35295","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","7877413091","Puerto Rico","PR","geoId/72","18.143769","-65.441611","dcs:NCES_TownDistant","Carr Estatal 200 Esq Carr Estatal 993 Vieques PR ","VIEQUES","","","PUERTO RICO DEPARTMENT OF EDUCATION","dcs:geoId/sch7200030","2024","dcs:MiddleSchool","PR","geoId/72147,geoId/72","" -"nces/317458000209","geoId/31079","1R Elementary","317458000209","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterDataMissing","NE-400082000-400082003","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade8","3083856352","Nebraska","NE","geoId/31","41.002783","-98.379562","dcs:NCES_RuralFringe","3301 W One-R Road Grand Island NE 68803-9331","GRAND ISLAND","68803","9331","NORTHWEST PUBLIC SCHOOLS","dcs:geoId/sch3174580","2024","dcs:ElementarySchool","NE","zip/68803,geoId/31079,geoId/31","" -"nces/271503005356","geoId/27037","199 Online High School","271503005356","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010199-010199090","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","6513067009","MINNESOTA","MN","geoId/27","44.832598","-93.047207","dcs:NCES_SuburbLarge","2920 80Th St E Inver Grove Heights MN 55076-8888","INVER GROVE HEIGHTS","55076","8888","INVER GROVE HEIGHTS SCHOOLS","dcs:geoId/sch2715030","2024","dcs:HighSchool","MN","zip/55076,geoId/27037,geoId/27","" -"nces/273239005351","geoId/27037","196Online Middle School","273239005351","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","6514237915","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:MiddleSchool","MN","zip/55068,geoId/27037,geoId/27","" -"nces/273239005352","geoId/27037","196Online High School","273239005352","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","6519055857","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:HighSchool","MN","zip/55068,geoId/27037,geoId/27","" -"nces/273239005353","geoId/27037","196Online Elementary","273239005353","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MN-010196-010196766","dcs:NCES_NationalSchoolLunchProgramNo","dcs:Kindergarten","dcs:SchoolGrade5","6514237915","MINNESOTA","MN","geoId/27","44.817947","-93.217123","dcs:NCES_CitySmall","3455 153Rd St W Rosemount MN 55068-8888","ROSEMOUNT","55068","8888","ROSEMOUNT-APPLE VALLEY-EAGAN","dcs:geoId/sch2732390","2024","dcs:ElementarySchool","MN","zip/55068,geoId/27037,geoId/27","" -"nces/273351012806","geoId/27145","180 Degrees / Youth Shelter","273351012806","4-Alternative Education School","dcs:NCES_CharterNo","MN-010742-010742044","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","3203708020","MINNESOTA","MN","geoId/27","45.547418","-94.172744","dcs:NCES_CitySmall","1101 Washington Memorial Dr Saint Cloud MN 56301-8888","SAINT CLOUD","56301","8888","ST. CLOUD PUBLIC SCHOOL DISTRICT","dcs:geoId/sch2733510","2024","dcs:HighSchool","MN","zip/56301,geoId/27145,geoId/27","" -"nces/318009002335","geoId/31001","18+ Program","318009002335","NCES_PublicSchoolTypeSpecialEducation","dcs:NCES_CharterDataMissing","NE-000009000-000009024","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","4024635611","NEBRASKA","NE","geoId/31","40.642044","-98.383244","dcs:NCES_TownDistant","5807 Osborne Drive West Hastings NE 68901-9158","HASTINGS","68901","9158","EDUCATIONAL SERVICE UNIT 09","dcs:geoId/sch3180090","2024","dcs:HighSchool","NE","zip/68901,geoId/31001,geoId/31","" -"nces/262895007802","geoId/26077","12Th Street Elementary","262895007802","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","MI-39140-09848","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","2693236900","Michigan","MI","geoId/26","42.2202","-85.646452","dcs:NCES_CitySmall","6501 S 12Th St Portage MI 49024-1705","PORTAGE","49024","1705","Portage Public Schools","dcs:geoId/sch2628950","2024","dcs:ElementarySchool","MI","zip/49024,geoId/26077,geoId/26","" -"nces/120144008672","geoId/12095","126-E-W-4","120144008672","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","FL-48-1025","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173200","FLORIDA","FL","geoId/12","28.36828","-81.633579","dcs:NCES_RuralFringe","445 W Amelia St Orlando FL 32801","ORLANDO","32801","","ORANGE","dcs:geoId/sch1201440","2024","dcs:NCES_SchoolLevelDataMissing","FL","zip/32801,geoId/12095,geoId/12","" -"nces/270819005118","geoId/27019","112 Alc Seat-Based","270819005118","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112071","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","9525566192","MINNESOTA","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" -"nces/270819004622","geoId/27019","112 Alc Middle School","270819004622","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:MiddleSchool","MN","zip/55318,geoId/27019,geoId/27","" -"nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" -"nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" -"nces/420009100597","geoId/42029","21St Century Cyber Cs","420009100597","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","PA-124150002-7691","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","19380","","21st Century Cyber CS","dcs:geoId/sch4200091","2024","dcs:HighSchool","PA","zip/19380,geoId/42029,geoId/42","" +"school_state_code","County_code","Public_School_Name","School_Id","School_Type_Public","Charter_School","Magnet_School","Title_I_School_Status","State_School_ID","National_School_Lunch_Program","Lowest_Grade_Public","Highest_Grade_Public","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","ZIP","Location_ZIP4","Agency_Name","State_District_ID","year","School_Level","Validated_State_Abbr","ContainedInPlace","School_Management" +"nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" +"nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA ","Marlborough","","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","geoId/25017,geoId/25","" +"nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" +"nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/270819004622","geoId/27019","112 Alc Middle School","270819004622","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:MiddleSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/270819005118","geoId/27019","112 Alc Seat-Based","270819005118","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112071","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","9525566192","MINNESOTA","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/120144008672","geoId/12095","126-E-W-4","120144008672","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","FL-48-1025","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173200","FLORIDA","FL","geoId/12","28.36828","-81.633579","dcs:NCES_RuralFringe","445 W Amelia St Orlando FL 32801","ORLANDO","32801","","ORANGE","dcs:geoId/sch1201440","2024","dcs:NCES_SchoolLevelDataMissing","FL","zip/32801,geoId/12095,geoId/12","" +"nces/262895007802","geoId/26077","12Th Street Elementary","262895007802","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MI-39140-09848","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","2693236900","Michigan","MI","geoId/26","42.2202","-85.646452","dcs:NCES_CitySmall","6501 S 12Th St Portage MI 49024-1705","PORTAGE","49024","1705","Portage Public Schools","dcs:geoId/sch2628950","2024","dcs:ElementarySchool","MI","zip/49024,geoId/26077,geoId/26","" +"nces/320006000670","geoId/32003","100 Academy Of Engineering And Technology Es","320006000670","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02093","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","7026362551","Nevada","NV","geoId/32","36.200008","-115.164596","dcs:NCES_CityLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","","NV","zip/89032,geoId/32003,geoId/32","" +"nces/320006000756","geoId/32003","100 Academy Of Engineering And Technology Ms","320006000756","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02364","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","7026362551","Nevada","NV","geoId/32","36.20149","-115.166081","dcs:NCES_SuburbLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","","NV","zip/89032,geoId/32003,geoId/32","" +"nces/120144008289","geoId/12095","133-K8-N-6","120144008289","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","48-1851","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173209","Florida","FL","geoId/12","28.565644","-81.347048","dcs:NCES_CityLarge","445 W Amelia St Orlando FL 32801-1129","ORLANDO","32801","1129","ORANGE","dcs:geoId/sch1201440","2015","","FL","zip/32801,geoId/12095,geoId/12","" diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv index a83c7b40db..e3c3ec53cf 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.csv @@ -1,331 +1,262 @@ school_state_code,year,sv_name,observation,scaling_factor,unit +nces/250732002639,2016,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/262895007802,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004415,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/270819004622,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/320006000670,2016,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/320006000756,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/530486002475,2016,Count_Student_AmericanIndianOrAlaskaNative,8.0,, +nces/250732002639,2016,Count_Student_Asian,34.0,, +nces/262895007802,2016,Count_Student_Asian,68.0,, +nces/270819004415,2016,Count_Student_Asian,1.0,, +nces/270819004622,2016,Count_Student_Asian,5.0,, +nces/320006000670,2016,Count_Student_Asian,2.0,, +nces/320006000756,2016,Count_Student_Asian,0.0,, +nces/530486002475,2016,Count_Student_Asian,5.0,, +nces/250732002639,2016,Count_Student_Black,38.0,, +nces/262895007802,2016,Count_Student_Black,48.0,, +nces/270819004415,2016,Count_Student_Black,0.0,, +nces/270819004622,2016,Count_Student_Black,8.0,, +nces/320006000670,2016,Count_Student_Black,321.0,, +nces/320006000756,2016,Count_Student_Black,89.0,, +nces/530486002475,2016,Count_Student_Black,1.0,, +nces/250732002639,2016,Count_Student_Female,611.0,, +nces/262895007802,2016,Count_Student_Female,302.0,, +nces/270819004415,2016,Count_Student_Female,10.0,, +nces/270819004622,2016,Count_Student_Female,65.0,, +nces/320006000670,2016,Count_Student_Female,242.0,, +nces/320006000756,2016,Count_Student_Female,65.0,, +nces/530486002475,2016,Count_Student_Female,94.0,, +nces/262895007802,2016,Count_Student_FreeLunch,99.0,, +nces/270819004415,2016,Count_Student_FreeLunch,8.0,, +nces/270819004622,2016,Count_Student_FreeLunch,54.0,, +nces/320006000670,2016,Count_Student_FreeLunch,368.0,, +nces/320006000756,2016,Count_Student_FreeLunch,110.0,, +nces/530486002475,2016,Count_Student_FreeLunch,28.0,, +nces/262895007802,2016,Count_Student_DirectCertificationLunch,120.0,, +nces/270819004415,2016,Count_Student_DirectCertificationLunch,11.0,, +nces/270819004622,2016,Count_Student_DirectCertificationLunch,61.0,, +nces/320006000670,2016,Count_Student_DirectCertificationLunch,402.0,, +nces/320006000756,2016,Count_Student_DirectCertificationLunch,117.0,, +nces/530486002475,2016,Count_Student_DirectCertificationLunch,31.0,, +nces/262895007802,2016,Count_Student_SchoolGrade1,71.0,, +nces/320006000670,2016,Count_Student_SchoolGrade1,72.0,, +nces/270819004415,2016,Count_Student_SchoolGrade10,0.0,, +nces/270819004415,2016,Count_Student_SchoolGrade11,0.0,, +nces/270819004415,2016,Count_Student_SchoolGrade12,34.0,, +nces/262895007802,2016,Count_Student_SchoolGrade2,99.0,, +nces/320006000670,2016,Count_Student_SchoolGrade2,85.0,, +nces/262895007802,2016,Count_Student_SchoolGrade3,95.0,, +nces/320006000670,2016,Count_Student_SchoolGrade3,79.0,, +nces/262895007802,2016,Count_Student_SchoolGrade4,112.0,, +nces/320006000670,2016,Count_Student_SchoolGrade4,67.0,, +nces/250732002639,2016,Count_Student_SchoolGrade5,381.0,, +nces/262895007802,2016,Count_Student_SchoolGrade5,101.0,, +nces/320006000670,2016,Count_Student_SchoolGrade5,64.0,, +nces/250732002639,2016,Count_Student_SchoolGrade6,288.0,, +nces/270819004622,2016,Count_Student_SchoolGrade6,22.0,, +nces/320006000756,2016,Count_Student_SchoolGrade6,49.0,, +nces/530486002475,2016,Count_Student_SchoolGrade6,61.0,, +nces/250732002639,2016,Count_Student_SchoolGrade7,306.0,, +nces/270819004622,2016,Count_Student_SchoolGrade7,22.0,, +nces/320006000756,2016,Count_Student_SchoolGrade7,41.0,, +nces/530486002475,2016,Count_Student_SchoolGrade7,60.0,, +nces/250732002639,2016,Count_Student_SchoolGrade8,323.0,, +nces/270819004622,2016,Count_Student_SchoolGrade8,86.0,, +nces/320006000756,2016,Count_Student_SchoolGrade8,42.0,, +nces/530486002475,2016,Count_Student_SchoolGrade8,50.0,, +nces/270819004415,2016,Count_Student_SchoolGrade9,0.0,, +nces/250732002639,2016,Count_Student_SchoolGrade1To8,1298.0,, +nces/262895007802,2016,Count_Student_SchoolGrade1To8,478.0,, +nces/270819004622,2016,Count_Student_SchoolGrade1To8,130.0,, +nces/320006000670,2016,Count_Student_SchoolGrade1To8,367.0,, +nces/320006000756,2016,Count_Student_SchoolGrade1To8,132.0,, +nces/530486002475,2016,Count_Student_SchoolGrade1To8,171.0,, +nces/270819004415,2016,Count_Student_SchoolGrade9To12,34.0,, +nces/250732002639,2016,Count_Student_HispanicOrLatino,540.0,, +nces/262895007802,2016,Count_Student_HispanicOrLatino,27.0,, +nces/270819004415,2016,Count_Student_HispanicOrLatino,10.0,, +nces/270819004622,2016,Count_Student_HispanicOrLatino,32.0,, +nces/320006000670,2016,Count_Student_HispanicOrLatino,80.0,, +nces/320006000756,2016,Count_Student_HispanicOrLatino,36.0,, +nces/530486002475,2016,Count_Student_HispanicOrLatino,20.0,, +nces/262895007802,2016,Count_Student_Kindergarten,116.0,, +nces/320006000670,2016,Count_Student_Kindergarten,74.0,, +nces/250732002639,2016,Count_Student_Male,687.0,, +nces/262895007802,2016,Count_Student_Male,292.0,, +nces/270819004415,2016,Count_Student_Male,24.0,, +nces/270819004622,2016,Count_Student_Male,65.0,, +nces/320006000670,2016,Count_Student_Male,199.0,, +nces/320006000756,2016,Count_Student_Male,67.0,, +nces/530486002475,2016,Count_Student_Male,77.0,, +nces/250732002639,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/262895007802,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/270819004415,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/270819004622,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/320006000670,2016,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +nces/320006000756,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/530486002475,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/320006000670,2016,Count_Student_PreKindergarten,0.0,, +nces/262895007802,2016,Count_Student_ReducedLunch,21.0,, +nces/270819004415,2016,Count_Student_ReducedLunch,3.0,, +nces/270819004622,2016,Count_Student_ReducedLunch,7.0,, +nces/320006000670,2016,Count_Student_ReducedLunch,34.0,, +nces/320006000756,2016,Count_Student_ReducedLunch,7.0,, +nces/530486002475,2016,Count_Student_ReducedLunch,3.0,, +nces/250732002639,2016,Count_Student,1298.0,, +nces/262895007802,2016,Count_Student,594.0,, +nces/270819004415,2016,Count_Student,34.0,, +nces/270819004622,2016,Count_Student,130.0,, +nces/320006000670,2016,Count_Student,441.0,, +nces/320006000756,2016,Count_Student,132.0,, +nces/530486002475,2016,Count_Student,171.0,, +nces/250732002639,2016,Count_Student_TwoOrMoreRaces,37.0,, +nces/262895007802,2016,Count_Student_TwoOrMoreRaces,45.0,, +nces/270819004415,2016,Count_Student_TwoOrMoreRaces,1.0,, +nces/270819004622,2016,Count_Student_TwoOrMoreRaces,3.0,, +nces/320006000670,2016,Count_Student_TwoOrMoreRaces,32.0,, +nces/320006000756,2016,Count_Student_TwoOrMoreRaces,6.0,, +nces/530486002475,2016,Count_Student_TwoOrMoreRaces,15.0,, +nces/250732002639,2016,Count_Student_UngradedClasses,0.0,, +nces/262895007802,2016,Count_Student_UngradedClasses,0.0,, +nces/250732002639,2016,Count_Student_White,648.0,, +nces/262895007802,2016,Count_Student_White,406.0,, +nces/270819004415,2016,Count_Student_White,22.0,, +nces/270819004622,2016,Count_Student_White,82.0,, +nces/320006000670,2016,Count_Student_White,4.0,, +nces/320006000756,2016,Count_Student_White,1.0,, +nces/530486002475,2016,Count_Student_White,122.0,, nces/061077001195,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,25.0,, -nces/180004602162,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, nces/250732002639,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/262895007802,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/270819004415,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/270819004622,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/270819005118,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/271503005356,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/273239005351,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/273239005352,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, -nces/273239005353,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/273351012806,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/317458000209,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/318009002335,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -nces/420009100597,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/530486002475,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,4.0,, -nces/720003000010,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, nces/061077001195,2025,Count_Student_AmericanIndianOrAlaskaNative,49.0,, -nces/180004602162,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, nces/250732002639,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, nces/262895007802,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, nces/270819004415,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, nces/270819004622,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, nces/270819005118,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/271503005356,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/273239005351,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/273239005352,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, -nces/273239005353,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/273351012806,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/317458000209,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/318009002335,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -nces/420009100597,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, nces/530486002475,2025,Count_Student_AmericanIndianOrAlaskaNative,10.0,, -nces/720003000010,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, nces/061077001195,2025,Count_Student_Asian,0.0,, -nces/180004602162,2025,Count_Student_Asian,0.0,, nces/250732002639,2025,Count_Student_Asian,10.0,, nces/262895007802,2025,Count_Student_Asian,56.0,, nces/270819004415,2025,Count_Student_Asian,1.0,, nces/270819004622,2025,Count_Student_Asian,7.0,, nces/270819005118,2025,Count_Student_Asian,0.0,, -nces/271503005356,2025,Count_Student_Asian,0.0,, -nces/273239005351,2025,Count_Student_Asian,0.0,, -nces/273239005352,2025,Count_Student_Asian,4.0,, -nces/273239005353,2025,Count_Student_Asian,0.0,, -nces/273351012806,2025,Count_Student_Asian,0.0,, -nces/317458000209,2025,Count_Student_Asian,0.0,, -nces/318009002335,2025,Count_Student_Asian,0.0,, -nces/420009100597,2025,Count_Student_Asian,17.0,, nces/530486002475,2025,Count_Student_Asian,12.0,, -nces/720003000010,2025,Count_Student_Asian,0.0,, nces/061077001195,2025,Count_Student_Black,0.0,, -nces/180004602162,2025,Count_Student_Black,1088.0,, nces/250732002639,2025,Count_Student_Black,60.0,, nces/262895007802,2025,Count_Student_Black,81.0,, nces/270819004415,2025,Count_Student_Black,2.0,, nces/270819004622,2025,Count_Student_Black,47.0,, nces/270819005118,2025,Count_Student_Black,0.0,, -nces/271503005356,2025,Count_Student_Black,0.0,, -nces/273239005351,2025,Count_Student_Black,0.0,, -nces/273239005352,2025,Count_Student_Black,19.0,, -nces/273239005353,2025,Count_Student_Black,0.0,, -nces/273351012806,2025,Count_Student_Black,0.0,, -nces/317458000209,2025,Count_Student_Black,1.0,, -nces/318009002335,2025,Count_Student_Black,0.0,, -nces/420009100597,2025,Count_Student_Black,156.0,, nces/530486002475,2025,Count_Student_Black,7.0,, -nces/720003000010,2025,Count_Student_Black,0.0,, nces/061077001195,2025,Count_Student_Female,41.0,, -nces/180004602162,2025,Count_Student_Female,618.0,, nces/250732002639,2025,Count_Student_Female,489.0,, nces/262895007802,2025,Count_Student_Female,310.0,, nces/270819004415,2025,Count_Student_Female,6.0,, nces/270819004622,2025,Count_Student_Female,216.0,, nces/270819005118,2025,Count_Student_Female,0.0,, -nces/271503005356,2025,Count_Student_Female,0.0,, -nces/273239005351,2025,Count_Student_Female,0.0,, -nces/273239005352,2025,Count_Student_Female,34.0,, -nces/273239005353,2025,Count_Student_Female,0.0,, -nces/273351012806,2025,Count_Student_Female,0.0,, -nces/317458000209,2025,Count_Student_Female,98.0,, -nces/318009002335,2025,Count_Student_Female,0.0,, -nces/420009100597,2025,Count_Student_Female,542.0,, nces/530486002475,2025,Count_Student_Female,104.0,, -nces/720003000010,2025,Count_Student_Female,104.0,, nces/061077001195,2025,Count_Student_FreeLunch,68.0,, -nces/180004602162,2025,Count_Student_FreeLunch,858.0,, nces/262895007802,2025,Count_Student_FreeLunch,115.0,, nces/270819004415,2025,Count_Student_FreeLunch,5.0,, nces/270819004622,2025,Count_Student_FreeLunch,109.0,, -nces/273239005352,2025,Count_Student_FreeLunch,28.0,, -nces/317458000209,2025,Count_Student_FreeLunch,31.0,, nces/530486002475,2025,Count_Student_FreeLunch,65.0,, -nces/720003000010,2025,Count_Student_FreeLunch,149.0,, nces/061077001195,2025,Count_Student_DirectCertificationLunch,75.0,, -nces/180004602162,2025,Count_Student_DirectCertificationLunch,913.0,, nces/262895007802,2025,Count_Student_DirectCertificationLunch,122.0,, nces/270819004415,2025,Count_Student_DirectCertificationLunch,6.0,, nces/270819004622,2025,Count_Student_DirectCertificationLunch,140.0,, -nces/273239005352,2025,Count_Student_DirectCertificationLunch,31.0,, -nces/317458000209,2025,Count_Student_DirectCertificationLunch,45.0,, nces/530486002475,2025,Count_Student_DirectCertificationLunch,75.0,, -nces/720003000010,2025,Count_Student_DirectCertificationLunch,177.0,, nces/061077001195,2025,Count_Student_SchoolGrade1,10.0,, -nces/180004602162,2025,Count_Student_SchoolGrade1,87.0,, nces/262895007802,2025,Count_Student_SchoolGrade1,96.0,, -nces/273239005353,2025,Count_Student_SchoolGrade1,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade1,20.0,, -nces/180004602162,2025,Count_Student_SchoolGrade10,87.0,, nces/270819004415,2025,Count_Student_SchoolGrade10,0.0,, nces/270819005118,2025,Count_Student_SchoolGrade10,0.0,, -nces/271503005356,2025,Count_Student_SchoolGrade10,0.0,, -nces/273239005352,2025,Count_Student_SchoolGrade10,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade10,0.0,, -nces/318009002335,2025,Count_Student_SchoolGrade10,0.0,, -nces/420009100597,2025,Count_Student_SchoolGrade10,193.0,, -nces/180004602162,2025,Count_Student_SchoolGrade11,88.0,, nces/270819004415,2025,Count_Student_SchoolGrade11,4.0,, nces/270819005118,2025,Count_Student_SchoolGrade11,0.0,, -nces/271503005356,2025,Count_Student_SchoolGrade11,0.0,, -nces/273239005352,2025,Count_Student_SchoolGrade11,31.0,, -nces/273351012806,2025,Count_Student_SchoolGrade11,0.0,, -nces/318009002335,2025,Count_Student_SchoolGrade11,0.0,, -nces/420009100597,2025,Count_Student_SchoolGrade11,245.0,, -nces/180004602162,2025,Count_Student_SchoolGrade12,87.0,, nces/270819004415,2025,Count_Student_SchoolGrade12,24.0,, nces/270819005118,2025,Count_Student_SchoolGrade12,0.0,, -nces/271503005356,2025,Count_Student_SchoolGrade12,0.0,, -nces/273239005352,2025,Count_Student_SchoolGrade12,40.0,, -nces/273351012806,2025,Count_Student_SchoolGrade12,0.0,, -nces/318009002335,2025,Count_Student_SchoolGrade12,0.0,, -nces/420009100597,2025,Count_Student_SchoolGrade12,206.0,, nces/061077001195,2025,Count_Student_SchoolGrade2,8.0,, -nces/180004602162,2025,Count_Student_SchoolGrade2,101.0,, nces/262895007802,2025,Count_Student_SchoolGrade2,88.0,, -nces/273239005353,2025,Count_Student_SchoolGrade2,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade2,21.0,, nces/061077001195,2025,Count_Student_SchoolGrade3,19.0,, -nces/180004602162,2025,Count_Student_SchoolGrade3,82.0,, nces/262895007802,2025,Count_Student_SchoolGrade3,87.0,, -nces/273239005353,2025,Count_Student_SchoolGrade3,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade3,22.0,, nces/061077001195,2025,Count_Student_SchoolGrade4,17.0,, -nces/180004602162,2025,Count_Student_SchoolGrade4,81.0,, nces/262895007802,2025,Count_Student_SchoolGrade4,103.0,, -nces/273239005353,2025,Count_Student_SchoolGrade4,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade4,19.0,, nces/061077001195,2025,Count_Student_SchoolGrade5,14.0,, -nces/180004602162,2025,Count_Student_SchoolGrade5,98.0,, nces/262895007802,2025,Count_Student_SchoolGrade5,102.0,, -nces/273239005353,2025,Count_Student_SchoolGrade5,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade5,21.0,, nces/061077001195,2025,Count_Student_SchoolGrade6,0.0,, -nces/180004602162,2025,Count_Student_SchoolGrade6,67.0,, nces/250732002639,2025,Count_Student_SchoolGrade6,369.0,, nces/270819004622,2025,Count_Student_SchoolGrade6,139.0,, nces/270819005118,2025,Count_Student_SchoolGrade6,0.0,, -nces/273239005351,2025,Count_Student_SchoolGrade6,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade6,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade6,22.0,, -nces/420009100597,2025,Count_Student_SchoolGrade6,20.0,, nces/530486002475,2025,Count_Student_SchoolGrade6,105.0,, -nces/720003000010,2025,Count_Student_SchoolGrade6,62.0,, -nces/180004602162,2025,Count_Student_SchoolGrade7,93.0,, nces/250732002639,2025,Count_Student_SchoolGrade7,292.0,, nces/270819004622,2025,Count_Student_SchoolGrade7,142.0,, nces/270819005118,2025,Count_Student_SchoolGrade7,0.0,, -nces/273239005351,2025,Count_Student_SchoolGrade7,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade7,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade7,24.0,, -nces/420009100597,2025,Count_Student_SchoolGrade7,53.0,, nces/530486002475,2025,Count_Student_SchoolGrade7,57.0,, -nces/720003000010,2025,Count_Student_SchoolGrade7,59.0,, -nces/180004602162,2025,Count_Student_SchoolGrade8,84.0,, nces/250732002639,2025,Count_Student_SchoolGrade8,304.0,, nces/270819004622,2025,Count_Student_SchoolGrade8,130.0,, nces/270819005118,2025,Count_Student_SchoolGrade8,0.0,, -nces/273239005351,2025,Count_Student_SchoolGrade8,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade8,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade8,24.0,, -nces/420009100597,2025,Count_Student_SchoolGrade8,77.0,, nces/530486002475,2025,Count_Student_SchoolGrade8,55.0,, -nces/720003000010,2025,Count_Student_SchoolGrade8,75.0,, -nces/180004602162,2025,Count_Student_SchoolGrade9,118.0,, nces/270819004415,2025,Count_Student_SchoolGrade9,0.0,, nces/270819005118,2025,Count_Student_SchoolGrade9,0.0,, -nces/271503005356,2025,Count_Student_SchoolGrade9,0.0,, -nces/273239005352,2025,Count_Student_SchoolGrade9,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade9,0.0,, -nces/318009002335,2025,Count_Student_SchoolGrade9,0.0,, -nces/420009100597,2025,Count_Student_SchoolGrade9,202.0,, nces/061077001195,2025,Count_Student_SchoolGrade1To8,68.0,, -nces/180004602162,2025,Count_Student_SchoolGrade1To8,693.0,, nces/250732002639,2025,Count_Student_SchoolGrade1To8,965.0,, nces/262895007802,2025,Count_Student_SchoolGrade1To8,476.0,, nces/270819004622,2025,Count_Student_SchoolGrade1To8,411.0,, nces/270819005118,2025,Count_Student_SchoolGrade1To8,0.0,, -nces/273239005351,2025,Count_Student_SchoolGrade1To8,0.0,, -nces/273239005353,2025,Count_Student_SchoolGrade1To8,0.0,, -nces/273351012806,2025,Count_Student_SchoolGrade1To8,0.0,, -nces/317458000209,2025,Count_Student_SchoolGrade1To8,173.0,, -nces/420009100597,2025,Count_Student_SchoolGrade1To8,150.0,, nces/530486002475,2025,Count_Student_SchoolGrade1To8,217.0,, -nces/720003000010,2025,Count_Student_SchoolGrade1To8,196.0,, -nces/180004602162,2025,Count_Student_SchoolGrade9To12,380.0,, nces/270819004415,2025,Count_Student_SchoolGrade9To12,28.0,, nces/270819005118,2025,Count_Student_SchoolGrade9To12,0.0,, -nces/271503005356,2025,Count_Student_SchoolGrade9To12,0.0,, -nces/273239005352,2025,Count_Student_SchoolGrade9To12,71.0,, -nces/273351012806,2025,Count_Student_SchoolGrade9To12,0.0,, -nces/318009002335,2025,Count_Student_SchoolGrade9To12,0.0,, -nces/420009100597,2025,Count_Student_SchoolGrade9To12,846.0,, nces/061077001195,2025,Count_Student_HispanicOrLatino,10.0,, -nces/180004602162,2025,Count_Student_HispanicOrLatino,64.0,, nces/250732002639,2025,Count_Student_HispanicOrLatino,641.0,, nces/262895007802,2025,Count_Student_HispanicOrLatino,47.0,, nces/270819004415,2025,Count_Student_HispanicOrLatino,5.0,, nces/270819004622,2025,Count_Student_HispanicOrLatino,77.0,, nces/270819005118,2025,Count_Student_HispanicOrLatino,0.0,, -nces/271503005356,2025,Count_Student_HispanicOrLatino,0.0,, -nces/273239005351,2025,Count_Student_HispanicOrLatino,0.0,, -nces/273239005352,2025,Count_Student_HispanicOrLatino,7.0,, -nces/273239005353,2025,Count_Student_HispanicOrLatino,0.0,, -nces/273351012806,2025,Count_Student_HispanicOrLatino,0.0,, -nces/317458000209,2025,Count_Student_HispanicOrLatino,19.0,, -nces/318009002335,2025,Count_Student_HispanicOrLatino,0.0,, -nces/420009100597,2025,Count_Student_HispanicOrLatino,78.0,, nces/530486002475,2025,Count_Student_HispanicOrLatino,46.0,, -nces/720003000010,2025,Count_Student_HispanicOrLatino,194.0,, nces/061077001195,2025,Count_Student_Kindergarten,18.0,, -nces/180004602162,2025,Count_Student_Kindergarten,107.0,, nces/262895007802,2025,Count_Student_Kindergarten,113.0,, -nces/273239005353,2025,Count_Student_Kindergarten,0.0,, -nces/317458000209,2025,Count_Student_Kindergarten,21.0,, nces/061077001195,2025,Count_Student_Male,45.0,, -nces/180004602162,2025,Count_Student_Male,562.0,, nces/250732002639,2025,Count_Student_Male,474.0,, nces/262895007802,2025,Count_Student_Male,279.0,, nces/270819004415,2025,Count_Student_Male,22.0,, nces/270819004622,2025,Count_Student_Male,195.0,, nces/270819005118,2025,Count_Student_Male,0.0,, -nces/271503005356,2025,Count_Student_Male,0.0,, -nces/273239005351,2025,Count_Student_Male,0.0,, -nces/273239005352,2025,Count_Student_Male,37.0,, -nces/273239005353,2025,Count_Student_Male,0.0,, -nces/273351012806,2025,Count_Student_Male,0.0,, -nces/317458000209,2025,Count_Student_Male,96.0,, -nces/318009002335,2025,Count_Student_Male,0.0,, -nces/420009100597,2025,Count_Student_Male,454.0,, nces/530486002475,2025,Count_Student_Male,113.0,, -nces/720003000010,2025,Count_Student_Male,92.0,, nces/061077001195,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/180004602162,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, nces/250732002639,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, nces/262895007802,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, nces/270819004415,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, nces/270819004622,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, nces/270819005118,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/271503005356,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/273239005351,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/273239005352,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/273239005353,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/273351012806,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/317458000209,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/318009002335,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/420009100597,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, nces/530486002475,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -nces/720003000010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, nces/262895007802,2025,Count_Student_PreKindergarten,0.0,, -nces/317458000209,2025,Count_Student_PreKindergarten,0.0,, nces/061077001195,2025,Count_Student_ReducedLunch,7.0,, -nces/180004602162,2025,Count_Student_ReducedLunch,55.0,, nces/262895007802,2025,Count_Student_ReducedLunch,7.0,, nces/270819004415,2025,Count_Student_ReducedLunch,1.0,, nces/270819004622,2025,Count_Student_ReducedLunch,31.0,, -nces/273239005352,2025,Count_Student_ReducedLunch,3.0,, -nces/317458000209,2025,Count_Student_ReducedLunch,14.0,, nces/530486002475,2025,Count_Student_ReducedLunch,10.0,, -nces/720003000010,2025,Count_Student_ReducedLunch,28.0,, nces/061077001195,2025,Count_Student,86.0,, -nces/180004602162,2025,Count_Student,1180.0,, nces/250732002639,2025,Count_Student,965.0,, nces/262895007802,2025,Count_Student,589.0,, nces/270819004415,2025,Count_Student,28.0,, nces/270819004622,2025,Count_Student,411.0,, nces/270819005118,2025,Count_Student,0.0,, -nces/271503005356,2025,Count_Student,0.0,, -nces/273239005351,2025,Count_Student,0.0,, -nces/273239005352,2025,Count_Student,71.0,, -nces/273239005353,2025,Count_Student,0.0,, -nces/273351012806,2025,Count_Student,0.0,, -nces/317458000209,2025,Count_Student,194.0,, -nces/318009002335,2025,Count_Student,0.0,, -nces/420009100597,2025,Count_Student,996.0,, nces/530486002475,2025,Count_Student,217.0,, -nces/720003000010,2025,Count_Student,196.0,, nces/061077001195,2025,Count_Student_TwoOrMoreRaces,8.0,, -nces/180004602162,2025,Count_Student_TwoOrMoreRaces,26.0,, nces/250732002639,2025,Count_Student_TwoOrMoreRaces,22.0,, nces/262895007802,2025,Count_Student_TwoOrMoreRaces,60.0,, nces/270819004415,2025,Count_Student_TwoOrMoreRaces,3.0,, nces/270819004622,2025,Count_Student_TwoOrMoreRaces,26.0,, nces/270819005118,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/271503005356,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/273239005351,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/273239005352,2025,Count_Student_TwoOrMoreRaces,10.0,, -nces/273239005353,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/273351012806,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/317458000209,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/318009002335,2025,Count_Student_TwoOrMoreRaces,0.0,, -nces/420009100597,2025,Count_Student_TwoOrMoreRaces,76.0,, nces/530486002475,2025,Count_Student_TwoOrMoreRaces,35.0,, -nces/720003000010,2025,Count_Student_TwoOrMoreRaces,0.0,, nces/061077001195,2025,Count_Student_White,19.0,, -nces/180004602162,2025,Count_Student_White,1.0,, nces/250732002639,2025,Count_Student_White,229.0,, nces/262895007802,2025,Count_Student_White,345.0,, nces/270819004415,2025,Count_Student_White,17.0,, nces/270819004622,2025,Count_Student_White,253.0,, nces/270819005118,2025,Count_Student_White,0.0,, -nces/271503005356,2025,Count_Student_White,0.0,, -nces/273239005351,2025,Count_Student_White,0.0,, -nces/273239005352,2025,Count_Student_White,30.0,, -nces/273239005353,2025,Count_Student_White,0.0,, -nces/273351012806,2025,Count_Student_White,0.0,, -nces/317458000209,2025,Count_Student_White,174.0,, -nces/318009002335,2025,Count_Student_White,0.0,, -nces/420009100597,2025,Count_Student_White,665.0,, nces/530486002475,2025,Count_Student_White,107.0,, -nces/720003000010,2025,Count_Student_White,2.0,, diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6388697913866868074478.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6388697913866868074478.csv new file mode 100644 index 0000000000..972c6d0ff3 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6388697913866868074478.csv @@ -0,0 +1,20 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,State Abbr [District] Latest available year,Agency Name [District] 2015-16,Agency ID - NCES Assigned [District] Latest available year,County Number [District] 2015-16,ANSI/FIPS State Code [District] Latest available year,Location Address 1 [District] 2015-16,Location City [District] 2015-16,Location ZIP [District] 2015-16,Location ZIP4 [District] 2015-16,Phone Number [District] 2015-16,Locale [District] 2015-16,Latitude [District] 2015-16,Longitude [District] 2015-16,State Agency ID [District] 2015-16,Lowest Grade Offered [District] 2015-16,Highest Grade Offered [District] 2015-16,Total Students All Grades (Excludes AE) [District] 2015-16,Total Students All Grades (Includes AE) [District] 2015-16,Grades 1-8 Students [District] 2015-16,Grades 9-12 Students [District] 2015-16,Prekindergarten Students [District] 2015-16,Kindergarten Students [District] 2015-16,Grade 1 Students [District] 2015-16,Grade 2 Students [District] 2015-16,Grade 3 Students [District] 2015-16,Grade 4 Students [District] 2015-16,Grade 5 Students [District] 2015-16,Grade 6 Students [District] 2015-16,Grade 7 Students [District] 2015-16,Grade 8 Students [District] 2015-16,Grade 9 Students [District] 2015-16,Grade 10 Students [District] 2015-16,Grade 11 Students [District] 2015-16,Grade 12 Students [District] 2015-16,Grade 13 Students [District] 2015-16,Ungraded Students [District] 2015-16,Adult Education Students [District] 2015-16,Male Students [District] 2015-16,Female Students [District] 2015-16,American Indian/Alaska Native Students [District] 2015-16,Asian or Asian/Pacific Islander Students [District] 2015-16,Hispanic Students [District] 2015-16,Black or African American Students [District] 2015-16,White Students [District] 2015-16,Nat. Hawaiian or Other Pacific Isl. Students [District] 2015-16,Two or More Races Students [District] 2015-16,Total Race/Ethnicity [District] 2015-16,American Indian/Alaska Native - male [District] 2015-16,American Indian/Alaska Native - female [District] 2015-16,Asian or Asian/Pacific Islander - male [District] 2015-16,Asian or Asian/Pacific Islander - female [District] 2015-16,Hispanic - male [District] 2015-16,Hispanic - female [District] 2015-16,Black or African American - male [District] 2015-16,Black or African American - female [District] 2015-16,White - male [District] 2015-16,White - female [District] 2015-16,Nat. Hawaiian or Other Pacific Isl. - male [District] 2015-16,Nat. Hawaiian or Other Pacific Isl. - female [District] 2015-16 +(ILC) ATOKA-COAL COUNTIES,Oklahoma,OK ,(ILC) ATOKA-COAL COUNTIES,4000760,40005,40,201 SE FIRST ST,TUSHKA,74525,1231,5808892664,43-Rural: Remote,34.318510,-96.164555,03-K002,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,† +21ST CENTURY CHARTER SCH OF GARY,Indiana,IN ,21ST CENTURY CHARTER SCH OF GARY,1800046,18089,18,556 WASHINGTON ST,GARY,46402,†,3175361027,13-City: Small,41.600960,-87.338900,9545,Kindergarten,12th Grade,758,758,487,208,†,63,55,67,63,57,56,60,66,63,64,59,48,37,†,†,†,392,366,1,0,15,734,0,0,8,758,1,0,0,0,9,6,377,357,0,0,0,0 +21ST CENTURY CYBER CS,Pennsylvania,PA ,21ST CENTURY CYBER CS,4200091,42029,42,126 WALLACE AVE.,DOWNINGTOWN,19335,†,4848755400,21-Suburb: Large,40.010800,-75.704371,124150002,6th Grade,12th Grade,818,818,231,587,†,†,†,†,†,†,†,34,87,110,159,155,149,124,†,†,†,323,495,1,10,49,63,670,2,23,818,1,0,7,3,14,35,25,38,262,408,1,1 +A CENTER FOR CREATIVE EDUCATION (79457),Arizona,AZ ,A CENTER FOR CREATIVE EDUCATION,0400328,04025,04,215 SOUTH MAIN STREET,COTTONWOOD,86326,†,9286343288,32-Town: Distant,34.735219,-112.009436,79457,Kindergarten,8th Grade,70,70,60,†,†,10,13,8,11,7,6,5,6,4,†,†,†,†,†,0,†,32,38,0,0,11,0,50,0,9,70,0,0,0,0,3,8,0,0,24,26,0,0 +A E R O SPEC EDUC COOP,Illinois,IL ,A E R O SPEC EDUC COOP,1700024,17031,17,7600 MASON AVE,BURBANK,60459,1200,7084963330,21-Suburb: Large,41.752701,-87.769897,07-016-8060-60,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,† +A W BEATTIE CAREER CENTER,Pennsylvania,PA ,A W BEATTIE CAREER CENTER,4280010,42003,42,9600 BABCOCK BOULEVARD,ALLISON PARK,15101,2005,4128471900,21-Suburb: Large,40.579057,-80.006042,103020407,9th Grade,12th Grade,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +A W BROWN LEADERSHIP ACADEMY,Texas,TX ,A W BROWN-FELLOWSHIP LEADERSHIP ACADEMY,4800095,48113,48,5701 RED BIRD CTR DR,DALLAS,75237,†,9727094700,11-City: Large,32.677822,-96.882147,057816,Prekindergarten,8th Grade,2161,2161,1390,†,538,233,251,242,222,150,151,140,121,113,†,†,†,†,†,†,†,981,1180,1,3,63,2076,8,6,4,2161,1,0,1,2,21,42,952,1124,1,7,2,4 +A+ ACADEMY,Texas,TX ,A+ ACADEMY,4800203,48113,48,8225 BRUTON RD,DALLAS,75217,†,2143813226,11-City: Large,32.748800,-96.674800,057829,Prekindergarten,12th Grade,940,940,552,284,41,63,63,64,65,73,71,72,72,72,71,72,71,70,†,†,†,451,489,0,1,863,30,31,0,15,940,0,0,1,0,416,447,17,13,15,16,0,0 +A+ ARTS ACADEMY,Ohio,OH ,A+ ARTS ACADEMY,3900305,39049,39,270 S NAPOLEON AVE,COLUMBUS,43213,4235,6147251305,11-City: Large,39.967030,-82.905221,000556,Kindergarten,10th Grade,692,692,551,55,†,86,76,78,69,74,69,64,78,43,41,14,†,†,†,†,†,330,362,2,0,26,625,10,0,29,692,0,2,0,0,12,14,302,323,5,5,0,0 +A+ CHILDREN'S ACADEMY,Ohio,OH ,A+ CHILDREN'S ACADEMY,3901480,39049,39,100 OBETZ RD,COLUMBUS,43207,4031,6144918502,11-City: Large,39.882340,-82.997931,013232,Kindergarten,6th Grade,133,133,113,†,†,20,25,17,24,20,12,15,†,†,†,†,†,†,†,†,†,74,59,0,3,3,38,73,0,16,133,0,0,3,0,1,2,19,19,41,32,0,0 +A+ UNLIMITED POTENTIAL,TEXAS,TX ,A+ UNLIMITED POTENTIAL,4801453,48201,48,2700 SOUTHWEST FWY,HOUSTON,77098,†,7132043837,11-City: Large,29.731710,-95.420351,101871,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,† +A-C CENTRAL CUSD 262,Illinois,IL ,A-C CENTRAL CUSD 262,1700105,17017,17,PO BOX 260,ASHLAND,62612,0260,2174768112,42-Rural: Distant,39.892248,-90.012827,01-009-2620-26,Prekindergarten,12th Grade,479,479,275,135,39,30,24,38,30,30,35,39,38,41,37,40,26,32,†,†,†,243,236,1,0,14,10,448,0,6,479,0,1,0,0,10,4,3,7,226,222,0,0 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,VA ,A. LINWOOD HOLTON GOV SCH,5100033,51191,51,SOUTHWEST VA HIGHER ED CENTER,ABINGDON,24212,†,2764694026,23-Suburb: Small,36.696712,-82.000582,268,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,†,†,†,†,†,†,†,†,†,†,†,† diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv deleted file mode 100644 index 9647b8dd3f..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_6391562516627516691672.csv +++ /dev/null @@ -1,30 +0,0 @@ -ELSI Export - -National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ - -This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories - -Agency Name,State Name [District] Latest available year,State Abbr [District] Latest available year,Agency Name [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year,County Number [District] 2024-25,ANSI/FIPS State Code [District] Latest available year,Location Address 1 [District] 2024-25,Location City [District] 2024-25,Location ZIP [District] 2024-25,Location ZIP4 [District] 2024-25,Phone Number [District] 2024-25,Locale [District] 2024-25,Latitude [District] 2024-25,Longitude [District] 2024-25,State Agency ID [District] 2024-25,Lowest Grade Offered [District] 2024-25,Highest Grade Offered [District] 2024-25,Total Students All Grades (Excludes AE) [District] 2024-25,Total Students All Grades (Includes AE) [District] 2024-25,Grades 1-8 Students [District] 2024-25,Grades 9-12 Students [District] 2024-25,Prekindergarten Students [District] 2024-25,Kindergarten Students [District] 2024-25,Grade 1 Students [District] 2024-25,Grade 2 Students [District] 2024-25,Grade 3 Students [District] 2024-25,Grade 4 Students [District] 2024-25,Grade 5 Students [District] 2024-25,Grade 6 Students [District] 2024-25,Grade 7 Students [District] 2024-25,Grade 8 Students [District] 2024-25,Grade 9 Students [District] 2024-25,Grade 10 Students [District] 2024-25,Grade 11 Students [District] 2024-25,Grade 12 Students [District] 2024-25,Grade 13 Students [District] 2024-25,Ungraded Students [District] 2024-25,Adult Education Students [District] 2024-25,Male Students [District] 2024-25,Female Students [District] 2024-25,American Indian/Alaska Native Students [District] 2024-25,Asian or Asian/Pacific Islander Students [District] 2024-25,Hispanic Students [District] 2024-25,Black or African American Students [District] 2024-25,White Students [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. Students [District] 2024-25,Two or More Races Students [District] 2024-25,Total Race/Ethnicity [District] 2024-25,American Indian/Alaska Native - male [District] 2024-25,American Indian/Alaska Native - female [District] 2024-25,Asian or Asian/Pacific Islander - male [District] 2024-25,Asian or Asian/Pacific Islander - female [District] 2024-25,Hispanic - male [District] 2024-25,Hispanic - female [District] 2024-25,Black or African American - male [District] 2024-25,Black or African American - female [District] 2024-25,White - male [District] 2024-25,White - female [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25 -21ST CENTURY CHARTER SCH OF GARY,Indiana,IN ,21st Century Charter Sch of Gary,1800046,18089,18,556 Washington St,Gary,46402, ,3175361027,21-Suburb: Large,41.600759,-87.338843,IN-9545,Kindergarten,12th Grade,1180,1180,693,380,†,107,87,101,82,81,98,67,93,84,118,87,88,87,†,†,†,562,618,1,0,64,1088,1,0,26,1180,1,0,0,0,27,37,524,564,0,1,0,0 -21ST CENTURY CYBER CS,Pennsylvania,PA ,21st Century Cyber CS,4200091,42029,42,1245 Wrights Lane,West Chester,19380, ,4848755400,21-Suburb: Large,39.988310,-75.574369,PA-124150002,6th Grade,12th Grade,996,996,150,846,†,†,†,†,†,†,†,20,53,77,202,193,245,206,†,†,†,454,542,1,17,78,156,665,3,76,996,0,1,7,10,36,42,79,77,304,361,2,1 -21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,NM ,21ST CENTURY PUBLIC ACADEMY,3500187,35001,35,4300 CUTLER AVE. NE,ALBUQUERQUE,87110, ,5052540280,11-City: Large,35.105101,-106.599226,NM-35580000,1st Grade,8th Grade,371,371,371,†,†,†,16,24,22,38,44,70,86,71,†,†,†,†,†,†,†,188,183,7,3,59,17,257,0,28,371,2,5,1,2,30,29,11,6,132,125,0,0 -A E R O SPEC EDUC COOP,Illinois,IL ,A E R O Spec Educ Coop,1700024,17031,17,5400 W 77th St,Burbank,60459, ,7084963330,21-Suburb: Large,41.753450,-87.757423,IL-07-016-8060-60,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -A W BEATTIE CAREER CENTER,Pennsylvania,PA ,A W Beattie Career Center,4280010,42003,42,9600 Babcock Boulevard,Allison Park,15101,2005,4128471900,21-Suburb: Large,40.579100,-80.006000,PA-103020407,9th Grade,12th Grade,7,7,†,7,†,†,†,†,†,†,†,†,†,†,0,2,4,1,†,†,†,4,3,0,0,0,0,5,0,2,7,0,0,0,0,0,0,0,0,3,2,0,0 -A+ ACADEMY,Texas,TX ,A+ ACADEMY,4800203,48113,48,8225 BRUTON RD,DALLAS,75217, ,2142751200,11-City: Large,32.749079,-96.679000,TX-057829,Prekindergarten,12th Grade,1678,1678,928,509,147,94,117,92,98,112,113,115,144,137,140,146,110,113,†,†,†,867,811,1,6,1585,54,26,0,6,1678,1,0,2,4,820,765,30,24,11,15,0,0 -A+ ARTS ACADEMY,Ohio,OH ,A+ Arts Academy,3900305,39049,39,1395 Fair Ave,Columbus,43205,1543,6147251305,11-City: Large,39.963397,-82.962898,OH-000556,Kindergarten,8th Grade,247,247,210,†,†,37,31,23,37,25,28,26,19,21,†,†,†,†,†,†,†,129,118,2,2,14,208,5,0,16,247,2,0,2,0,4,10,108,100,2,3,0,0 -A+ CHARTER SCHOOLS (1000166),ARIZONA,AZ ,A+ Charter Schools (1000166),0400998,04021,04,41600 W Smith-Enke Rd,Maricopa,85138, ,5202655589,23-Suburb: Small,33.042533,-112.015895,AZ-1000166,6th Grade,12th Grade,370,370,134,236,†,†,†,†,†,†,†,55,40,39,61,59,75,41,†,†,†,211,159,7,4,154,44,137,1,23,370,3,4,3,1,87,67,24,20,82,55,0,1 -A+ CHILDREN'S ACADEMY,Ohio,OH ,A+ Children's Academy,3901480,39049,39,114 Obetz Rd,Columbus,43207,4031,6144918502,11-City: Large,39.882382,-82.996978,OH-013232,Kindergarten,6th Grade,107,107,84,†,†,23,19,17,18,5,9,16,†,†,†,†,†,†,†,†,†,60,47,0,2,7,49,36,0,13,107,0,0,2,0,3,4,25,24,25,11,0,0 -A+ UNLIMITED POTENTIAL,TEXAS,TX ,A+ UNLIMITED POTENTIAL,4801453,48201,48,2410 HAMILTON,HOUSTON,77004, ,7132043837,11-City: Large,29.742381,-95.365400,TX-101871,6th Grade,10th Grade,203,203,156,47,†,†,†,†,†,†,†,51,48,57,36,11,†,†,†,†,†,107,96,0,0,79,108,6,0,10,203,0,0,0,0,45,34,50,58,4,2,0,0 -A-C CENTRAL CUSD 262,Illinois,IL ,A-C Central CUSD 262,1700105,17017,17,501 W Buchanan St,Ashland,62612,7624,2174768112,42-Rural: Distant,39.892816,-90.012787,IL-01-009-2620-26,Prekindergarten,12th Grade,314,314,174,96,28,16,21,20,23,21,22,22,24,21,21,19,29,27,†,†,†,153,161,0,0,8,2,294,0,10,314,0,0,0,0,7,1,1,1,140,154,0,0 -A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,VA ,A. Linwood Holton Governor's School,5100033,51191,51,One Partnership Circle,Abingdon,24210, ,2766194326,23-Suburb: Small,36.696706,-82.000650,VA-268,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† -A.C.E. ACADEMY,North Carolina,NC ,A.C.E. Academy,3700372,37025,37,7807 Caldwell Road,Harrisburg,28075, ,7044567153,21-Suburb: Large,35.308346,-80.673005,NC-13C,Kindergarten,8th Grade,421,421,369,†,†,52,45,48,53,40,44,49,54,36,†,†,†,†,†,†,†,216,205,1,7,68,323,9,0,13,421,0,1,4,3,30,38,170,153,7,2,0,0 -A.C.G.C. PUBLIC SCHOOL DISTRICT,Minnesota,MN ,A.C.G.C. Public School District,2700106,27093,27,27250 MINNESOTA HIGHWAY 4,GROVE CITY,56243,5003,3202444712,42-Rural: Distant,45.142925,-94.683644,MN-012396,Prekindergarten,12th Grade,893,893,531,263,30,69,75,70,62,63,72,62,67,60,63,76,56,68,†,†,†,481,412,5,5,124,0,728,0,31,893,1,4,1,4,60,64,0,0,404,324,0,0 -ABBEVILLE 60,South Carolina,SC ,Abbeville 60,4500690,45001,45,400 Greenville Street,Abbeville,29620, ,8643665427,42-Rural: Distant,34.185163,-82.380158,SC-0160,Prekindergarten,12th Grade,2746,2746,1606,842,102,196,227,180,206,188,200,211,184,210,243,209,186,204,†,†,†,1441,1304,6,9,77,893,1679,1,80,2745,3,3,6,3,45,32,470,423,878,801,1,0 -ABBOTSFORD SCHOOL DISTRICT,Wisconsin,WI ,Abbotsford School District,5500030,55019,55,510 W Hemlock St,Abbotsford,54405, ,7152236715,43-Rural: Remote,44.949886,-90.332138,WI-0007,Prekindergarten,12th Grade,799,799,439,248,60,52,50,62,46,53,52,56,63,57,48,51,69,80,†,†,†,407,392,0,27,529,2,226,0,15,799,0,0,15,12,268,261,1,1,117,109,0,0 -ABBOTT ISD,Texas,TX ,ABBOTT ISD,4807380,48217,48,219 S FIRST ST,ABBOTT,76621,0226,2545823011,42-Rural: Distant,31.883393,-97.076850,TX-109901,Prekindergarten,12th Grade,284,284,164,87,12,21,19,23,20,23,21,16,21,21,26,25,17,19,†,†,†,156,128,0,0,49,3,225,0,7,284,0,0,0,0,29,20,2,1,124,101,0,0 -ABBY KELLEY FOSTER CHARTER PUBLIC,Massachusetts,MA ,Abby Kelley Foster Charter Public,2500051,25027,25,10 New Bond Street,Worcester,01606, ,5088548400,12-City: Mid-size,42.305635,-71.801599,MA-0445,Kindergarten,12th Grade,1426,1426,980,321,†,125,123,125,127,130,128,128,111,108,80,85,80,76,†,†,†,661,765,8,38,347,797,163,1,72,1426,5,3,18,20,172,175,357,440,71,92,1,0 -ABC UNIFIED,California,CA ,ABC Unified,0601620,06037,06,16700 Norwalk Blvd.,Cerritos,90703,1838,5629265566,21-Suburb: Large,33.879715,-118.071463,CA-1964212,Kindergarten,12th Grade,17612,17612,10161,5921,†,1530,1044,1193,1241,1263,1294,1391,1379,1356,1472,1379,1455,1615,†,†,0,9098,8509,34,6208,8043,1174,788,92,1268,17607,18,16,3221,2987,4171,3872,579,595,421,367,50,42 -ABERDEEN DISTRICT,Idaho,ID ,ABERDEEN DISTRICT,1600030,16011,16,318 WEST WASHINGTON,ABERDEEN,83210,0610,2083974113,42-Rural: Distant,42.943667,-112.844022,ID-058,Prekindergarten,12th Grade,625,625,346,213,12,54,33,35,44,50,46,51,47,40,53,59,48,53,†,†,†,307,318,2,1,405,3,208,1,5,625,0,2,1,0,191,214,1,2,111,97,0,1 -ABERDEEN SCHOOL DISTRICT,Mississippi,MS ,Aberdeen School District,2800360,28095,28,1100 W COMMERCE,Aberdeen,39730, ,6623694682,42-Rural: Distant,33.826076,-88.565636,MS-4820,Kindergarten,13th Grade,924,924,544,311,†,68,75,72,66,65,73,51,67,75,67,74,95,75,1,†,†,474,450,0,3,6,866,31,0,18,924,0,0,2,1,2,4,442,424,19,12,0,0 -ABERDEEN SCHOOL DISTRICT,Washington,WA ,Aberdeen School District,5300030,53027,53,216 N G ST,ABERDEEN,98520,5297,3605382000,33-Town: Remote,46.978400,-123.816491,WA-14005,Prekindergarten,12th Grade,3183,3183,1700,1161,143,179,202,182,216,205,204,235,226,230,272,266,303,320,†,†,†,1591,1588,72,27,1197,42,1600,5,236,3179,32,40,13,14,597,600,19,23,802,798,3,2 -ABERDEEN SCHOOL DISTRICT 06-1,South Dakota,SD ,Aberdeen School District 06-1,4602070,46013,46,1224 3rd St S,Aberdeen,57401, ,6057257111,33-Town: Remote,45.452020,-98.492851,SD-06001,Prekindergarten,12th Grade,4233,4233,2558,1384,0,291,318,352,324,293,310,330,298,333,315,313,358,398,†,†,†,2177,2056,263,156,443,95,2960,29,287,4233,120,143,93,63,233,210,51,44,1521,1439,10,19 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv new file mode 100644 index 0000000000..f5cbdb740a --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/sample_input/ELSI_csv_export_639156251902613595159.csv @@ -0,0 +1,20 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a District based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Agency Name,State Name [District] Latest available year,Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 10 Students - Two or More Races [District] 2024-25,Grade 11 Students - American Indian/Alaska Native [District] 2024-25,Grade 11 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 11 Students - Hispanic [District] 2024-25,Grade 11 Students - Black or African American [District] 2024-25,Grade 11 Students - White [District] 2024-25,Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 11 Students - Two or More Races [District] 2024-25,Grade 12 Students - American Indian/Alaska Native [District] 2024-25,Grade 12 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 12 Students - Hispanic [District] 2024-25,Grade 12 Students - Black or African American [District] 2024-25,Grade 12 Students - White [District] 2024-25,Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 12 Students - Two or More Races [District] 2024-25,Grade 13 Students - American Indian/Alaska Native [District] 2024-25,Grade 13 Students - Asian or Asian/Pacific Islander [District] 2024-25,Grade 13 Students - Hispanic [District] 2024-25,Grade 13 Students - Black or African American [District] 2024-25,Grade 13 Students - White [District] 2024-25,Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Grade 13 Students - Two or More Races [District] 2024-25,Ungraded Students - American Indian/Alaska Native [District] 2024-25,Ungraded Students - Asian or Asian/Pacific Islander [District] 2024-25,Ungraded Students - Hispanic [District] 2024-25,Ungraded Students - Black or African American [District] 2024-25,Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Ungraded Students - White [District] 2024-25,Ungraded Students - Two or More Races [District] 2024-25,Adult Education Students - American Indian/Alaska Native [District] 2024-25,Adult Education Students - Asian or Asian/Pacific Islander [District] 2024-25,Adult Education Students - Hispanic [District] 2024-25,Adult Education Students - Black or African American [District] 2024-25,Adult Education Students - White [District] 2024-25,Adult Education - Nat. Hawaiian or Other Pacific Isl. [District] 2024-25,Adult Education Students - Two or More Races [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Prekindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Prekindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Prekindergarten Students - Hispanic - male [District] 2024-25,Prekindergarten Students - Hispanic - female [District] 2024-25,Prekindergarten Students - Black or African American - male [District] 2024-25,Prekindergarten Students - Black or African American - female [District] 2024-25,Prekindergarten Students - White - male [District] 2024-25,Prekindergarten Students - White - female [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District] 2024-25,Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District] 2024-25,Prekindergarten Students - Two or More Races - male [District] 2024-25,Prekindergarten Students - Two or More Races - female [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - male [District] 2024-25,Kindergarten Students - American Indian/Alaska Native - female [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - male [District] 2024-25,Kindergarten Students - Asian or Asian/Pacific Islander - female [District] 2024-25,Kindergarten Students - Hispanic - male [District] 2024-25,Kindergarten Students - Hispanic - female [District] 2024-25,Kindergarten Students - Black or African American - male [District] 2024-25,Kindergarten Students - Black or African American - female [District] 2024-25,Agency ID - NCES Assigned [District] Latest available year +21ST CENTURY CHARTER SCH OF GARY,Indiana,0,4,0,0,3,84,0,0,1,0,0,6,78,1,0,2,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,3,2,52,49,1800046 +21ST CENTURY CYBER CS,Pennsylvania,0,16,0,4,24,30,171,1,15,0,6,13,31,140,0,16,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4200091 +21ST CENTURY PUBLIC ACADEMY,NEW MEXICO,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,3500187 +A E R O SPEC EDUC COOP,Illinois,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,1700024 +A W BEATTIE CAREER CENTER,Pennsylvania,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4280010 +A+ ACADEMY,Texas,0,0,0,1,106,3,0,0,0,0,0,106,4,3,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,63,69,2,10,2,1,0,0,0,0,0,0,0,1,40,48,3,0,4800203 +A+ ARTS ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,2,0,1,5,11,15,3900305 +A+ CHARTER SCHOOLS (1000166),ARIZONA,1,3,1,0,35,8,29,0,2,1,0,19,3,17,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0400998 +A+ CHILDREN'S ACADEMY,Ohio,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,2,1,5,6,3901480 +A+ UNLIMITED POTENTIAL,TEXAS,0,0,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,4801453 +A-C CENTRAL CUSD 262,Illinois,0,1,0,0,1,1,27,0,0,0,0,1,0,25,0,1,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,0,0,0,0,0,0,0,16,11,0,0,0,1,0,0,0,0,0,0,0,0,1700105 +A. LINWOOD HOLTON GOVERNOR'S SCHOOL,Virginia,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,5100033 +A.C.E. ACADEMY,North Carolina,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,0,1,1,0,2,3,22,21,3700372 diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv index e760916915..6d31de67ed 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv @@ -1,19 +1,12 @@ "school_state_code","ZIP","Location_ZIP4","County_code","District_School_name","School_ID","State_school_ID","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","Lowest_Grade_Dist","Highest_Grade_Dist","year","geoID","ContainedInPlace","Validated_State_Abbr","School_Management" -"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","IN-9545","3175361027","Indiana","IN","geoId/18","41.600759","-87.338843","dcs:NCES_SuburbLarge","556 Washington St Gary IN 46402","Gary","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" -"geoId/sch4200091","19380","","geoId/42029","21St Century Cyber Cs","4200091","PA-124150002","4848755400","Pennsylvania","PA","geoId/42","39.98831","-75.574369","dcs:NCES_SuburbLarge","1245 Wrights Lane West Chester PA 19380","West Chester","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" -"geoId/sch4807380","76621","0226","geoId/48217","Abbott Isd","4807380","TX-109901","2545823011","Texas","TX","geoId/48","31.883393","-97.07685","dcs:NCES_RuralDistant","219 S First St Abbott TX 76621-0226","ABBOTT","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4807380","dcs:geoId/48","TX","" -"geoId/sch5500030","54405","","geoId/55019","Abbotsford School District","5500030","WI-0007","7152236715","Wisconsin","WI","geoId/55","44.949886","-90.332138","dcs:NCES_RuralRemote","510 W Hemlock St Abbotsford WI 54405","Abbotsford","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch5500030","dcs:geoId/55","WI","" -"geoId/sch4500690","29620","","geoId/45001","Abbeville 60","4500690","SC-0160","8643665427","South Carolina","SC","geoId/45","34.185163","-82.380158","dcs:NCES_RuralDistant","400 Greenville Street Abbeville SC 29620","Abbeville","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4500690","dcs:geoId/45","SC","" -"geoId/sch2700106","56243","5003","geoId/27093","A.C.G.C. Public School District","2700106","MN-012396","3202444712","Minnesota","MN","geoId/27","45.142925","-94.683644","dcs:NCES_RuralDistant","27250 Minnesota Highway 4 Grove City MN 56243-5003","GROVE CITY","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch2700106","dcs:geoId/27","MN","" -"geoId/sch3700372","28075","","geoId/37025","A.C.E. Academy","3700372","NC-13C","7044567153","North Carolina","NC","geoId/37","35.308346","-80.673005","dcs:NCES_SuburbLarge","7807 Caldwell Road Harrisburg NC 28075","Harrisburg","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3700372","dcs:geoId/37","NC","" -"geoId/sch5100033","24210","","geoId/51191","A. Linwood Holton Governor'S School","5100033","VA-268","2766194326","Virginia","VA","geoId/51","36.696706","-82.00065","dcs:NCES_SuburbSmall","One Partnership Circle Abingdon VA 24210","Abingdon","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch5100033","dcs:geoId/51","VA","" -"geoId/sch1700105","62612","7624","geoId/17017","A-C Central Cusd 262","1700105","IL-01-009-2620-26","2174768112","Illinois","IL","geoId/17","39.892816","-90.012787","dcs:NCES_RuralDistant","501 W Buchanan St Ashland IL 62612-7624","Ashland","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch1700105","dcs:geoId/17","IL","" -"geoId/sch4801453","77004","","geoId/48201","A+ Unlimited Potential","4801453","TX-101871","7132043837","TEXAS","TX","geoId/48","29.742381","-95.3654","dcs:NCES_CityLarge","2410 Hamilton Houston TX 77004","HOUSTON","dcs:SchoolGrade6","dcs:SchoolGrade10","2024","sch4801453","dcs:geoId/48","TX","" -"geoId/sch3901480","43207","4031","geoId/39049","A+ Children'S Academy","3901480","OH-013232","6144918502","Ohio","OH","geoId/39","39.882382","-82.996978","dcs:NCES_CityLarge","114 Obetz Rd Columbus OH 43207-4031","Columbus","dcs:Kindergarten","dcs:SchoolGrade6","2024","sch3901480","dcs:geoId/39","OH","" -"geoId/sch0400998","85138","","geoId/04021","A+ Charter Schools (1000166)","0400998","AZ-1000166","5202655589","ARIZONA","AZ","geoId/04","33.042533","-112.015895","dcs:NCES_SuburbSmall","41600 W Smith-Enke Rd Maricopa AZ 85138","Maricopa","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch0400998","dcs:geoId/04","AZ","" -"geoId/sch3900305","43205","1543","geoId/39049","A+ Arts Academy","3900305","OH-000556","6147251305","Ohio","OH","geoId/39","39.963397","-82.962898","dcs:NCES_CityLarge","1395 Fair Ave Columbus OH 43205-1543","Columbus","dcs:Kindergarten","dcs:SchoolGrade8","2024","sch3900305","dcs:geoId/39","OH","" -"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","TX-057829","2142751200","Texas","TX","geoId/48","32.749079","-96.679","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" -"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","PA-103020407","4128471900","Pennsylvania","PA","geoId/42","40.5791","-80.006","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","Allison Park","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" -"geoId/sch1700024","60459","","geoId/17031","A E R O Spec Educ Coop","1700024","IL-07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.75345","-87.757423","dcs:NCES_SuburbLarge","5400 W 77Th St Burbank IL 60459","Burbank","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" -"geoId/sch3500187","87110","","geoId/35001","21St Century Public Academy","3500187","NM-35580000","5052540280","NEW MEXICO","NM","geoId/35","35.105101","-106.599226","dcs:NCES_CityLarge","4300 Cutler Ave. Ne Albuquerque NM 87110","ALBUQUERQUE","dcs:SchoolGrade1","dcs:SchoolGrade8","2024","sch3500187","dcs:geoId/35","NM","" -"geoId/sch2500051","1606","","geoId/25027","Abby Kelley Foster Charter Public","2500051","MA-0445","5088548400","Massachusetts","MA","geoId/25","42.305635","-71.801599","dcs:NCES_CityMidsize","10 New Bond Street Worcester MA 1606","Worcester","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch2500051","dcs:geoId/25","MA","" +"geoId/sch1800046","","","","21St Century Charter Sch Of Gary","1800046","","","Indiana","IN","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1800046","dcs:geoId/18","","" +"geoId/sch4200091","","","","21St Century Cyber Cs","4200091","","","Pennsylvania","PA","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4200091","dcs:geoId/42","","" +"geoId/sch3500187","","","","21St Century Public Academy","3500187","","","NEW MEXICO","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch3500187","","","" +"geoId/sch1700024","","","","A E R O Spec Educ Coop","1700024","","","Illinois","IL","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","","" +"geoId/sch4280010","","","","A W Beattie Career Center","4280010","","","Pennsylvania","PA","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4280010","dcs:geoId/42","","" +"geoId/sch4800203","","","","A+ Academy","4800203","","","Texas","TX","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4800203","dcs:geoId/48","","" +"geoId/sch3900305","","","","A+ Arts Academy","3900305","","","Ohio","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch3900305","","","" +"geoId/sch0400998","","","","A+ Charter Schools (1000166)","0400998","","","ARIZONA","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch0400998","","","" +"geoId/sch4000760","74525","1231","geoId/40005","(Ilc) Atoka-Coal Counties","4000760","03-K002","5808892664","Oklahoma","OK","geoId/40","34.31851","-96.164555","dcs:NCES_RuralRemote","201 Se First St Tushka OK 74525-1231","TUSHKA","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2015","sch4000760","dcs:geoId/40","OK","" +"geoId/sch0400328","86326","","geoId/04025","A Center For Creative Education (79457)","0400328","79457","9286343288","Arizona","AZ","geoId/04","34.735219","-112.009436","dcs:NCES_TownDistant","215 South Main Street Cottonwood AZ 86326","COTTONWOOD","dcs:Kindergarten","dcs:SchoolGrade8","2015","sch0400328","dcs:geoId/04","AZ","" +"geoId/sch4800095","75237","","geoId/48113","A W Brown Leadership Academy","4800095","057816","9727094700","Texas","TX","geoId/48","32.677822","-96.882147","dcs:NCES_CityLarge","5701 Red Bird Ctr Dr Dallas TX 75237","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade8","2015","sch4800095","dcs:geoId/48","TX","" diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv index 2dfe256516..dcc66c2513 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.csv @@ -1,546 +1,332 @@ school_state_code,year,sv_name,observation,scaling_factor,unit -geoId/sch0400998,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,4.0,, -geoId/sch1700105,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch2500051,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,3.0,, -geoId/sch2700106,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,4.0,, -geoId/sch3500187,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,5.0,, -geoId/sch3700372,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch3901480,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4200091,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch4280010,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4500690,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,3.0,, -geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4801453,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4807380,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch5500030,2025,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch0400998,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,3.0,, -geoId/sch1700105,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch2500051,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,5.0,, -geoId/sch2700106,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch3500187,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,2.0,, -geoId/sch3700372,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,2.0,, -geoId/sch3901480,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4200091,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4280010,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4500690,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,3.0,, -geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch4801453,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4807380,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch5500030,2025,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative,7.0,, -geoId/sch1700105,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch2500051,2025,Count_Student_AmericanIndianOrAlaskaNative,8.0,, -geoId/sch2700106,2025,Count_Student_AmericanIndianOrAlaskaNative,5.0,, -geoId/sch3500187,2025,Count_Student_AmericanIndianOrAlaskaNative,7.0,, -geoId/sch3700372,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch3900305,2025,Count_Student_AmericanIndianOrAlaskaNative,2.0,, -geoId/sch3901480,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4500690,2025,Count_Student_AmericanIndianOrAlaskaNative,6.0,, -geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative,1.0,, -geoId/sch4801453,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch4807380,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch5500030,2025,Count_Student_AmericanIndianOrAlaskaNative,0.0,, -geoId/sch0400998,2025,Count_Student_Female_Asian,1.0,, -geoId/sch1700105,2025,Count_Student_Female_Asian,0.0,, -geoId/sch1800046,2025,Count_Student_Female_Asian,0.0,, -geoId/sch2500051,2025,Count_Student_Female_Asian,20.0,, -geoId/sch2700106,2025,Count_Student_Female_Asian,4.0,, -geoId/sch3500187,2025,Count_Student_Female_Asian,2.0,, -geoId/sch3700372,2025,Count_Student_Female_Asian,3.0,, -geoId/sch3900305,2025,Count_Student_Female_Asian,0.0,, -geoId/sch3901480,2025,Count_Student_Female_Asian,0.0,, -geoId/sch4200091,2025,Count_Student_Female_Asian,10.0,, -geoId/sch4280010,2025,Count_Student_Female_Asian,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Asian,3.0,, -geoId/sch4800203,2025,Count_Student_Female_Asian,4.0,, -geoId/sch4801453,2025,Count_Student_Female_Asian,0.0,, -geoId/sch4807380,2025,Count_Student_Female_Asian,0.0,, -geoId/sch5500030,2025,Count_Student_Female_Asian,12.0,, -geoId/sch0400998,2025,Count_Student_Male_Asian,3.0,, -geoId/sch1700105,2025,Count_Student_Male_Asian,0.0,, -geoId/sch1800046,2025,Count_Student_Male_Asian,0.0,, -geoId/sch2500051,2025,Count_Student_Male_Asian,18.0,, -geoId/sch2700106,2025,Count_Student_Male_Asian,1.0,, -geoId/sch3500187,2025,Count_Student_Male_Asian,1.0,, -geoId/sch3700372,2025,Count_Student_Male_Asian,4.0,, -geoId/sch3900305,2025,Count_Student_Male_Asian,2.0,, -geoId/sch3901480,2025,Count_Student_Male_Asian,2.0,, -geoId/sch4200091,2025,Count_Student_Male_Asian,7.0,, -geoId/sch4280010,2025,Count_Student_Male_Asian,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Asian,6.0,, -geoId/sch4800203,2025,Count_Student_Male_Asian,2.0,, -geoId/sch4801453,2025,Count_Student_Male_Asian,0.0,, -geoId/sch4807380,2025,Count_Student_Male_Asian,0.0,, -geoId/sch5500030,2025,Count_Student_Male_Asian,15.0,, -geoId/sch0400998,2025,Count_Student_Asian,4.0,, -geoId/sch1700105,2025,Count_Student_Asian,0.0,, -geoId/sch1800046,2025,Count_Student_Asian,0.0,, -geoId/sch2500051,2025,Count_Student_Asian,38.0,, -geoId/sch2700106,2025,Count_Student_Asian,5.0,, -geoId/sch3500187,2025,Count_Student_Asian,3.0,, -geoId/sch3700372,2025,Count_Student_Asian,7.0,, -geoId/sch3900305,2025,Count_Student_Asian,2.0,, -geoId/sch3901480,2025,Count_Student_Asian,2.0,, -geoId/sch4200091,2025,Count_Student_Asian,17.0,, -geoId/sch4280010,2025,Count_Student_Asian,0.0,, -geoId/sch4500690,2025,Count_Student_Asian,9.0,, -geoId/sch4800203,2025,Count_Student_Asian,6.0,, -geoId/sch4801453,2025,Count_Student_Asian,0.0,, -geoId/sch4807380,2025,Count_Student_Asian,0.0,, -geoId/sch5500030,2025,Count_Student_Asian,27.0,, -geoId/sch0400998,2025,Count_Student_Female_Black,20.0,, -geoId/sch1700105,2025,Count_Student_Female_Black,1.0,, -geoId/sch1800046,2025,Count_Student_Female_Black,564.0,, -geoId/sch2500051,2025,Count_Student_Female_Black,440.0,, -geoId/sch2700106,2025,Count_Student_Female_Black,0.0,, -geoId/sch3500187,2025,Count_Student_Female_Black,6.0,, -geoId/sch3700372,2025,Count_Student_Female_Black,153.0,, -geoId/sch3900305,2025,Count_Student_Female_Black,100.0,, -geoId/sch3901480,2025,Count_Student_Female_Black,24.0,, -geoId/sch4200091,2025,Count_Student_Female_Black,77.0,, -geoId/sch4280010,2025,Count_Student_Female_Black,0.0,, -geoId/sch4500690,2025,Count_Student_Female_Black,423.0,, -geoId/sch4800203,2025,Count_Student_Female_Black,24.0,, -geoId/sch4801453,2025,Count_Student_Female_Black,58.0,, -geoId/sch4807380,2025,Count_Student_Female_Black,1.0,, -geoId/sch5500030,2025,Count_Student_Female_Black,1.0,, -geoId/sch0400998,2025,Count_Student_Male_Black,24.0,, -geoId/sch1700105,2025,Count_Student_Male_Black,1.0,, -geoId/sch1800046,2025,Count_Student_Male_Black,524.0,, -geoId/sch2500051,2025,Count_Student_Male_Black,357.0,, -geoId/sch2700106,2025,Count_Student_Male_Black,0.0,, -geoId/sch3500187,2025,Count_Student_Male_Black,11.0,, -geoId/sch3700372,2025,Count_Student_Male_Black,170.0,, -geoId/sch3900305,2025,Count_Student_Male_Black,108.0,, -geoId/sch3901480,2025,Count_Student_Male_Black,25.0,, -geoId/sch4200091,2025,Count_Student_Male_Black,79.0,, -geoId/sch4280010,2025,Count_Student_Male_Black,0.0,, -geoId/sch4500690,2025,Count_Student_Male_Black,470.0,, -geoId/sch4800203,2025,Count_Student_Male_Black,30.0,, -geoId/sch4801453,2025,Count_Student_Male_Black,50.0,, -geoId/sch4807380,2025,Count_Student_Male_Black,2.0,, -geoId/sch5500030,2025,Count_Student_Male_Black,1.0,, -geoId/sch0400998,2025,Count_Student_Black,44.0,, -geoId/sch1700105,2025,Count_Student_Black,2.0,, -geoId/sch1800046,2025,Count_Student_Black,1088.0,, -geoId/sch2500051,2025,Count_Student_Black,797.0,, -geoId/sch2700106,2025,Count_Student_Black,0.0,, -geoId/sch3500187,2025,Count_Student_Black,17.0,, -geoId/sch3700372,2025,Count_Student_Black,323.0,, -geoId/sch3900305,2025,Count_Student_Black,208.0,, -geoId/sch3901480,2025,Count_Student_Black,49.0,, -geoId/sch4200091,2025,Count_Student_Black,156.0,, -geoId/sch4280010,2025,Count_Student_Black,0.0,, -geoId/sch4500690,2025,Count_Student_Black,893.0,, -geoId/sch4800203,2025,Count_Student_Black,54.0,, -geoId/sch4801453,2025,Count_Student_Black,108.0,, -geoId/sch4807380,2025,Count_Student_Black,3.0,, -geoId/sch5500030,2025,Count_Student_Black,2.0,, -geoId/sch0400998,2025,Count_Student_Female,159.0,, -geoId/sch1700105,2025,Count_Student_Female,161.0,, -geoId/sch1800046,2025,Count_Student_Female,618.0,, -geoId/sch2500051,2025,Count_Student_Female,765.0,, -geoId/sch2700106,2025,Count_Student_Female,412.0,, -geoId/sch3500187,2025,Count_Student_Female,183.0,, -geoId/sch3700372,2025,Count_Student_Female,205.0,, -geoId/sch3900305,2025,Count_Student_Female,118.0,, -geoId/sch3901480,2025,Count_Student_Female,47.0,, -geoId/sch4200091,2025,Count_Student_Female,542.0,, -geoId/sch4280010,2025,Count_Student_Female,3.0,, -geoId/sch4500690,2025,Count_Student_Female,1304.0,, -geoId/sch4800203,2025,Count_Student_Female,811.0,, -geoId/sch4801453,2025,Count_Student_Female,96.0,, -geoId/sch4807380,2025,Count_Student_Female,128.0,, -geoId/sch5500030,2025,Count_Student_Female,392.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade1,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade1,87.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade1,123.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade1,75.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade1,16.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade1,45.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade1,31.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade1,19.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade1,227.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade1,117.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade1,19.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade1,50.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade10,59.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade10,19.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade10,87.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade10,85.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade10,76.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade10,193.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade10,2.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade10,209.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade10,146.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade10,11.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade10,25.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade10,51.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade11,75.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade11,29.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade11,88.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade11,80.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade11,56.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade11,245.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade11,4.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade11,186.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade11,110.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade11,17.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade11,69.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade12,41.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade12,27.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade12,87.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade12,76.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade12,68.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade12,206.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade12,1.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade12,204.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade12,113.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade12,19.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade12,80.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade2,20.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade2,101.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade2,125.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade2,70.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade2,24.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade2,48.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade2,23.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade2,17.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade2,180.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade2,92.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade2,23.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade2,62.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade3,23.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade3,82.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade3,127.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade3,62.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade3,22.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade3,53.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade3,37.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade3,18.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade3,206.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade3,98.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade3,20.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade3,46.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade4,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade4,81.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade4,130.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade4,63.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade4,38.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade4,40.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade4,25.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade4,5.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade4,188.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade4,112.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade4,23.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade4,53.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade5,22.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade5,98.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade5,128.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade5,72.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade5,44.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade5,44.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade5,28.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade5,9.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade5,200.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade5,113.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade5,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade5,52.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade6,55.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade6,22.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade6,67.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade6,128.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade6,62.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade6,70.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade6,49.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade6,26.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade6,16.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade6,20.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade6,211.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade6,115.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade6,51.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade6,16.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade6,56.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade7,40.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade7,24.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade7,93.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade7,111.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade7,67.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade7,86.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade7,54.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade7,19.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade7,53.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade7,184.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade7,144.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade7,48.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade7,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade7,63.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade8,39.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade8,84.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade8,108.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade8,60.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade8,71.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade8,36.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade8,77.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade8,210.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade8,137.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade8,57.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade8,21.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade8,57.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade9,61.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade9,21.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade9,118.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade9,80.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade9,63.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade9,202.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade9,0.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade9,243.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade9,140.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade9,36.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade9,26.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade9,48.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade1To8,134.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade1To8,174.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade1To8,693.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade1To8,980.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade1To8,531.0,, -geoId/sch3500187,2025,Count_Student_SchoolGrade1To8,371.0,, -geoId/sch3700372,2025,Count_Student_SchoolGrade1To8,369.0,, -geoId/sch3900305,2025,Count_Student_SchoolGrade1To8,210.0,, -geoId/sch3901480,2025,Count_Student_SchoolGrade1To8,84.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade1To8,150.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade1To8,1606.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade1To8,928.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade1To8,156.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade1To8,164.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade1To8,439.0,, -geoId/sch0400998,2025,Count_Student_SchoolGrade9To12,236.0,, -geoId/sch1700105,2025,Count_Student_SchoolGrade9To12,96.0,, -geoId/sch1800046,2025,Count_Student_SchoolGrade9To12,380.0,, -geoId/sch2500051,2025,Count_Student_SchoolGrade9To12,321.0,, -geoId/sch2700106,2025,Count_Student_SchoolGrade9To12,263.0,, -geoId/sch4200091,2025,Count_Student_SchoolGrade9To12,846.0,, -geoId/sch4280010,2025,Count_Student_SchoolGrade9To12,7.0,, -geoId/sch4500690,2025,Count_Student_SchoolGrade9To12,842.0,, -geoId/sch4800203,2025,Count_Student_SchoolGrade9To12,509.0,, -geoId/sch4801453,2025,Count_Student_SchoolGrade9To12,47.0,, -geoId/sch4807380,2025,Count_Student_SchoolGrade9To12,87.0,, -geoId/sch5500030,2025,Count_Student_SchoolGrade9To12,248.0,, -geoId/sch0400998,2025,Count_Student_Female_HispanicOrLatino,67.0,, -geoId/sch1700105,2025,Count_Student_Female_HispanicOrLatino,1.0,, -geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino,37.0,, -geoId/sch2500051,2025,Count_Student_Female_HispanicOrLatino,175.0,, -geoId/sch2700106,2025,Count_Student_Female_HispanicOrLatino,64.0,, -geoId/sch3500187,2025,Count_Student_Female_HispanicOrLatino,29.0,, -geoId/sch3700372,2025,Count_Student_Female_HispanicOrLatino,38.0,, -geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino,10.0,, -geoId/sch3901480,2025,Count_Student_Female_HispanicOrLatino,4.0,, -geoId/sch4200091,2025,Count_Student_Female_HispanicOrLatino,42.0,, -geoId/sch4280010,2025,Count_Student_Female_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HispanicOrLatino,32.0,, -geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino,765.0,, -geoId/sch4801453,2025,Count_Student_Female_HispanicOrLatino,34.0,, -geoId/sch4807380,2025,Count_Student_Female_HispanicOrLatino,20.0,, -geoId/sch5500030,2025,Count_Student_Female_HispanicOrLatino,261.0,, -geoId/sch0400998,2025,Count_Student_Male_HispanicOrLatino,87.0,, -geoId/sch1700105,2025,Count_Student_Male_HispanicOrLatino,7.0,, -geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino,27.0,, -geoId/sch2500051,2025,Count_Student_Male_HispanicOrLatino,172.0,, -geoId/sch2700106,2025,Count_Student_Male_HispanicOrLatino,60.0,, -geoId/sch3500187,2025,Count_Student_Male_HispanicOrLatino,30.0,, -geoId/sch3700372,2025,Count_Student_Male_HispanicOrLatino,30.0,, -geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino,4.0,, -geoId/sch3901480,2025,Count_Student_Male_HispanicOrLatino,3.0,, -geoId/sch4200091,2025,Count_Student_Male_HispanicOrLatino,36.0,, -geoId/sch4280010,2025,Count_Student_Male_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HispanicOrLatino,45.0,, -geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino,820.0,, -geoId/sch4801453,2025,Count_Student_Male_HispanicOrLatino,45.0,, -geoId/sch4807380,2025,Count_Student_Male_HispanicOrLatino,29.0,, -geoId/sch5500030,2025,Count_Student_Male_HispanicOrLatino,268.0,, -geoId/sch0400998,2025,Count_Student_HispanicOrLatino,154.0,, -geoId/sch1700105,2025,Count_Student_HispanicOrLatino,8.0,, -geoId/sch1800046,2025,Count_Student_HispanicOrLatino,64.0,, -geoId/sch2500051,2025,Count_Student_HispanicOrLatino,347.0,, -geoId/sch2700106,2025,Count_Student_HispanicOrLatino,124.0,, -geoId/sch3500187,2025,Count_Student_HispanicOrLatino,59.0,, -geoId/sch3700372,2025,Count_Student_HispanicOrLatino,68.0,, -geoId/sch3900305,2025,Count_Student_HispanicOrLatino,14.0,, -geoId/sch3901480,2025,Count_Student_HispanicOrLatino,7.0,, -geoId/sch4200091,2025,Count_Student_HispanicOrLatino,78.0,, -geoId/sch4280010,2025,Count_Student_HispanicOrLatino,0.0,, -geoId/sch4500690,2025,Count_Student_HispanicOrLatino,77.0,, -geoId/sch4800203,2025,Count_Student_HispanicOrLatino,1585.0,, -geoId/sch4801453,2025,Count_Student_HispanicOrLatino,79.0,, -geoId/sch4807380,2025,Count_Student_HispanicOrLatino,49.0,, -geoId/sch5500030,2025,Count_Student_HispanicOrLatino,529.0,, -geoId/sch1700105,2025,Count_Student_Kindergarten,16.0,, -geoId/sch1800046,2025,Count_Student_Kindergarten,107.0,, -geoId/sch2500051,2025,Count_Student_Kindergarten,125.0,, -geoId/sch2700106,2025,Count_Student_Kindergarten,69.0,, -geoId/sch3700372,2025,Count_Student_Kindergarten,52.0,, -geoId/sch3900305,2025,Count_Student_Kindergarten,37.0,, -geoId/sch3901480,2025,Count_Student_Kindergarten,23.0,, -geoId/sch4500690,2025,Count_Student_Kindergarten,196.0,, -geoId/sch4800203,2025,Count_Student_Kindergarten,94.0,, -geoId/sch4807380,2025,Count_Student_Kindergarten,21.0,, -geoId/sch5500030,2025,Count_Student_Kindergarten,52.0,, -geoId/sch0400998,2025,Count_Student_Male,211.0,, -geoId/sch1700105,2025,Count_Student_Male,153.0,, -geoId/sch1800046,2025,Count_Student_Male,562.0,, -geoId/sch2500051,2025,Count_Student_Male,661.0,, -geoId/sch2700106,2025,Count_Student_Male,481.0,, -geoId/sch3500187,2025,Count_Student_Male,188.0,, -geoId/sch3700372,2025,Count_Student_Male,216.0,, -geoId/sch3900305,2025,Count_Student_Male,129.0,, -geoId/sch3901480,2025,Count_Student_Male,60.0,, -geoId/sch4200091,2025,Count_Student_Male,454.0,, -geoId/sch4280010,2025,Count_Student_Male,4.0,, -geoId/sch4500690,2025,Count_Student_Male,1441.0,, -geoId/sch4800203,2025,Count_Student_Male,867.0,, -geoId/sch4801453,2025,Count_Student_Male,107.0,, -geoId/sch4807380,2025,Count_Student_Male,156.0,, -geoId/sch5500030,2025,Count_Student_Male,407.0,, -geoId/sch0400998,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch1700105,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2700106,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4280010,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch0400998,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1700105,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch2700106,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,2.0,, -geoId/sch4280010,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch1700105,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch2500051,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch2700106,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3500187,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3700372,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3900305,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch3901480,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander,3.0,, -geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4500690,2025,Count_Student_HawaiianNativeOrPacificIslander,1.0,, -geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4801453,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch4807380,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch5500030,2025,Count_Student_HawaiianNativeOrPacificIslander,0.0,, -geoId/sch1700105,2025,Count_Student_PreKindergarten,28.0,, -geoId/sch2700106,2025,Count_Student_PreKindergarten,30.0,, -geoId/sch4500690,2025,Count_Student_PreKindergarten,102.0,, -geoId/sch4800203,2025,Count_Student_PreKindergarten,147.0,, -geoId/sch4807380,2025,Count_Student_PreKindergarten,12.0,, -geoId/sch5500030,2025,Count_Student_PreKindergarten,60.0,, -geoId/sch0400998,2025,Count_Student,370.0,, -geoId/sch1700105,2025,Count_Student,314.0,, -geoId/sch1800046,2025,Count_Student,1180.0,, -geoId/sch2500051,2025,Count_Student,1426.0,, -geoId/sch2700106,2025,Count_Student,893.0,, -geoId/sch3500187,2025,Count_Student,371.0,, -geoId/sch3700372,2025,Count_Student,421.0,, -geoId/sch3900305,2025,Count_Student,247.0,, -geoId/sch3901480,2025,Count_Student,107.0,, -geoId/sch4200091,2025,Count_Student,996.0,, -geoId/sch4280010,2025,Count_Student,7.0,, -geoId/sch4500690,2025,Count_Student,2746.0,, -geoId/sch4800203,2025,Count_Student,1678.0,, -geoId/sch4801453,2025,Count_Student,203.0,, -geoId/sch4807380,2025,Count_Student,284.0,, -geoId/sch5500030,2025,Count_Student,799.0,, -geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces,23.0,, -geoId/sch1700105,2025,Count_Student_TwoOrMoreRaces,10.0,, -geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces,26.0,, -geoId/sch2500051,2025,Count_Student_TwoOrMoreRaces,72.0,, -geoId/sch2700106,2025,Count_Student_TwoOrMoreRaces,31.0,, -geoId/sch3500187,2025,Count_Student_TwoOrMoreRaces,28.0,, -geoId/sch3700372,2025,Count_Student_TwoOrMoreRaces,13.0,, -geoId/sch3900305,2025,Count_Student_TwoOrMoreRaces,16.0,, -geoId/sch3901480,2025,Count_Student_TwoOrMoreRaces,13.0,, -geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces,76.0,, -geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces,2.0,, -geoId/sch4500690,2025,Count_Student_TwoOrMoreRaces,80.0,, -geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces,6.0,, -geoId/sch4801453,2025,Count_Student_TwoOrMoreRaces,10.0,, -geoId/sch4807380,2025,Count_Student_TwoOrMoreRaces,7.0,, -geoId/sch5500030,2025,Count_Student_TwoOrMoreRaces,15.0,, -geoId/sch0400998,2025,Count_Student_Female_White,55.0,, -geoId/sch1700105,2025,Count_Student_Female_White,154.0,, -geoId/sch1800046,2025,Count_Student_Female_White,1.0,, -geoId/sch2500051,2025,Count_Student_Female_White,92.0,, -geoId/sch2700106,2025,Count_Student_Female_White,324.0,, -geoId/sch3500187,2025,Count_Student_Female_White,125.0,, -geoId/sch3700372,2025,Count_Student_Female_White,2.0,, -geoId/sch3900305,2025,Count_Student_Female_White,3.0,, -geoId/sch3901480,2025,Count_Student_Female_White,11.0,, -geoId/sch4200091,2025,Count_Student_Female_White,361.0,, -geoId/sch4280010,2025,Count_Student_Female_White,2.0,, -geoId/sch4500690,2025,Count_Student_Female_White,801.0,, -geoId/sch4800203,2025,Count_Student_Female_White,15.0,, -geoId/sch4801453,2025,Count_Student_Female_White,2.0,, -geoId/sch4807380,2025,Count_Student_Female_White,101.0,, -geoId/sch5500030,2025,Count_Student_Female_White,109.0,, -geoId/sch0400998,2025,Count_Student_Male_White,82.0,, -geoId/sch1700105,2025,Count_Student_Male_White,140.0,, -geoId/sch1800046,2025,Count_Student_Male_White,0.0,, -geoId/sch2500051,2025,Count_Student_Male_White,71.0,, -geoId/sch2700106,2025,Count_Student_Male_White,404.0,, -geoId/sch3500187,2025,Count_Student_Male_White,132.0,, -geoId/sch3700372,2025,Count_Student_Male_White,7.0,, -geoId/sch3900305,2025,Count_Student_Male_White,2.0,, -geoId/sch3901480,2025,Count_Student_Male_White,25.0,, -geoId/sch4200091,2025,Count_Student_Male_White,304.0,, -geoId/sch4280010,2025,Count_Student_Male_White,3.0,, -geoId/sch4500690,2025,Count_Student_Male_White,878.0,, -geoId/sch4800203,2025,Count_Student_Male_White,11.0,, -geoId/sch4801453,2025,Count_Student_Male_White,4.0,, -geoId/sch4807380,2025,Count_Student_Male_White,124.0,, -geoId/sch5500030,2025,Count_Student_Male_White,117.0,, -geoId/sch0400998,2025,Count_Student_White,137.0,, -geoId/sch1700105,2025,Count_Student_White,294.0,, -geoId/sch1800046,2025,Count_Student_White,1.0,, -geoId/sch2500051,2025,Count_Student_White,163.0,, -geoId/sch2700106,2025,Count_Student_White,728.0,, -geoId/sch3500187,2025,Count_Student_White,257.0,, -geoId/sch3700372,2025,Count_Student_White,9.0,, -geoId/sch3900305,2025,Count_Student_White,5.0,, -geoId/sch3901480,2025,Count_Student_White,36.0,, -geoId/sch4200091,2025,Count_Student_White,665.0,, -geoId/sch4280010,2025,Count_Student_White,5.0,, -geoId/sch4500690,2025,Count_Student_White,1679.0,, -geoId/sch4800203,2025,Count_Student_White,26.0,, -geoId/sch4801453,2025,Count_Student_White,6.0,, -geoId/sch4807380,2025,Count_Student_White,225.0,, -geoId/sch5500030,2025,Count_Student_White,226.0,, +geoId/sch4280010,2016,Count_Student_AdultEducation,0.0,, +geoId/sch0400328,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4200091,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4280010,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4800095,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4800203,2016,Count_Student_Female_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400328,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4200091,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4280010,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4800095,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4800203,2016,Count_Student_Male_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400328,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch1800046,2016,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4200091,2016,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4280010,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch4800095,2016,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +geoId/sch4800203,2016,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +geoId/sch0400328,2016,Count_Student_Female_Asian,0.0,, +geoId/sch1800046,2016,Count_Student_Female_Asian,0.0,, +geoId/sch4200091,2016,Count_Student_Female_Asian,3.0,, +geoId/sch4280010,2016,Count_Student_Female_Asian,0.0,, +geoId/sch4800095,2016,Count_Student_Female_Asian,2.0,, +geoId/sch4800203,2016,Count_Student_Female_Asian,0.0,, +geoId/sch0400328,2016,Count_Student_Male_Asian,0.0,, +geoId/sch1800046,2016,Count_Student_Male_Asian,0.0,, +geoId/sch4200091,2016,Count_Student_Male_Asian,7.0,, +geoId/sch4280010,2016,Count_Student_Male_Asian,0.0,, +geoId/sch4800095,2016,Count_Student_Male_Asian,1.0,, +geoId/sch4800203,2016,Count_Student_Male_Asian,1.0,, +geoId/sch0400328,2016,Count_Student_Asian,0.0,, +geoId/sch1800046,2016,Count_Student_Asian,0.0,, +geoId/sch4200091,2016,Count_Student_Asian,10.0,, +geoId/sch4280010,2016,Count_Student_Asian,0.0,, +geoId/sch4800095,2016,Count_Student_Asian,3.0,, +geoId/sch4800203,2016,Count_Student_Asian,1.0,, +geoId/sch0400328,2016,Count_Student_Female_Black,0.0,, +geoId/sch1800046,2016,Count_Student_Female_Black,357.0,, +geoId/sch4200091,2016,Count_Student_Female_Black,38.0,, +geoId/sch4280010,2016,Count_Student_Female_Black,0.0,, +geoId/sch4800095,2016,Count_Student_Female_Black,1124.0,, +geoId/sch4800203,2016,Count_Student_Female_Black,13.0,, +geoId/sch0400328,2016,Count_Student_Male_Black,0.0,, +geoId/sch1800046,2016,Count_Student_Male_Black,377.0,, +geoId/sch4200091,2016,Count_Student_Male_Black,25.0,, +geoId/sch4280010,2016,Count_Student_Male_Black,0.0,, +geoId/sch4800095,2016,Count_Student_Male_Black,952.0,, +geoId/sch4800203,2016,Count_Student_Male_Black,17.0,, +geoId/sch0400328,2016,Count_Student_Black,0.0,, +geoId/sch1800046,2016,Count_Student_Black,734.0,, +geoId/sch4200091,2016,Count_Student_Black,63.0,, +geoId/sch4280010,2016,Count_Student_Black,0.0,, +geoId/sch4800095,2016,Count_Student_Black,2076.0,, +geoId/sch4800203,2016,Count_Student_Black,30.0,, +geoId/sch0400328,2016,Count_Student_Female,38.0,, +geoId/sch1800046,2016,Count_Student_Female,366.0,, +geoId/sch4200091,2016,Count_Student_Female,495.0,, +geoId/sch4280010,2016,Count_Student_Female,0.0,, +geoId/sch4800095,2016,Count_Student_Female,1180.0,, +geoId/sch4800203,2016,Count_Student_Female,489.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade1,13.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade1,55.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade1,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade1,251.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade1,63.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade10,59.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade10,155.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade10,0.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade10,72.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade11,48.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade11,149.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade11,0.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade11,71.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade12,37.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade12,124.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade12,0.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade12,70.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade13,0.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade2,8.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade2,67.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade2,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade2,242.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade2,64.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade3,11.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade3,63.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade3,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade3,222.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade3,65.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade4,7.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade4,57.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade4,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade4,150.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade4,73.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade5,6.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade5,56.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade5,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade5,151.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade5,71.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade6,5.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade6,60.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade6,34.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade6,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade6,140.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade6,72.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade7,6.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade7,66.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade7,87.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade7,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade7,121.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade7,72.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade8,4.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade8,63.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade8,110.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade8,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade8,113.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade8,72.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade9,64.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade9,159.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade9,0.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade9,71.0,, +geoId/sch0400328,2016,Count_Student_SchoolGrade1To8,60.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade1To8,487.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade1To8,231.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade1To8,0.0,, +geoId/sch4800095,2016,Count_Student_SchoolGrade1To8,1390.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade1To8,552.0,, +geoId/sch1800046,2016,Count_Student_SchoolGrade9To12,208.0,, +geoId/sch4200091,2016,Count_Student_SchoolGrade9To12,587.0,, +geoId/sch4280010,2016,Count_Student_SchoolGrade9To12,0.0,, +geoId/sch4800203,2016,Count_Student_SchoolGrade9To12,284.0,, +geoId/sch0400328,2016,Count_Student_Female_HispanicOrLatino,8.0,, +geoId/sch1800046,2016,Count_Student_Female_HispanicOrLatino,6.0,, +geoId/sch4200091,2016,Count_Student_Female_HispanicOrLatino,35.0,, +geoId/sch4280010,2016,Count_Student_Female_HispanicOrLatino,0.0,, +geoId/sch4800095,2016,Count_Student_Female_HispanicOrLatino,42.0,, +geoId/sch4800203,2016,Count_Student_Female_HispanicOrLatino,447.0,, +geoId/sch0400328,2016,Count_Student_Male_HispanicOrLatino,3.0,, +geoId/sch1800046,2016,Count_Student_Male_HispanicOrLatino,9.0,, +geoId/sch4200091,2016,Count_Student_Male_HispanicOrLatino,14.0,, +geoId/sch4280010,2016,Count_Student_Male_HispanicOrLatino,0.0,, +geoId/sch4800095,2016,Count_Student_Male_HispanicOrLatino,21.0,, +geoId/sch4800203,2016,Count_Student_Male_HispanicOrLatino,416.0,, +geoId/sch0400328,2016,Count_Student_HispanicOrLatino,11.0,, +geoId/sch1800046,2016,Count_Student_HispanicOrLatino,15.0,, +geoId/sch4200091,2016,Count_Student_HispanicOrLatino,49.0,, +geoId/sch4280010,2016,Count_Student_HispanicOrLatino,0.0,, +geoId/sch4800095,2016,Count_Student_HispanicOrLatino,63.0,, +geoId/sch4800203,2016,Count_Student_HispanicOrLatino,863.0,, +geoId/sch0400328,2016,Count_Student_Kindergarten,10.0,, +geoId/sch1800046,2016,Count_Student_Kindergarten,63.0,, +geoId/sch4280010,2016,Count_Student_Kindergarten,0.0,, +geoId/sch4800095,2016,Count_Student_Kindergarten,233.0,, +geoId/sch4800203,2016,Count_Student_Kindergarten,63.0,, +geoId/sch0400328,2016,Count_Student_Male,32.0,, +geoId/sch1800046,2016,Count_Student_Male,392.0,, +geoId/sch4200091,2016,Count_Student_Male,323.0,, +geoId/sch4280010,2016,Count_Student_Male,0.0,, +geoId/sch4800095,2016,Count_Student_Male,981.0,, +geoId/sch4800203,2016,Count_Student_Male,451.0,, +geoId/sch0400328,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4280010,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4800095,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,4.0,, +geoId/sch4800203,2016,Count_Student_Female_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400328,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,1.0,, +geoId/sch4280010,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4800095,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,2.0,, +geoId/sch4800203,2016,Count_Student_Male_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch0400328,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch1800046,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4200091,2016,Count_Student_HawaiianNativeOrPacificIslander,2.0,, +geoId/sch4280010,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4800095,2016,Count_Student_HawaiianNativeOrPacificIslander,6.0,, +geoId/sch4800203,2016,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +geoId/sch4280010,2016,Count_Student_PreKindergarten,0.0,, +geoId/sch4800095,2016,Count_Student_PreKindergarten,538.0,, +geoId/sch4800203,2016,Count_Student_PreKindergarten,41.0,, +geoId/sch0400328,2016,Count_Student,70.0,, +geoId/sch1800046,2016,Count_Student,758.0,, +geoId/sch4200091,2016,Count_Student,818.0,, +geoId/sch4280010,2016,Count_Student,0.0,, +geoId/sch4800095,2016,Count_Student,2161.0,, +geoId/sch4800203,2016,Count_Student,940.0,, +geoId/sch0400328,2016,Count_Student_TwoOrMoreRaces,9.0,, +geoId/sch1800046,2016,Count_Student_TwoOrMoreRaces,8.0,, +geoId/sch4200091,2016,Count_Student_TwoOrMoreRaces,23.0,, +geoId/sch4280010,2016,Count_Student_TwoOrMoreRaces,0.0,, +geoId/sch4800095,2016,Count_Student_TwoOrMoreRaces,4.0,, +geoId/sch4800203,2016,Count_Student_TwoOrMoreRaces,15.0,, +geoId/sch0400328,2016,Count_Student_UngradedClasses,0.0,, +geoId/sch4280010,2016,Count_Student_UngradedClasses,0.0,, +geoId/sch0400328,2016,Count_Student_Female_White,26.0,, +geoId/sch1800046,2016,Count_Student_Female_White,0.0,, +geoId/sch4200091,2016,Count_Student_Female_White,408.0,, +geoId/sch4280010,2016,Count_Student_Female_White,0.0,, +geoId/sch4800095,2016,Count_Student_Female_White,7.0,, +geoId/sch4800203,2016,Count_Student_Female_White,16.0,, +geoId/sch0400328,2016,Count_Student_Male_White,24.0,, +geoId/sch1800046,2016,Count_Student_Male_White,0.0,, +geoId/sch4200091,2016,Count_Student_Male_White,262.0,, +geoId/sch4280010,2016,Count_Student_Male_White,0.0,, +geoId/sch4800095,2016,Count_Student_Male_White,1.0,, +geoId/sch4800203,2016,Count_Student_Male_White,15.0,, +geoId/sch0400328,2016,Count_Student_White,50.0,, +geoId/sch1800046,2016,Count_Student_White,0.0,, +geoId/sch4200091,2016,Count_Student_White,670.0,, +geoId/sch4280010,2016,Count_Student_White,0.0,, +geoId/sch4800095,2016,Count_Student_White,8.0,, +geoId/sch4800203,2016,Count_Student_White,31.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,1.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,3.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,4.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,16.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,1.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade10,0.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,1.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade11,4.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade11,1.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade11,8.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade11,84.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade11,30.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade11,3.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade11,35.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade11,3.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade11,24.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade11,106.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,1.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,2.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,15.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,1.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade11,29.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade11,0.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade11,171.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade11,3.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade11,0.0,, +geoId/sch0400998,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,1.0,, +geoId/sch1800046,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4280010,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_Asian_SchoolGrade12,6.0,, +geoId/sch4280010,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_Asian_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_Black_SchoolGrade12,3.0,, +geoId/sch1800046,2025,Count_Student_Black_SchoolGrade12,78.0,, +geoId/sch4200091,2025,Count_Student_Black_SchoolGrade12,31.0,, +geoId/sch4280010,2025,Count_Student_Black_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_Black_SchoolGrade12,4.0,, +geoId/sch0400998,2025,Count_Student_HispanicOrLatino_SchoolGrade12,19.0,, +geoId/sch1800046,2025,Count_Student_HispanicOrLatino_SchoolGrade12,6.0,, +geoId/sch4200091,2025,Count_Student_HispanicOrLatino_SchoolGrade12,13.0,, +geoId/sch4280010,2025,Count_Student_HispanicOrLatino_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_HispanicOrLatino_SchoolGrade12,106.0,, +geoId/sch0400998,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch1800046,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4200091,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4280010,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,1.0,, +geoId/sch1800046,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,2.0,, +geoId/sch4200091,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,16.0,, +geoId/sch4280010,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch4800203,2025,Count_Student_TwoOrMoreRaces_SchoolGrade12,0.0,, +geoId/sch0400998,2025,Count_Student_White_SchoolGrade12,17.0,, +geoId/sch1800046,2025,Count_Student_White_SchoolGrade12,1.0,, +geoId/sch4200091,2025,Count_Student_White_SchoolGrade12,140.0,, +geoId/sch4280010,2025,Count_Student_White_SchoolGrade12,1.0,, +geoId/sch4800203,2025,Count_Student_White_SchoolGrade12,3.0,, +geoId/sch1800046,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Female_Asian_Kindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_Kindergarten,1.0,, +geoId/sch1800046,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch3900305,2025,Count_Student_Male_Asian_Kindergarten,2.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Female_Black_Kindergarten,49.0,, +geoId/sch3900305,2025,Count_Student_Female_Black_Kindergarten,15.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_Kindergarten,0.0,, +geoId/sch1800046,2025,Count_Student_Male_Black_Kindergarten,52.0,, +geoId/sch3900305,2025,Count_Student_Male_Black_Kindergarten,11.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_Kindergarten,3.0,, +geoId/sch1800046,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,2.0,, +geoId/sch3900305,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,5.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_Kindergarten,48.0,, +geoId/sch1800046,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,3.0,, +geoId/sch3900305,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_Kindergarten,40.0,, +geoId/sch4800203,2025,Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Asian_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_Asian_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_Black_PreKindergarten,10.0,, +geoId/sch4800203,2025,Count_Student_Male_Black_PreKindergarten,2.0,, +geoId/sch4800203,2025,Count_Student_Female_HispanicOrLatino_PreKindergarten,69.0,, +geoId/sch4800203,2025,Count_Student_Male_HispanicOrLatino_PreKindergarten,63.0,, +geoId/sch4800203,2025,Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Male_TwoOrMoreRaces_PreKindergarten,0.0,, +geoId/sch4800203,2025,Count_Student_Female_White_PreKindergarten,1.0,, +geoId/sch4800203,2025,Count_Student_Male_White_PreKindergarten,2.0,, From eed877d7254d206948c1be2aa3e553d8dda8668a Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 2 Sep 2026 09:24:48 +0000 Subject: [PATCH 12/17] Update provenance_url to https://nces.ed.gov/ in public_school and school_district manifests --- scripts/us_nces/demographics/public_school/manifest.json | 2 +- scripts/us_nces/demographics/school_district/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/us_nces/demographics/public_school/manifest.json b/scripts/us_nces/demographics/public_school/manifest.json index 584cee615f..f0e1e6cb89 100644 --- a/scripts/us_nces/demographics/public_school/manifest.json +++ b/scripts/us_nces/demographics/public_school/manifest.json @@ -5,7 +5,7 @@ "curator_emails": [ "support@datacommons.org" ], - "provenance_url": "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx", + "provenance_url": "https://nces.ed.gov/", "provenance_description": "US nces school data for public", "scripts": [ "run.sh", diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index 22c6ba7d87..28b00f85eb 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -5,7 +5,7 @@ "curator_emails": [ "support@datacommons.org" ], - "provenance_url": "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx", + "provenance_url": "https://nces.ed.gov/", "provenance_description": "US nces school data for district", "scripts": [ "run.sh", From 670cce9a24ebacb062b0cf7cfb73ec8705d26506 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 7 Sep 2026 03:18:22 +0000 Subject: [PATCH 13/17] updated files as per review comments --- .../us_nces/common/replacement_functions.py | 1 + scripts/us_nces/common/us_education.py | 109 ++++++++++-------- .../demographics/public_school/manifest.json | 2 +- .../public_school/process_test.py | 12 +- .../us_nces_demographics_public_place.csv | 14 +-- .../school_district/manifest.json | 2 +- .../school_district/process_test.py | 12 +- .../us_nces_demographics_district_place.csv | 10 +- 8 files changed, 91 insertions(+), 71 deletions(-) diff --git a/scripts/us_nces/common/replacement_functions.py b/scripts/us_nces/common/replacement_functions.py index c3413b1ba4..bf687a7c4c 100644 --- a/scripts/us_nces/common/replacement_functions.py +++ b/scripts/us_nces/common/replacement_functions.py @@ -501,6 +501,7 @@ def replace_values(data_df: pd.DataFrame, "Agency_Name": _NAN, "School_Level_17": _SCHOOL_LEVEL, "School_Level_16": _SCHOOL_LEVEL, + "School_Level": _SCHOOL_LEVEL, "State_Agency_ID": _NAN, "State_School_ID": _NAN, "State_Name": _STATE_NAME diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index 8a30c08c48..b9fd94b385 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -68,6 +68,22 @@ def wrapper(*args, **kwargs): return wrapper +def _format_fips_code(val, length: int) -> str: + """Safely formats and zero-pads a FIPS/state/county code string. + + Handles float NaNs, None, 'nan'/'None' strings, float representations + (e.g., '4.0'), and missing values cleanly. + """ + if pd.isna(val): + return '' + s = str(val).strip() + if not s or s in ('nan', 'None'): + return '' + if s.endswith('.0'): + s = s[:-2] + return s.zfill(length) + + class USEducation: """ USEducation is a base class which provides common implementation for @@ -478,10 +494,7 @@ def _transform_public_place(self): # Renaming Column Names self._final_df_place = self._final_df_place.rename( columns=self._renaming_columns) - # Renaming the property values according to DataCommons. - self._final_df_place = replace_values(self._final_df_place, - replace_with_all_mappers=False, - regex_flag=False) + # Files before the year 2017 and files 2017 onwards have different # column name for the same entity'School_Level'. Hence, combining both # columns under one common column. @@ -495,14 +508,28 @@ def _transform_public_place(self): if col_post_2017 not in self._final_df_place.columns: self._final_df_place[col_post_2017] = np.nan - # Use .combine_first() to merge the two columns intelligently. + # Use fillna to merge the two columns intelligently before deduplication. self._final_df_place[final_col] = self._final_df_place[ - col_post_2017].combine_first(self._final_df_place[col_pre_2017]) + col_post_2017].fillna(self._final_df_place[col_pre_2017]) # Clean up the old columns self._final_df_place.drop(columns=[col_pre_2017, col_post_2017], inplace=True) + # Ensure empty strings or whitespace entries are treated as NaN so that + # groupby().first() accurately skips nulls and coalesces attributes + # across disjoint files/years without empty-string shadowing. + self._final_df_place.replace(r'^\s*$', np.nan, regex=True, inplace=True) + self._final_df_place = (self._final_df_place.sort_values( + by=["year"], ascending=False).groupby("school_state_code", + as_index=False, + sort=False).first()) + + # Renaming the property values according to DataCommons. + self._final_df_place = replace_values(self._final_df_place, + replace_with_all_mappers=False, + regex_flag=False) + # Restructuring School District ID according to Data Commons. self._final_df_place["State_District_ID"] = \ "geoId/sch" + self._final_df_place["State_District_ID"].astype(str) @@ -521,29 +548,20 @@ def _transform_public_place(self): self._final_df_place[col] = "dcs:" + self._final_df_place[col] # --- FIX 1: Early String Cleanup (Prevents "nan" strings) --- - self._final_df_place['ZIP'] = 'zip/' + self._final_df_place['ZIP'] - - # Convert to string, but immediately replace "nan" or "None" text with empty string - self._final_df_place['County_code'] = self._final_df_place[ - 'County_code'].astype(str).replace({ - 'nan': '', - 'None': '' - }) - self._final_df_place['State_code'] = self._final_df_place[ - 'State_code'].astype(str).replace({ - 'nan': '', - 'None': '' - }) + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].apply( + lambda x: _format_fips_code(x, 5)) + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].apply( + lambda x: 'zip/' + x if x != '' else '') - # --- FIX 2: Zero Padding (Fixes geoId/4 -> geoId/04) --- + # Clean and zero-pad State_code and County_code safely handling float NaNs/missing values self._final_df_place['State_code'] = self._final_df_place[ - 'State_code'].apply(lambda x: x.zfill(2) if x.strip() else '') + 'State_code'].apply(lambda x: _format_fips_code(x, 2)) self._final_df_place['County_code'] = self._final_df_place[ - 'County_code'].apply(lambda x: x.zfill(5) if x.strip() else '') + 'County_code'].apply(lambda x: _format_fips_code(x, 5)) # In some cases The state code is not valid or is not a state (59, 63). self._final_df_place["State_code"] = np.where( - self._final_df_place["State_code"].str.contains("59|63"), + self._final_df_place["State_code"].str.contains("59|63", na=False), (self._final_df_place['County_code'].str[:2]), (self._final_df_place["State_code"])) @@ -665,12 +683,6 @@ def _transform_public_place(self): self._final_df_place["Public_School_Name"].astype(str).apply( lambda x: x.title())) - # Sorting and merging non-null place columns - self._final_df_place = (self._final_df_place.sort_values( - by=["year"], ascending=False).groupby("school_state_code", - as_index=False, - sort=False).first()) - @log_method_execution def _transform_district_place(self): """ @@ -684,36 +696,35 @@ def _transform_district_place(self): self._final_df_place = self._final_df_place.rename( columns=self._renaming_columns) + # Ensure empty strings or whitespace entries are treated as NaN so that + # groupby().first() accurately skips nulls and coalesces attributes + # across disjoint files/years without empty-string shadowing. + self._final_df_place.replace(r'^\s*$', np.nan, regex=True, inplace=True) + self._final_df_place = (self._final_df_place.sort_values( + by=["year"], ascending=False).groupby("school_state_code", + as_index=False, + sort=False).first()) + # Renaming the property values according to DataCommons. self._final_df_place = replace_values(self._final_df_place, replace_with_all_mappers=False, regex_flag=False) # --- FIX 1: Robust String Cleaning & Padding --- - # Convert to string but immediately replace 'nan' artifacts with empty strings - self._final_df_place['County_code'] = self._final_df_place[ - 'County_code'].astype(str).replace({ - 'nan': '', - 'None': '' - }) + # Clean and zero-pad State_code and County_code safely handling float NaNs/missing values self._final_df_place['State_code'] = self._final_df_place[ - 'State_code'].astype(str).replace({ - 'nan': '', - 'None': '' - }) - - # Pad with zeros to ensure valid FIPS (e.g., '4' -> '04') - self._final_df_place['State_code'] = self._final_df_place[ - 'State_code'].apply(lambda x: x.zfill(2) if x.strip() else '') + 'State_code'].apply(lambda x: _format_fips_code(x, 2)) self._final_df_place['County_code'] = self._final_df_place[ - 'County_code'].apply(lambda x: x.zfill(5) if x.strip() else '') + 'County_code'].apply(lambda x: _format_fips_code(x, 5)) + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].apply( + lambda x: _format_fips_code(x, 5)) # In some cases The state code is not valid or is not a state. # For example: state_code:59, 63 # In such cases, the state code is replaced with first 2 characters of # its respective county code self._final_df_place["State_code"] = np.where( - self._final_df_place["State_code"].str.contains("59|63"), + self._final_df_place["State_code"].str.contains("59|63", na=False), (self._final_df_place['County_code'].str[:2]), (self._final_df_place["State_code"])) @@ -814,11 +825,6 @@ def _transform_district_place(self): to_replace={'': pd.NA}) self._final_df_place[col] = "dcs:" + self._final_df_place[col] - self._final_df_place = (self._final_df_place.sort_values( - by=["year"], ascending=False).groupby("school_state_code", - as_index=False, - sort=False).first()) - @log_method_execution def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: ''' @@ -928,7 +934,8 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: ]: df_place.loc[:, 'year'] = self._year[0:4].strip() df_place = df_place.loc[:, ~df_place.columns.duplicated()] - self._final_df_place = pd.concat([self._final_df_place, df_place]) + self._final_df_place = pd.concat([self._final_df_place, df_place], + ignore_index=True) if not self._generate_statvars: return df_cleaned[data_cols] diff --git a/scripts/us_nces/demographics/public_school/manifest.json b/scripts/us_nces/demographics/public_school/manifest.json index f0e1e6cb89..2895ceee1f 100644 --- a/scripts/us_nces/demographics/public_school/manifest.json +++ b/scripts/us_nces/demographics/public_school/manifest.json @@ -18,7 +18,7 @@ { "template_mcf": "gcs_folder/output_files/us_nces_demographics_public_school.tmcf", "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_public_school.csv", - "node_mcf": "gcs_folder/output_files/us_nces_demographics_public_school.mcf" + "node_mcf": "gcs_folder/output_files/*.mcf" }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_public_place.tmcf", diff --git a/scripts/us_nces/demographics/public_school/process_test.py b/scripts/us_nces/demographics/public_school/process_test.py index 815c8cced3..1f328dc208 100644 --- a/scripts/us_nces/demographics/public_school/process_test.py +++ b/scripts/us_nces/demographics/public_school/process_test.py @@ -14,6 +14,7 @@ import os import unittest +from unittest.mock import patch import sys import tempfile # module_dir is the path to where this test is running from. @@ -62,9 +63,14 @@ def __init__(self, methodName: str = ...) -> None: csv_path_place, dup_csv_path_place, tmcf_path_place) - loader.generate_csv() - loader.generate_mcf() - loader.generate_tmcf() + with patch( + "common.us_education.dc_api_is_defined_dcid", + side_effect=lambda nodes, *args, **kwargs: + {n: True for n in nodes}, + ): + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() with open(cleaned_csv_file_path, encoding="utf-8-sig") as csv_file: self.actual_csv_data = csv_file.read() diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv index 8904364acc..b3a62e763d 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv @@ -1,12 +1,12 @@ "school_state_code","County_code","Public_School_Name","School_Id","School_Type_Public","Charter_School","Magnet_School","Title_I_School_Status","State_School_ID","National_School_Lunch_Program","Lowest_Grade_Public","Highest_Grade_Public","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","ZIP","Location_ZIP4","Agency_Name","State_District_ID","year","School_Level","Validated_State_Abbr","ContainedInPlace","School_Management" "nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" -"nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA ","Marlborough","","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","geoId/25017,geoId/25","" -"nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" -"nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" -"nces/270819004622","geoId/27019","112 Alc Middle School","270819004622","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:MiddleSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA 01752","Marlborough","01752","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","zip/01752,geoId/25017,geoId/25","" +"nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" +"nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusNotEligible","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" +"nces/270819004622","geoId/27019","112 Alc Middle School","270819004622","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusNotEligible","MN-010112-010112066","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade8","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:MiddleSchool","MN","zip/55318,geoId/27019,geoId/27","" "nces/270819005118","geoId/27019","112 Alc Seat-Based","270819005118","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MN-010112-010112071","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade6","dcs:SchoolGrade12","9525566192","MINNESOTA","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" "nces/120144008672","geoId/12095","126-E-W-4","120144008672","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","FL-48-1025","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173200","FLORIDA","FL","geoId/12","28.36828","-81.633579","dcs:NCES_RuralFringe","445 W Amelia St Orlando FL 32801","ORLANDO","32801","","ORANGE","dcs:geoId/sch1201440","2024","dcs:NCES_SchoolLevelDataMissing","FL","zip/32801,geoId/12095,geoId/12","" -"nces/262895007802","geoId/26077","12Th Street Elementary","262895007802","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","MI-39140-09848","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","2693236900","Michigan","MI","geoId/26","42.2202","-85.646452","dcs:NCES_CitySmall","6501 S 12Th St Portage MI 49024-1705","PORTAGE","49024","1705","Portage Public Schools","dcs:geoId/sch2628950","2024","dcs:ElementarySchool","MI","zip/49024,geoId/26077,geoId/26","" -"nces/320006000670","geoId/32003","100 Academy Of Engineering And Technology Es","320006000670","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02093","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","7026362551","Nevada","NV","geoId/32","36.200008","-115.164596","dcs:NCES_CityLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","","NV","zip/89032,geoId/32003,geoId/32","" -"nces/320006000756","geoId/32003","100 Academy Of Engineering And Technology Ms","320006000756","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02364","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","7026362551","Nevada","NV","geoId/32","36.20149","-115.166081","dcs:NCES_SuburbLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","","NV","zip/89032,geoId/32003,geoId/32","" +"nces/262895007802","geoId/26077","12Th Street Elementary","262895007802","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusNotEligible","MI-39140-09848","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","2693236900","Michigan","MI","geoId/26","42.2202","-85.646452","dcs:NCES_CitySmall","6501 S 12Th St Portage MI 49024-1705","PORTAGE","49024","1705","Portage Public Schools","dcs:geoId/sch2628950","2024","dcs:ElementarySchool","MI","zip/49024,geoId/26077,geoId/26","" +"nces/320006000670","geoId/32003","100 Academy Of Engineering And Technology Es","320006000670","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02093","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:PreKindergarten","dcs:SchoolGrade5","7026362551","Nevada","NV","geoId/32","36.200008","-115.164596","dcs:NCES_CityLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","dcs:PrimarySchool","NV","zip/89032,geoId/32003,geoId/32","" +"nces/320006000756","geoId/32003","100 Academy Of Engineering And Technology Ms","320006000756","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterYes","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","02-02364","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","7026362551","Nevada","NV","geoId/32","36.20149","-115.166081","dcs:NCES_SuburbLarge","2341 Comstock Dr. North Las Vegas NV 89032","NORTH LAS VEGAS","89032","","CLARK COUNTY SCHOOL DISTRICT","dcs:geoId/sch3200060","2015","dcs:MiddleSchool","NV","zip/89032,geoId/32003,geoId/32","" "nces/120144008289","geoId/12095","133-K8-N-6","120144008289","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","48-1851","dcs:NCES_MagnetDataMissing","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","4073173209","Florida","FL","geoId/12","28.565644","-81.347048","dcs:NCES_CityLarge","445 W Amelia St Orlando FL 32801-1129","ORLANDO","32801","1129","ORANGE","dcs:geoId/sch1201440","2015","","FL","zip/32801,geoId/12095,geoId/12","" diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index 28b00f85eb..f0632fecd9 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -18,7 +18,7 @@ { "template_mcf": "gcs_folder/output_files/us_nces_demographics_district_school.tmcf", "cleaned_csv": "gcs_folder/output_files/us_nces_demographics_district_school.csv", - "node_mcf": "gcs_folder/output_files/us_nces_demographics_district_school.mcf" + "node_mcf": "gcs_folder/output_files/*.mcf" }, { "template_mcf": "gcs_folder/output_place/us_nces_demographics_district_place.tmcf", diff --git a/scripts/us_nces/demographics/school_district/process_test.py b/scripts/us_nces/demographics/school_district/process_test.py index 05fc54adb5..f9f7cb4f0c 100644 --- a/scripts/us_nces/demographics/school_district/process_test.py +++ b/scripts/us_nces/demographics/school_district/process_test.py @@ -14,6 +14,7 @@ import os import unittest +from unittest.mock import patch import sys import tempfile # module_dir is the path to where this test is running from. @@ -62,9 +63,14 @@ def __init__(self, methodName: str = ...) -> None: csv_path_place, dup_csv_path_place, tmcf_path_place) - loader.generate_csv() - loader.generate_mcf() - loader.generate_tmcf() + with patch( + "common.us_education.dc_api_is_defined_dcid", + side_effect=lambda nodes, *args, **kwargs: + {n: True for n in nodes}, + ): + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() with open(mcf_file_path, encoding="UTF-8") as mcf_file: self.actual_mcf_data = mcf_file.read() diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv index 6d31de67ed..ac7ecbbf83 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_place.csv @@ -1,10 +1,10 @@ "school_state_code","ZIP","Location_ZIP4","County_code","District_School_name","School_ID","State_school_ID","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","Lowest_Grade_Dist","Highest_Grade_Dist","year","geoID","ContainedInPlace","Validated_State_Abbr","School_Management" -"geoId/sch1800046","","","","21St Century Charter Sch Of Gary","1800046","","","Indiana","IN","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1800046","dcs:geoId/18","","" -"geoId/sch4200091","","","","21St Century Cyber Cs","4200091","","","Pennsylvania","PA","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4200091","dcs:geoId/42","","" +"geoId/sch1800046","46402","","geoId/18089","21St Century Charter Sch Of Gary","1800046","9545","3175361027","Indiana","IN","geoId/18","41.60096","-87.3389","dcs:NCES_CitySmall","556 Washington St Gary IN 46402","GARY","dcs:Kindergarten","dcs:SchoolGrade12","2024","sch1800046","dcs:geoId/18","IN","" +"geoId/sch4200091","19335","","geoId/42029","21St Century Cyber Cs","4200091","124150002","4848755400","Pennsylvania","PA","geoId/42","40.0108","-75.704371","dcs:NCES_SuburbLarge","126 Wallace Ave. Downingtown PA 19335","DOWNINGTOWN","dcs:SchoolGrade6","dcs:SchoolGrade12","2024","sch4200091","dcs:geoId/42","PA","" "geoId/sch3500187","","","","21St Century Public Academy","3500187","","","NEW MEXICO","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch3500187","","","" -"geoId/sch1700024","","","","A E R O Spec Educ Coop","1700024","","","Illinois","IL","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","","" -"geoId/sch4280010","","","","A W Beattie Career Center","4280010","","","Pennsylvania","PA","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4280010","dcs:geoId/42","","" -"geoId/sch4800203","","","","A+ Academy","4800203","","","Texas","TX","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch4800203","dcs:geoId/48","","" +"geoId/sch1700024","60459","1200","geoId/17031","A E R O Spec Educ Coop","1700024","07-016-8060-60","7084963330","Illinois","IL","geoId/17","41.752701","-87.769897","dcs:NCES_SuburbLarge","7600 Mason Ave Burbank IL 60459-1200","BURBANK","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch1700024","dcs:geoId/17","IL","" +"geoId/sch4280010","15101","2005","geoId/42003","A W Beattie Career Center","4280010","103020407","4128471900","Pennsylvania","PA","geoId/42","40.579057","-80.006042","dcs:NCES_SuburbLarge","9600 Babcock Boulevard Allison Park PA 15101-2005","ALLISON PARK","dcs:SchoolGrade9","dcs:SchoolGrade12","2024","sch4280010","dcs:geoId/42","PA","" +"geoId/sch4800203","75217","","geoId/48113","A+ Academy","4800203","057829","2143813226","Texas","TX","geoId/48","32.7488","-96.6748","dcs:NCES_CityLarge","8225 Bruton Rd Dallas TX 75217","DALLAS","dcs:PreKindergarten","dcs:SchoolGrade12","2024","sch4800203","dcs:geoId/48","TX","" "geoId/sch3900305","","","","A+ Arts Academy","3900305","","","Ohio","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch3900305","","","" "geoId/sch0400998","","","","A+ Charter Schools (1000166)","0400998","","","ARIZONA","","","","","dcs:NCES_LocaleDataMissing"," ","","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2024","sch0400998","","","" "geoId/sch4000760","74525","1231","geoId/40005","(Ilc) Atoka-Coal Counties","4000760","03-K002","5808892664","Oklahoma","OK","geoId/40","34.31851","-96.164555","dcs:NCES_RuralRemote","201 Se First St Tushka OK 74525-1231","TUSHKA","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","2015","sch4000760","dcs:geoId/40","OK","" From 9111c510823e6a7734791193d8ff9434e015dd08 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Mon, 7 Sep 2026 10:26:51 +0000 Subject: [PATCH 14/17] Fix district ID padding and address review comments --- scripts/us_nces/common/prop_conf.py | 7 ++++++- scripts/us_nces/common/us_education.py | 6 ++++-- scripts/us_nces/demographics/public_school/manifest.json | 2 +- .../sample_output/us_nces_demographics_public_place.csv | 2 +- scripts/us_nces/demographics/school_district/manifest.json | 2 +- .../us_nces/demographics/school_district/process_test.py | 2 +- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py index 4326f04a2a..76bc65e998 100644 --- a/scripts/us_nces/common/prop_conf.py +++ b/scripts/us_nces/common/prop_conf.py @@ -18,6 +18,8 @@ While preprocessing files column names are changed to SV names as used in DC import """ +import pandas as pd + # TMCF template for Demographics data. It changes based on import name. TMCF_TEMPLATE = ( "Node: E:us_nces_demographics_{import_name}->E0\n" @@ -135,7 +137,10 @@ def _PV_FORMAT(pv): """Formats property-value pairs for MCF nodes; modified based on column.""" t = tuple(pv) - return f'"{t[0]}": "dcs:{t[1]}"' if 'None' not in str(t[1]) else "" + val = str(t[1]).strip() if not pd.isna(t[1]) else "" + if not val or val in ('None', 'nan', ''): + return "" + return f'"{t[0]}": "dcs:{val}"' # pylint:disable=unnecessary-lambda-assignment diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index b9fd94b385..0f9eb28f2f 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -531,8 +531,10 @@ def _transform_public_place(self): regex_flag=False) # Restructuring School District ID according to Data Commons. - self._final_df_place["State_District_ID"] = \ - "geoId/sch" + self._final_df_place["State_District_ID"].astype(str) + self._final_df_place["State_District_ID"] = ( + self._final_df_place["State_District_ID"].apply( + lambda x: "geoId/sch" + _format_fips_code(x, 7) + if _format_fips_code(x, 7) else "")) # List of columns to be considered under 'dcs' col_to_dcs = [ diff --git a/scripts/us_nces/demographics/public_school/manifest.json b/scripts/us_nces/demographics/public_school/manifest.json index 2895ceee1f..7749c9c286 100644 --- a/scripts/us_nces/demographics/public_school/manifest.json +++ b/scripts/us_nces/demographics/public_school/manifest.json @@ -5,7 +5,7 @@ "curator_emails": [ "support@datacommons.org" ], - "provenance_url": "https://nces.ed.gov/", + "provenance_url": "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx", "provenance_description": "US nces school data for public", "scripts": [ "run.sh", diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv index b3a62e763d..a047ebc050 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_place.csv @@ -1,5 +1,5 @@ "school_state_code","County_code","Public_School_Name","School_Id","School_Type_Public","Charter_School","Magnet_School","Title_I_School_Status","State_School_ID","National_School_Lunch_Program","Lowest_Grade_Public","Highest_Grade_Public","PhoneNumber","State_Name","State_Abbr","State_code","Latitude","Longitude","Locale","Physical_Address","City","ZIP","Location_ZIP4","Agency_Name","State_District_ID","year","School_Level","Validated_State_Abbr","ContainedInPlace","School_Management" -"nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" +"nces/061077001195","geoId/06015","'O Me-Nok Learning Center","061077001195","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusDataMissing","CA-0861820-6005417","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:Kindergarten","dcs:SchoolGrade6","7074640340","California","CA","geoId/06","41.5561","-124.0528","dcs:NCES_RuralRemote","300 Minot Creek Rd. Klamath CA 95548-0065","Klamath","95548","0065","Del Norte County Unified","dcs:geoId/sch0610770","2024","dcs:ElementarySchool","CA","zip/95548,geoId/06015,geoId/06","" "nces/250732002639","geoId/25017","1 Lt Charles W. Whitcomb School","250732002639","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","MA-0170-01700045","dcs:NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","5084603502","Massachusetts","MA","geoId/25","42.357383","-71.548459","dcs:NCES_SuburbLarge","25 Union Street Marlborough MA 01752","Marlborough","01752","","Marlborough","dcs:geoId/sch2507320","2024","dcs:MiddleSchool","MA","zip/01752,geoId/25017,geoId/25","" "nces/530486002475","geoId/53061","10Th Street School","530486002475","NCES_PublicSchoolTypeRegular","dcs:NCES_CharterNo","dcs:NCES_MagnetDataMissing","dcs:NCES_TitleISchoolStatusSWPAndTASProgram","WA-31025-1656","dcs:NCES_NationalSchoolLunchProgramYesUnderCEO","dcs:SchoolGrade6","dcs:SchoolGrade8","3609650400","Washington","WA","geoId/53","48.061145","-122.199808","dcs:NCES_SuburbMidsize","7204 27Th Ave Ne Marysville WA 98271","Marysville","98271","","Marysville School District","dcs:geoId/sch5304860","2024","dcs:MiddleSchool","WA","zip/98271,geoId/53061,geoId/53","" "nces/270819004415","geoId/27019","112 Alc Independent Study","270819004415","4-Alternative Education School","dcs:NCES_CharterNo","dcs:NCES_MagnetNo","dcs:NCES_TitleISchoolStatusNotEligible","MN-010112-010112067","dcs:NCES_NationalSchoolLunchProgramNo","dcs:SchoolGrade9","dcs:SchoolGrade12","9525566192","Minnesota","MN","geoId/27","44.841613","-93.59692","dcs:NCES_SuburbLarge","11 Peavey Rd Chaska MN 55318-2321","CHASKA","55318","2321","EASTERN CARVER COUNTY PUBLIC SCHOOL","dcs:geoId/sch2708190","2024","dcs:HighSchool","MN","zip/55318,geoId/27019,geoId/27","" diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index f0632fecd9..517efe15cc 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -5,7 +5,7 @@ "curator_emails": [ "support@datacommons.org" ], - "provenance_url": "https://nces.ed.gov/", + "provenance_url": "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx", "provenance_description": "US nces school data for district", "scripts": [ "run.sh", diff --git a/scripts/us_nces/demographics/school_district/process_test.py b/scripts/us_nces/demographics/school_district/process_test.py index f9f7cb4f0c..2bb1d62b01 100644 --- a/scripts/us_nces/demographics/school_district/process_test.py +++ b/scripts/us_nces/demographics/school_district/process_test.py @@ -56,7 +56,7 @@ def __init__(self, methodName: str = ...) -> None: tmcf_path_place = os.path.join(tmp_dir, "test_school_district_place.tmcf") dup_csv_path_place = os.path.join( - tmp_dir, "test_private_school_place_dup.csv") + tmp_dir, "test_school_district_place_dup.csv") loader = NCESDistrictSchool(self.ip_data, cleaned_csv_file_path, mcf_file_path, tmcf_file_path, From 31bc976f18c447c40080a3bd593a17214e3ef42c Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 9 Sep 2026 02:13:03 +0000 Subject: [PATCH 15/17] Fix review findings for error handling, test hermeticity, and manifest configs --- scripts/us_nces/common/us_education.py | 110 ++-- .../demographics/public_school/manifest.json | 3 +- .../demographics/public_school/process.py | 4 +- .../public_school/process_test.py | 101 +-- .../us_nces_demographics_public_school.mcf | 216 ++++++ .../school_district/manifest.json | 3 +- .../demographics/school_district/process.py | 1 + .../school_district/process_test.py | 103 +-- .../us_nces_demographics_district_school.mcf | 623 ++++++++++++++++++ 9 files changed, 1023 insertions(+), 141 deletions(-) diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py index 0f9eb28f2f..47fb977829 100644 --- a/scripts/us_nces/common/us_education.py +++ b/scripts/us_nces/common/us_education.py @@ -28,7 +28,6 @@ import numpy as np import pandas as pd from absl import logging -from google.cloud import storage CODEDIR = os.path.dirname(__file__) sys.path.insert(1, os.path.join(CODEDIR, '../../..')) @@ -77,7 +76,7 @@ def _format_fips_code(val, length: int) -> str: if pd.isna(val): return '' s = str(val).strip() - if not s or s in ('nan', 'None'): + if not s or s.lower() in ('nan', 'none', ''): return '' if s.endswith('.0'): s = s[:-2] @@ -112,7 +111,7 @@ def __init__(self, cleaned_csv_place: str = None, duplicate_csv_place: str = None, tmcf_file_place: str = None) -> None: - self.storage_client = storage.Client() + self._place_dfs = [] self._input_files = input_files self._cleaned_csv_file_path = cleaned_csv_path self._mcf_file_path = mcf_file_path @@ -226,8 +225,8 @@ def _apply_regex(self, data_df: pd.DataFrame, conf: dict, position = regex["position"] if True in data_df[curr_prop_column].str.contains( pattern).values.tolist(): - data_df[curr_prop_column] = data_df[curr_prop_column].str.split( - pattern, expand=True)[position] + data_df[curr_prop_column] = data_df[ + curr_prop_column].str.split(pattern, expand=True)[position] data_df[curr_prop_column] = data_df[curr_prop_column].fillna( 'None') else: @@ -272,9 +271,9 @@ def _generate_prop(self, "curr_prop", curr_value_column ]].apply(conf["pv_format"], axis=1) unique_rows[[curr_value_column - ]] = replace_values(unique_rows[[curr_value_column]], - replace_with_all_mappers=False, - regex_flag=True) + ]] = replace_values(unique_rows[[curr_value_column]], + replace_with_all_mappers=False, + regex_flag=True) curr_val_mapper = dict( zip(unique_rows[column], unique_rows[curr_value_column])) @@ -310,8 +309,8 @@ def _generate_stat_vars(self, data_df: pd.DataFrame, prop_cols: str, stat_var_with_dcs = dict( zip(data_df["all_prop"], data_df[sv_node_column])) - stat_var_without_dcs = dict(zip(data_df["all_prop"], - data_df['sv_name'])) + stat_var_without_dcs = dict( + zip(data_df["all_prop"], data_df['sv_name'])) return (stat_var_with_dcs, stat_var_without_dcs) @@ -355,8 +354,8 @@ def _generate_stat_var_and_mcf(self, data_df["all_prop"] += '_' + data_df[col] sv_node_column = "prop_sv_node" data_df["prop_sv_node"] = "" - unique_props = data_df.drop_duplicates(subset=["all_prop"]).reset_index( - drop=True) + unique_props = data_df.drop_duplicates( + subset=["all_prop"]).reset_index(drop=True) unique_props = unique_props.replace('', np.nan) if self._generate_statvars: @@ -390,7 +389,8 @@ def _verify_year_uniqueness(self, headers: list) -> bool: if year != self._year: year_match = False logging.info( - f"Column {header} is not for expectd year {self._year}") + f"Column {header} is not for expectd year {self._year}" + ) return year_match @log_method_execution @@ -398,6 +398,10 @@ def _transform_private_place(self): """ The Data for Place Entities is cleaned and written to a file. """ + if self._place_dfs: + self._final_df_place = pd.concat(self._place_dfs, + ignore_index=True) + self._place_dfs = [] # Renaming column names in the dataframe. self._final_df_place = self._final_df_place.rename( columns=self._renaming_columns) @@ -466,9 +470,9 @@ def add_leading_zero(text): # Generating a column for place property. self._final_df_place['ContainedInPlace'] = self._final_df_place[ 'ZIP'].apply(lambda x: x + ',' if x != '' else '' - ) + self._final_df_place['County_code'].apply( - lambda x: x + ',' if x != '' else '' - ) + self._final_df_place['State_code'] + ) + self._final_df_place['County_code'].apply( + lambda x: x + ',' if x != '' else '' + ) + self._final_df_place['State_code'] # Camel casing Physical Address and School Name. self._final_df_place["Physical_Address"] = self._final_df_place[ @@ -478,8 +482,8 @@ def add_leading_zero(text): self._final_df_place["Private_School_Name"], self._final_df_place["Private_School_Name"].str.title()) # Sorting values in descending order and dropping duplicates. - self._final_df_place = self._final_df_place.sort_values(by=["year"], - ascending=False) + self._final_df_place = self._final_df_place.sort_values( + by=["year"], ascending=False) self._final_df_place = self._final_df_place.drop_duplicates( subset=["school_state_code"]).reset_index(drop=True) @@ -488,6 +492,10 @@ def _transform_public_place(self): """ The Data for Place Entities is cleaned and written to a file. """ + if self._place_dfs: + self._final_df_place = pd.concat(self._place_dfs, + ignore_index=True) + self._place_dfs = [] # FIX: Work on a copy to prevent SettingWithCopyWarning self._final_df_place = self._final_df_place.copy() @@ -519,7 +527,11 @@ def _transform_public_place(self): # Ensure empty strings or whitespace entries are treated as NaN so that # groupby().first() accurately skips nulls and coalesces attributes # across disjoint files/years without empty-string shadowing. - self._final_df_place.replace(r'^\s*$', np.nan, regex=True, inplace=True) + self._final_df_place.replace( + [r'^\s*$', r'^nan$', r'^None$', r'^$'], + np.nan, + regex=True, + inplace=True) self._final_df_place = (self._final_df_place.sort_values( by=["year"], ascending=False).groupby("school_state_code", as_index=False, @@ -609,8 +621,8 @@ def _transform_public_place(self): config) if zip_list else {} dcid_check_county = dc_api_is_defined_dcid( county_list, config) if county_list else {} - dcid_check_state = dc_api_is_defined_dcid(state_list, - config) if state_list else {} + dcid_check_state = dc_api_is_defined_dcid( + state_list, config) if state_list else {} # Add safety defaults dcid_check_county[""] = False @@ -638,10 +650,10 @@ def _transform_public_place(self): # Generating a column for place property. self._final_df_place['ContainedInPlace'] = self._final_df_place[ 'ZIP'].apply(lambda x: x + ',' if x != '' else '' - ) + self._final_df_place['County_code'].apply( - lambda x: x + ',' if x != '' else '' - ) + self._final_df_place['State_code'].apply( - lambda x: x if x != '' else '') + ) + self._final_df_place['County_code'].apply( + lambda x: x + ',' if x != '' else '' + ) + self._final_df_place['State_code'].apply( + lambda x: x if x != '' else '') self._final_df_place['ZIP'] = self._final_df_place['ZIP'].str.replace( "zip/", "") @@ -690,18 +702,26 @@ def _transform_district_place(self): """ The Data for Place Entities is cleaned and written to a file. """ + if self._place_dfs: + self._final_df_place = pd.concat(self._place_dfs, + ignore_index=True) + self._place_dfs = [] # Ensure we are working on a copy to reduce SettingWithCopyWarning risks self._final_df_place = self._final_df_place.copy() - self._final_df_place[ - 'geoID'] = "sch" + self._final_df_place['Agency ID - NCES Assigned'] + self._final_df_place['geoID'] = "sch" + self._final_df_place[ + 'Agency ID - NCES Assigned'] self._final_df_place = self._final_df_place.rename( columns=self._renaming_columns) # Ensure empty strings or whitespace entries are treated as NaN so that # groupby().first() accurately skips nulls and coalesces attributes # across disjoint files/years without empty-string shadowing. - self._final_df_place.replace(r'^\s*$', np.nan, regex=True, inplace=True) + self._final_df_place.replace( + [r'^\s*$', r'^nan$', r'^None$', r'^$'], + np.nan, + regex=True, + inplace=True) self._final_df_place = (self._final_df_place.sort_values( by=["year"], ascending=False).groupby("school_state_code", as_index=False, @@ -869,15 +889,18 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: elif self._import_name == "public_school": # Ensure School ID is formatted correctly with leading zeros df_cleaned["School ID (12-digit) - NCES Assigned"] = df_cleaned[ - "School ID (12-digit) - NCES Assigned"].astype(str).str.zfill( - 12) - df_cleaned["school_state_code"] = "nces/" + df_cleaned[ - "School ID (12-digit) - NCES Assigned"] + "School ID (12-digit) - NCES Assigned"].apply( + lambda x: _format_fips_code(x, 12)) + df_cleaned["school_state_code"] = df_cleaned[ + "School ID (12-digit) - NCES Assigned"].apply( + lambda x: "nces/" + x if x else "") elif self._import_name == "district_school": df_cleaned['Agency ID - NCES Assigned'] = df_cleaned[ - 'Agency ID - NCES Assigned'].astype(str).str.zfill(7) - df_cleaned["school_state_code"] = \ - "geoId/sch" + df_cleaned["Agency ID - NCES Assigned"] + 'Agency ID - NCES Assigned'].apply( + lambda x: _format_fips_code(x, 7)) + df_cleaned["school_state_code"] = df_cleaned[ + 'Agency ID - NCES Assigned'].apply(lambda x: "geoId/sch" + x + if x else "") curr_cols = df_cleaned.columns.values.tolist() curr_place = curr_cols @@ -936,8 +959,7 @@ def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: ]: df_place.loc[:, 'year'] = self._year[0:4].strip() df_place = df_place.loc[:, ~df_place.columns.duplicated()] - self._final_df_place = pd.concat([self._final_df_place, df_place], - ignore_index=True) + self._place_dfs.append(df_place) if not self._generate_statvars: return df_cleaned[data_cols] @@ -1013,13 +1035,15 @@ def generate_csv(self) -> pd.DataFrame: by=["year", "sv_name", "school_state_code"]) df_parsed = self._generate_prop(df_parsed, DF_DEFAULT_MCF_PROP, - SV_PROP_ORDER, FORM_STATVAR) + SV_PROP_ORDER, + FORM_STATVAR) df_parsed = self._generate_stat_var_and_mcf( df_parsed, SV_PROP_ORDER) # Adding new columns scaling_factor:100 and unit:dcs:Percent # wherever the SV is Percent. df_parsed["scaling_factor"] = np.where( - df_parsed["sv_name"].str.contains("Percent"), '100', '') + df_parsed["sv_name"].str.contains("Percent"), '100', + '') df_parsed["unit"] = np.where( df_parsed["sv_name"].str.contains("Percent"), "dcs:Percent", '') @@ -1091,7 +1115,8 @@ def generate_mcf(self) -> None: unique_nodes_df = self._df.drop_duplicates( subset=["prop_node"]).reset_index(drop=True) - mcf_ = unique_nodes_df.sort_values(by=["prop_node"])["mcf"].tolist() + mcf_ = unique_nodes_df.sort_values( + by=["prop_node"])["mcf"].tolist() else: mcf_ = self._df["mcf"].tolist() @@ -1125,8 +1150,9 @@ def generate_tmcf(self) -> None: None """ - tmcf = TMCF_TEMPLATE.format(import_name=self._import_name, - observation_period=self._observation_period) + tmcf = TMCF_TEMPLATE.format( + import_name=self._import_name, + observation_period=self._observation_period) # Writing Genereated TMCF to local path. with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: f_out.write(tmcf.rstrip('\n')) diff --git a/scripts/us_nces/demographics/public_school/manifest.json b/scripts/us_nces/demographics/public_school/manifest.json index 7749c9c286..011f828e70 100644 --- a/scripts/us_nces/demographics/public_school/manifest.json +++ b/scripts/us_nces/demographics/public_school/manifest.json @@ -12,7 +12,8 @@ "process.py" ], "source_files": [ - "gcs_folder/input_files/*/*.csv" + "gcs_folder/input_files/*/*.csv", + "validation_config.json" ], "import_inputs": [ { diff --git a/scripts/us_nces/demographics/public_school/process.py b/scripts/us_nces/demographics/public_school/process.py index 7faa0b4e46..eb7251b32c 100644 --- a/scripts/us_nces/demographics/public_school/process.py +++ b/scripts/us_nces/demographics/public_school/process.py @@ -100,4 +100,6 @@ class NCESPublicSchool(USEducation): except Exception as e: # Only log the first 1000 characters of the error message error_msg = str(e)[:1000] - logging.fatal(f"Error While Running Public School Process: {error_msg}") + logging.fatal( + f"Error While Running Public School Process: {error_msg}") + sys.exit(1) diff --git a/scripts/us_nces/demographics/public_school/process_test.py b/scripts/us_nces/demographics/public_school/process_test.py index 1f328dc208..d418cac85a 100644 --- a/scripts/us_nces/demographics/public_school/process_test.py +++ b/scripts/us_nces/demographics/public_school/process_test.py @@ -30,11 +30,10 @@ class TestProcess(unittest.TestCase): """ - TestPreprocess is inherting unittest class - properties which further requried for unit testing. - The test will be conducted for EuroStat Physical Activity Sample Datasets, - It will be generating CSV, MCF and TMCF files based on the sample input. - Comparing the data with the expected files. + TestProcess inherits from unittest.TestCase. + The test is conducted for NCES Public School Demographic Sample Datasets. + It generates CSV, MCF, and TMCF files based on sample inputs and compares + the output with expected files. """ test_data_files = os.listdir(TEST_DATASET_DIR) @@ -43,49 +42,55 @@ class TestProcess(unittest.TestCase): for file_name in test_data_files ] - def __init__(self, methodName: str = ...) -> None: - super().__init__(methodName) - - with tempfile.TemporaryDirectory() as tmp_dir: - cleaned_csv_file_path = os.path.join(tmp_dir, - "test_public_school.csv") - mcf_file_path = os.path.join(tmp_dir, "test_public_school.mcf") - tmcf_file_path = os.path.join(tmp_dir, "test_public_school.tmcf") - csv_path_place = os.path.join(tmp_dir, - "test_public_school_place.csv") - tmcf_path_place = os.path.join(tmp_dir, - "test_public_school_place.tmcf") - dup_csv_path_place = os.path.join( - tmp_dir, "test_public_school_place_dup.csv") - - loader = NCESPublicSchool(self.ip_data, cleaned_csv_file_path, - mcf_file_path, tmcf_file_path, - csv_path_place, dup_csv_path_place, - tmcf_path_place) - - with patch( - "common.us_education.dc_api_is_defined_dcid", - side_effect=lambda nodes, *args, **kwargs: - {n: True for n in nodes}, - ): - loader.generate_csv() - loader.generate_mcf() - loader.generate_tmcf() - - with open(cleaned_csv_file_path, encoding="utf-8-sig") as csv_file: - self.actual_csv_data = csv_file.read() - - with open(mcf_file_path, encoding="UTF-8") as mcf_file: - self.actual_mcf_data = mcf_file.read() - - with open(tmcf_file_path, encoding="UTF-8") as tmcf_file: - self.actual_tmcf_data = tmcf_file.read() - - with open(csv_path_place, encoding="utf-8-sig") as csv_file: - self.actual_csv_place = csv_file.read() - - with open(tmcf_path_place, encoding="UTF-8") as tmcf_file: - self.actual_tmcf_place = tmcf_file.read() + @classmethod + def setUpClass(cls): + super().setUpClass() + cls._tmp_dir = tempfile.TemporaryDirectory() + tmp_dir = cls._tmp_dir.name + cleaned_csv_file_path = os.path.join(tmp_dir, "test_public_school.csv") + mcf_file_path = os.path.join(tmp_dir, "test_public_school.mcf") + tmcf_file_path = os.path.join(tmp_dir, "test_public_school.tmcf") + csv_path_place = os.path.join(tmp_dir, "test_public_school_place.csv") + tmcf_path_place = os.path.join(tmp_dir, + "test_public_school_place.tmcf") + dup_csv_path_place = os.path.join(tmp_dir, + "test_public_school_place_dup.csv") + + loader = NCESPublicSchool(cls.ip_data, cleaned_csv_file_path, + mcf_file_path, tmcf_file_path, + csv_path_place, dup_csv_path_place, + tmcf_path_place) + + with patch( + "common.us_education.dc_api_is_defined_dcid", + side_effect=lambda nodes, *args, **kwargs: { + n: (n.startswith("zip/") or n.startswith("geoId/")) + for n in nodes + }, + ): + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() + + with open(cleaned_csv_file_path, encoding="utf-8-sig") as csv_file: + cls.actual_csv_data = csv_file.read() + + with open(mcf_file_path, encoding="UTF-8") as mcf_file: + cls.actual_mcf_data = mcf_file.read() + + with open(tmcf_file_path, encoding="UTF-8") as tmcf_file: + cls.actual_tmcf_data = tmcf_file.read() + + with open(csv_path_place, encoding="utf-8-sig") as csv_file: + cls.actual_csv_place = csv_file.read() + + with open(tmcf_path_place, encoding="UTF-8") as tmcf_file: + cls.actual_tmcf_place = tmcf_file.read() + + @classmethod + def tearDownClass(cls): + cls._tmp_dir.cleanup() + super().tearDownClass() def test_mcf_tmcf_files(self): """ diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf index e69de29bb2..779c788982 100644 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf +++ b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf @@ -0,0 +1,216 @@ +Node: dcid:Count_Student +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_AmericanIndianOrAlaskaNative +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Asian +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Black +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_DirectCertificationLunch +lunchEligibility: dcs:DirectCertificationLunch +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_FreeLunch +lunchEligibility: dcs:FreeLunch +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HawaiianNativeOrPacificIslander +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HispanicOrLatino +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Kindergarten +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_PreKindergarten +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_ReducedLunch +lunchEligibility: dcs:ReducedLunch +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade1 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade1 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade10 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade10 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade1To8 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade1To8 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade2 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade2 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade3 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade3 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade4 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade4 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade5 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade5 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade6 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade6 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade7 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade7 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade8 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade8 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade9 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade9 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade9To12 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade9To12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_TwoOrMoreRaces +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_UngradedClasses +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:NCESUngradedClasses +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_White +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable \ No newline at end of file diff --git a/scripts/us_nces/demographics/school_district/manifest.json b/scripts/us_nces/demographics/school_district/manifest.json index 517efe15cc..06791ad3d1 100644 --- a/scripts/us_nces/demographics/school_district/manifest.json +++ b/scripts/us_nces/demographics/school_district/manifest.json @@ -12,7 +12,8 @@ "process.py" ], "source_files": [ - "gcs_folder/input_files/*/*.csv" + "gcs_folder/input_files/*/*.csv", + "validation_config.json" ], "import_inputs": [ { diff --git a/scripts/us_nces/demographics/school_district/process.py b/scripts/us_nces/demographics/school_district/process.py index dfeb183cf0..b72b3dc9a1 100644 --- a/scripts/us_nces/demographics/school_district/process.py +++ b/scripts/us_nces/demographics/school_district/process.py @@ -102,3 +102,4 @@ class NCESDistrictSchool(USEducation): error_msg = str(e)[:1000] logging.fatal( f"Error While Running District School Process: {error_msg}") + sys.exit(1) diff --git a/scripts/us_nces/demographics/school_district/process_test.py b/scripts/us_nces/demographics/school_district/process_test.py index 2bb1d62b01..4d513cc32a 100644 --- a/scripts/us_nces/demographics/school_district/process_test.py +++ b/scripts/us_nces/demographics/school_district/process_test.py @@ -30,11 +30,10 @@ class TestProcess(unittest.TestCase): """ - TestPreprocess is inherting unittest class - properties which further requried for unit testing. - The test will be conducted for EuroStat Physical Activity Sample Datasets, - It will be generating CSV, MCF and TMCF files based on the sample input. - Comparing the data with the expected files. + TestProcess inherits from unittest.TestCase. + The test is conducted for NCES School District Demographic Sample Datasets. + It generates CSV, MCF, and TMCF files based on sample inputs and compares + the output with expected files. """ test_data_files = os.listdir(TEST_DATASET_DIR) @@ -43,49 +42,57 @@ class TestProcess(unittest.TestCase): for file_name in test_data_files ] - def __init__(self, methodName: str = ...) -> None: - super().__init__(methodName) - - with tempfile.TemporaryDirectory() as tmp_dir: - cleaned_csv_file_path = os.path.join(tmp_dir, - "test_school_district.csv") - mcf_file_path = os.path.join(tmp_dir, "test_school_district.mcf") - tmcf_file_path = os.path.join(tmp_dir, "test_school_district.tmcf") - csv_path_place = os.path.join(tmp_dir, - "test_school_district_place.csv") - tmcf_path_place = os.path.join(tmp_dir, - "test_school_district_place.tmcf") - dup_csv_path_place = os.path.join( - tmp_dir, "test_school_district_place_dup.csv") - - loader = NCESDistrictSchool(self.ip_data, cleaned_csv_file_path, - mcf_file_path, tmcf_file_path, - csv_path_place, dup_csv_path_place, - tmcf_path_place) - - with patch( - "common.us_education.dc_api_is_defined_dcid", - side_effect=lambda nodes, *args, **kwargs: - {n: True for n in nodes}, - ): - loader.generate_csv() - loader.generate_mcf() - loader.generate_tmcf() - - with open(mcf_file_path, encoding="UTF-8") as mcf_file: - self.actual_mcf_data = mcf_file.read() - - with open(tmcf_file_path, encoding="UTF-8") as tmcf_file: - self.actual_tmcf_data = tmcf_file.read() - - with open(cleaned_csv_file_path, encoding="utf-8-sig") as csv_file: - self.actual_csv_data = csv_file.read() - - with open(tmcf_path_place, encoding="UTF-8") as tmcf_file: - self.actual_tmcf_place = tmcf_file.read() - - with open(csv_path_place, encoding="utf-8-sig") as csv_file: - self.actual_csv_place = csv_file.read() + @classmethod + def setUpClass(cls): + super().setUpClass() + cls._tmp_dir = tempfile.TemporaryDirectory() + tmp_dir = cls._tmp_dir.name + cleaned_csv_file_path = os.path.join(tmp_dir, + "test_school_district.csv") + mcf_file_path = os.path.join(tmp_dir, "test_school_district.mcf") + tmcf_file_path = os.path.join(tmp_dir, "test_school_district.tmcf") + csv_path_place = os.path.join(tmp_dir, + "test_school_district_place.csv") + tmcf_path_place = os.path.join(tmp_dir, + "test_school_district_place.tmcf") + dup_csv_path_place = os.path.join( + tmp_dir, "test_school_district_place_dup.csv") + + loader = NCESDistrictSchool(cls.ip_data, cleaned_csv_file_path, + mcf_file_path, tmcf_file_path, + csv_path_place, dup_csv_path_place, + tmcf_path_place) + + with patch( + "common.us_education.dc_api_is_defined_dcid", + side_effect=lambda nodes, *args, **kwargs: { + n: (n.startswith("zip/") or n.startswith("geoId/")) + for n in nodes + }, + ): + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() + + with open(mcf_file_path, encoding="UTF-8") as mcf_file: + cls.actual_mcf_data = mcf_file.read() + + with open(tmcf_file_path, encoding="UTF-8") as tmcf_file: + cls.actual_tmcf_data = tmcf_file.read() + + with open(cleaned_csv_file_path, encoding="utf-8-sig") as csv_file: + cls.actual_csv_data = csv_file.read() + + with open(tmcf_path_place, encoding="UTF-8") as tmcf_file: + cls.actual_tmcf_place = tmcf_file.read() + + with open(csv_path_place, encoding="utf-8-sig") as csv_file: + cls.actual_csv_place = csv_file.read() + + @classmethod + def tearDownClass(cls): + cls._tmp_dir.cleanup() + super().tearDownClass() def test_mcf_tmcf_files(self): """ diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf index e69de29bb2..894d3e8f2d 100644 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf +++ b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf @@ -0,0 +1,623 @@ +Node: dcid:Count_Student +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_AdultEducation +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:AdultEducation +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_AmericanIndianOrAlaskaNative +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Asian +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Asian_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Asian_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Black +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Black_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Black_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Asian +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Asian_Kindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Asian_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Black +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Black_Kindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_Black_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_HawaiianNativeOrPacificIslander +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_HispanicOrLatino +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_HispanicOrLatino_Kindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_HispanicOrLatino_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_TwoOrMoreRaces_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_White +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Female_White_PreKindergarten +gender: dcs:Female +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HawaiianNativeOrPacificIslander +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +schoolGradeLevel: dcs:SchoolGrade10 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HispanicOrLatino +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HispanicOrLatino_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_HispanicOrLatino_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Kindergarten +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:AmericanIndianOrAlaskaNative +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Asian +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Asian_Kindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Asian_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Asian +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Black +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Black_Kindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_Black_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:Black +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_HawaiianNativeOrPacificIslander +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HawaiianNativeOrPacificIslander +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_HispanicOrLatino +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_HispanicOrLatino_Kindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:Kindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_HispanicOrLatino_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:HispanicOrLatino +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_TwoOrMoreRaces_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_White +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_Male_White_PreKindergarten +gender: dcs:Male +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_PreKindergarten +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:PreKindergarten +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade1 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade1 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade10 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade10 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade13 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade13 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade1To8 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade1To8 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade2 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade2 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade3 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade3 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade4 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade4 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade5 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade5 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade6 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade6 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade7 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade7 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade8 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade8 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade9 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade9 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_SchoolGrade9To12 +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:SchoolGrade9To12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_TwoOrMoreRaces +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade10 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +schoolGradeLevel: dcs:SchoolGrade10 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:TwoOrMoreRaces +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_UngradedClasses +measuredProperty: dcs:count +populationType: dcs:Student +schoolGradeLevel: dcs:NCESUngradedClasses +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_White +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_White_SchoolGrade11 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +schoolGradeLevel: dcs:SchoolGrade11 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable + +Node: dcid:Count_Student_White_SchoolGrade12 +measuredProperty: dcs:count +populationType: dcs:Student +race: dcs:White +schoolGradeLevel: dcs:SchoolGrade12 +statType: dcs:measuredValue +typeOf: dcs:StatisticalVariable \ No newline at end of file From de3ecf2505831a7007a0465800d55678770e1f18 Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 9 Sep 2026 02:26:08 +0000 Subject: [PATCH 16/17] removing redundant files --- .../us_nces_demographics_public_school.mcf | 216 ------ .../us_nces_demographics_district_school.mcf | 623 ------------------ 2 files changed, 839 deletions(-) delete mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf delete mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf deleted file mode 100644 index 779c788982..0000000000 --- a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf +++ /dev/null @@ -1,216 +0,0 @@ -Node: dcid:Count_Student -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_AmericanIndianOrAlaskaNative -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Asian -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Black -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_DirectCertificationLunch -lunchEligibility: dcs:DirectCertificationLunch -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_FreeLunch -lunchEligibility: dcs:FreeLunch -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HawaiianNativeOrPacificIslander -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HispanicOrLatino -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Kindergarten -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_PreKindergarten -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_ReducedLunch -lunchEligibility: dcs:ReducedLunch -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade1 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade1 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade10 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade10 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade1To8 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade1To8 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade2 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade2 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade3 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade3 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade4 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade4 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade5 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade5 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade6 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade6 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade7 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade7 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade8 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade8 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade9 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade9 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade9To12 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade9To12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_TwoOrMoreRaces -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_UngradedClasses -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:NCESUngradedClasses -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_White -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable \ No newline at end of file diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf deleted file mode 100644 index 894d3e8f2d..0000000000 --- a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf +++ /dev/null @@ -1,623 +0,0 @@ -Node: dcid:Count_Student -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_AdultEducation -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:AdultEducation -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_AmericanIndianOrAlaskaNative -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_AmericanIndianOrAlaskaNative_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Asian -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Asian_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Asian_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Black -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Black_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Black_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative_Kindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_AmericanIndianOrAlaskaNative_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Asian -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Asian_Kindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Asian_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Black -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Black_Kindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_Black_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_HawaiianNativeOrPacificIslander -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_HawaiianNativeOrPacificIslander_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_HispanicOrLatino -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_HispanicOrLatino_Kindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_HispanicOrLatino_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_TwoOrMoreRaces_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_White -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Female_White_PreKindergarten -gender: dcs:Female -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HawaiianNativeOrPacificIslander -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade10 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -schoolGradeLevel: dcs:SchoolGrade10 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HawaiianNativeOrPacificIslander_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HispanicOrLatino -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HispanicOrLatino_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_HispanicOrLatino_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Kindergarten -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative_Kindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_AmericanIndianOrAlaskaNative_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:AmericanIndianOrAlaskaNative -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Asian -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Asian_Kindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Asian_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Asian -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Black -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Black_Kindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_Black_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:Black -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_HawaiianNativeOrPacificIslander -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_HawaiianNativeOrPacificIslander_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HawaiianNativeOrPacificIslander -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_HispanicOrLatino -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_HispanicOrLatino_Kindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:Kindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_HispanicOrLatino_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:HispanicOrLatino -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_TwoOrMoreRaces_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_White -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_Male_White_PreKindergarten -gender: dcs:Male -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_PreKindergarten -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:PreKindergarten -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade1 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade1 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade10 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade10 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade13 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade13 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade1To8 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade1To8 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade2 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade2 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade3 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade3 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade4 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade4 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade5 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade5 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade6 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade6 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade7 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade7 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade8 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade8 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade9 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade9 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_SchoolGrade9To12 -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:SchoolGrade9To12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_TwoOrMoreRaces -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade10 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -schoolGradeLevel: dcs:SchoolGrade10 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_TwoOrMoreRaces_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:TwoOrMoreRaces -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_UngradedClasses -measuredProperty: dcs:count -populationType: dcs:Student -schoolGradeLevel: dcs:NCESUngradedClasses -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_White -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_White_SchoolGrade11 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -schoolGradeLevel: dcs:SchoolGrade11 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable - -Node: dcid:Count_Student_White_SchoolGrade12 -measuredProperty: dcs:count -populationType: dcs:Student -race: dcs:White -schoolGradeLevel: dcs:SchoolGrade12 -statType: dcs:measuredValue -typeOf: dcs:StatisticalVariable \ No newline at end of file From 4f704c734f8e786de9174279aecd8f4c2891953c Mon Sep 17 00:00:00 2001 From: Smarth Gupta Date: Wed, 9 Sep 2026 02:40:12 +0000 Subject: [PATCH 17/17] Regenerate test output files using generator scripts and align test mocks --- scripts/us_nces/demographics/public_school/process_test.py | 6 ++---- .../sample_output/us_nces_demographics_public_school.mcf | 0 .../us_nces/demographics/school_district/process_test.py | 6 ++---- .../sample_output/us_nces_demographics_district_school.mcf | 0 4 files changed, 4 insertions(+), 8 deletions(-) create mode 100644 scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf create mode 100644 scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf diff --git a/scripts/us_nces/demographics/public_school/process_test.py b/scripts/us_nces/demographics/public_school/process_test.py index d418cac85a..a0671641d1 100644 --- a/scripts/us_nces/demographics/public_school/process_test.py +++ b/scripts/us_nces/demographics/public_school/process_test.py @@ -63,10 +63,8 @@ def setUpClass(cls): with patch( "common.us_education.dc_api_is_defined_dcid", - side_effect=lambda nodes, *args, **kwargs: { - n: (n.startswith("zip/") or n.startswith("geoId/")) - for n in nodes - }, + side_effect=lambda nodes, *args, **kwargs: + {n: True for n in nodes}, ): loader.generate_csv() loader.generate_mcf() diff --git a/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf b/scripts/us_nces/demographics/public_school/test_data/sample_output/us_nces_demographics_public_school.mcf new file mode 100644 index 0000000000..e69de29bb2 diff --git a/scripts/us_nces/demographics/school_district/process_test.py b/scripts/us_nces/demographics/school_district/process_test.py index 4d513cc32a..bdfad913b8 100644 --- a/scripts/us_nces/demographics/school_district/process_test.py +++ b/scripts/us_nces/demographics/school_district/process_test.py @@ -65,10 +65,8 @@ def setUpClass(cls): with patch( "common.us_education.dc_api_is_defined_dcid", - side_effect=lambda nodes, *args, **kwargs: { - n: (n.startswith("zip/") or n.startswith("geoId/")) - for n in nodes - }, + side_effect=lambda nodes, *args, **kwargs: + {n: True for n in nodes}, ): loader.generate_csv() loader.generate_mcf() diff --git a/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/sample_output/us_nces_demographics_district_school.mcf new file mode 100644 index 0000000000..e69de29bb2