diff --git a/scripts/us_nces/README.md b/scripts/us_nces/README.md new file mode 100644 index 000000000..16221c901 --- /dev/null +++ b/scripts/us_nces/README.md @@ -0,0 +1,176 @@ +# US: National Center for Education Statistics + +## About the Dataset +This dataset has Population Estimates for the National Center for Education Statistics in US for +- Private School - 1997-2019 +- School District - 2010-2023 +- Public Schools - 2010-2023 + +The population is categorized on various attributes and their combinations: + + 1. Count of Students categorised based on Race. + 2. Count of Students categorised based on School Grade from Pre Kindergarten to Grade 13. + 3. Count of Students categorised based on Pupil/Teacher Ratio. + 4. Count of Full-Time Equivalent (FTE) Teachers. + 5. Count of Students with a combination of Race and School Grade. + 6. Count of Students with a combination of Race and Gender. + 7. Count of Students with a combination of School Grade and Gender. + 8. Count of Students with a combination of Race, School Grade and Gender. + 9. Count of Students under Ungraded Classes, Ungraded Students and Adult Education Students. + +The Place properties of Schools are given as below: + (All the properties are available based on the type of School) + + 1. `County Number` + 2. `School Name` + 3. `School ID - NCES Assigned` + 4. `Lowest Grade Offered` + 5. `Highest Grade Offered` + 6. `Phone Number` + 7. `ANSI/FIPS State Code` + 8. `Location Address 1` + 9. `Location City` + 10. `Location ZIP` + 11. `Magnet School` + 12. `Charter School` + 13. `School Type` + 14. `Title I School Status` + 15. `National School Lunch Program` + 16. `School Level (SY 2017-18 onward)` + 17. `State School ID` + 18. `State Agency ID` + 19. `State Abbr` + 20. `Agency Name` + 21. `Location ZIP4` + 22. `Agency ID - NCES Assigned` + 23. `School Level` + 24. `State Name` + + +### Download URL +The data in .csv formats are downloadable from https://nces.ed.gov/ccd/elsi/tableGenerator.aspx -> . + + +#### API Output +The attributes used for the import are as follows +| Attribute | Description | +|-------------------------------------------------------|------------------------------------------------------------------------------------------------| +| time | The Year of the population estimates provided. | +| geo | The Area of the population estimates provided. | +| Race | The Number of Students categorised under race. | +| Gender | The Number of Students categorised under Gender. | +| School Grade | The Number of Students categorised under School Grade. | +| Full-Time Equivalent | The Count of Teachers Available. | + + + +### Import Procedure + +#### Downloading the input files using scripts. + - There are 3 scripts created to download the input files. + - fetch_ncid.py + - download_config.py + - download_file_details.py + - download.py + + #### fetch_ncid.py script + - The code is a Python function that retrieves National Center for Education Statistics (NCES) IDs for a given school and year. It automates interacting with a webpage using Selenium to select options and then extracts the corresponding IDs. + + ##### download_config.py script + - The download_config.py script has all the configurations required to download the file. + - It has filter, download url, maximum tries etc. The values are same under all cases. + + ##### download_config.py script + - The download_file_details.py script has values for "default column", "columns to be downloaded" and "key coulmns". + - Every input file can only accommodate 60 columns. In Public Schools multiple input files will be downloaded. All these input files will have a common column called as "Key Column" which acts as primary key. + - In the "Public columns to be downloaded" create a list of columns. + -ex: PUBLIC_COLUMNS = ["State Name [Public School]", "State Abbr [Public School]", "School Name [Public School]"] + - Steps to add columns to the list. + - Under "Select Table Columns" + - select the "Information" tab + - expand the hit area "BasicInformation" + - right click on the desired column checkbox and choose inspect + - from the elements on the right hand side, check the number assigned to "value" and add confirm the column under that list which corresponds to value. + + ##### download.py script + - The download.py script is the main script. It considers the import_name and year to be downloaded. It downloads, extracts and places the input csv in "input_files" folder under the desired school directory. + + +### Command to Download input file + - `/bin/python3 scripts/us_nces/demographics/download.py --import_name={"PrivateSchool"(or)"District"(or)"PublicSchool"} --years_to_download= "{select the available years mentioned under each school type}"` + + For Example: `/bin/python3 scripts/us_nces/demographics/download.py --import_name="PublicSchool" --years_to_download="2023"`. + - The input_files folder containing all the files will be present in: + `scripts/us_nces/demographics/public_school/input_files` + - Note: Give one year at a time for District and Public Schools as there are large number of column values. + + +#### Cleaned Data +import_name consists of the school name being used +- "private_school" +- "district_school" +- "public_school" + +Cleaned data will be saved as a CSV file within the following paths. +- private_school -> [private_school/output_files/us_nces_demographics_private_school.csv] +- district_school -> [school_district/output_files/us_nces_demographics_district_school.csv] +- public_school -> [public_school/output_files/us_nces_demographics_public_school.csv] + +The Columns for the csv files are as follows +- school_state_code +- year +- sv_name +- observation +- scaling_factor +- unit + + +#### MCFs and Template MCFs +- private_school -> [private_school/output_files/us_nces_demographics_private_school.mcf] + [private_school/output_files/us_nces_demographics_private_school.tmcf] + + +- district_school -> [school_district/output_files/us_nces_demographics_district_school.mcf], + [school_district/output_files/us_nces_demographics_district_school.tmcf] + + +- public_school -> [public_school/output_files/us_nces_demographics_public_school.mcf], + [public_school/output_files/us_nces_demographics_public_school.tmcf] + + +#### Cleaned Place +"import_name" consists the type of school being executed. +- "private_school" +- "district_school" +- "public_school" + +Cleaned data will be inside as a CSV file with the following paths. +- private_school: +[private_school/output_place/us_nces_demographics_private_place.csv] +- district_school: +[school_district/output_place/us_nces_demographics_district_place.csv] +- public_school: +[public_school/output_place/us_nces_demographics_public_place.csv] + +If there are Duplicate School IDs present in School Place, they will be saved inside the same output path as that of csv and tmcf file. +- [scripts/us_nces/demographics/private_school/output_place/dulicate_id_us_nces_demographics_private_place.csv] +- [scripts/us_nces/demographics/school_district/output_place/dulicate_id_us_nces_demographics_district_place.csv] +- [scripts/us_nces/demographics/public_school/output_place/dulicate_id_us_nces_demographics_public_place.csv] + + +#### Template MCFs Place +- private_school: +[private_school/output_place/us_nces_demographics_private_place.tmcf] +- district_school: +[school_district/output_place/us_nces_demographics_district_place.tmcf] +- public_school: +[public_school/output_place/us_nces_demographics_public_place.tmcf] + +### Running Tests + +Run the test cases + +- `/bin/python3 -m unittest scripts/us_nces/demographics/private_school/process_test.py` +- `/bin/python3 -m unittest scripts/us_nces/demographics/school_district/process_test.py` +- `/bin/python3 -m unittest scripts/us_nces/demographics/public_school/process_test.py` + diff --git a/scripts/us_nces/common/dcid__mcf_existance.py b/scripts/us_nces/common/dcid__mcf_existance.py new file mode 100644 index 000000000..41e42fe29 --- /dev/null +++ b/scripts/us_nces/common/dcid__mcf_existance.py @@ -0,0 +1,44 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""_summary_ +Script to check the property/dcid/nodes existance in datacommons.org. +""" +import datacommons + + +def check_dcid_existence(nodes: list) -> dict: + """ + Checks the existance of dcid nodes in autopush. + True: Available + False: Unavailable + Args: + nodes (list): Dcid Nodes List + Returns: + dict: Status dictionary. + """ + # pylint: disable=protected-access + nodes_response = datacommons.get_property_values( + nodes, + "typeOf", + out=True, + value_type=None, + limit=datacommons.utils._MAX_LIMIT) + # pylint: enable=protected-access + node_status = {} + for node, value in nodes_response.items(): + if value == []: + node_status[node] = False + else: + node_status[node] = True + return node_status \ No newline at end of file diff --git a/scripts/us_nces/common/dcid_existance.py b/scripts/us_nces/common/dcid_existance.py new file mode 100644 index 000000000..14cc47dbe --- /dev/null +++ b/scripts/us_nces/common/dcid_existance.py @@ -0,0 +1,131 @@ +import datacommons as dc +import time +import logging +import requests_cache +import urllib + +dc.utils._API_ROOT = 'http://api.datacommons.org' + + +def dc_api_wrapper(function, + args: dict, + retries: int = 3, + retry_secs: int = 5, + use_cache: bool = False, + api_root: str = None): + '''Returns the result from the DC APi call function. + Retries the function in case of errors. + + Args: + function: The DataCOmmons API function. + args: dictionary with ann the arguments fr the DataCommons APi function. + retries: Number of retries in case of HTTP errors. + retry_sec: Interval in seconds between retries for which caller is blocked. + use_cache: If True, uses request cache for faster response. + api_root: The API server to use. Default is 'http://api.datacommons.org'. + To use autopush with more recent data, set it to 'http://autopush.api.datacommons.org' + + 'Returns: + The response from the DataCommons API call. + ''' + if api_root: + dc.utils._API_ROOT = api_root + logging.debug(f'Setting DC API root to {api_root} for {function}') + if not retries or retries <= 0: + retries = 1 + if not requests_cache.is_installed(): + requests_cache.install_cache(expires_after=300) + cache_context = None + if use_cache: + cache_context = requests_cache.enabled() + logging.debug(f'Using requests_cache for DC API {function}') + else: + cache_context = requests_cache.disabled() + logging.debug(f'Using requests_cache for DC API {function}') + with cache_context: + for attempt in range(0, retries): + try: + logging.debug( + f'Invoking DC API {function} with {args}, retries={retries}' + ) + return function(**args) + except KeyError: + # Exception in case of API error. + return None + except urllib.error.URLError: + # Exception when server is overloaded, retry after a delay + if attempt >= retries: + raise RuntimeError + else: + logging.debug( + f'Retrying API {function} after {retry_secs}...') + time.sleep(retry_secs) + return None + + +def dc_api_batched_wrapper(function, dcids: list, args: dict, + config: dict) -> dict: + '''Returns the dictionary result for the function cal on all APIs. + It batches the dcids to make multiple calls to the DC API and merges all results. + + Args: + function: DC API to be invoked. It should have dcids as one of the arguments + and should return a dictionary with dcid as the key. + dcids: List of dcids to be invoked with the function. + args: Additional arguments for the function call. + config: dictionary of DC API configuration settings. + The supported settings are: + dc_api_batch_size: Number of dcids to invoke per API call. + dc_api_retries: Number of times an API can be retried. + dc_api_retry_sec: Interval in seconds between retries. + dc_api_use_cache: Enable/disable request cache for the DC API call. + dc_api_root: The server to use fr the DC API calls. + + Returns: + Merged function return values across all dcids. + ''' + api_result = {} + index = 0 + num_dcids = len(dcids) + api_batch_size = config.get('dc_api_batch_size', 10) + logging.info( + f'Calling DC API {function} on {len(dcids)} dcids in batches of {api_batch_size} with args: {args}...' + ) + while index < num_dcids: + # dcids in batches. + dcids_batch = [ + # strip_namespace(x) for x in dcids[index:index + api_batch_size] + x for x in dcids[index:index + api_batch_size] + ] + index += api_batch_size + args['dcids'] = dcids_batch + batch_result = dc_api_wrapper(function, args, + config.get('dc_api_retries', 3), + config.get('dc_api_retry_secs', 5), + config.get('dc_api_use_cache', False), + config.get('dc_api_root', None)) + if batch_result: + api_result.update(batch_result) + logging.debug(f'Got DC API result for {function}: {batch_result}') + return api_result + + +def dc_api_get_defined_dcids(dcids: list, config: dict) -> dict: + '''Returns a dict with dcids mapped to list of types in the DataCommons KG. + Uses the property_value API to lookup 'typeOf' for each dcid. + dcids not defined in KG are dropped in the response. + ''' + api_function = dc.get_property_values + args = { + 'prop': 'typeOf', + 'out': True, + } + api_result = dc_api_batched_wrapper(api_function, dcids, args, config) + response = {} + # Remove empty results for dcids not defined in KG. + for dcid in dcids: + if dcid in api_result and api_result[dcid]: + response[dcid] = True + else: + response[dcid] = False + return response \ No newline at end of file diff --git a/scripts/us_nces/common/prop_conf.py b/scripts/us_nces/common/prop_conf.py new file mode 100644 index 000000000..c87bee876 --- /dev/null +++ b/scripts/us_nces/common/prop_conf.py @@ -0,0 +1,357 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Constant value used in processing US Tract are defined here. +This module also consists of mapping between various forms of column names +found in downloaded files and its corresponding SV name. +While preprocessing files column names are changed to SV names as used in +DC import +""" +# TMCF template for Demographics data. It changes based on import name. +TMCF_TEMPLATE = ( + "Node: E:us_nces_demographics_{import_name}->E0\n" + "typeOf: dcs:StatVarObservation\n" + "variableMeasured: C:us_nces_demographics_{import_name}->sv_name\n" + "measurementMethod: dcs:US_NCES_Demographics\n" + "observationAbout: C:us_nces_demographics_{import_name}->school_state_code\n" + "observationDate: C:us_nces_demographics_{import_name}->year\n" + "scalingFactor: C:us_nces_demographics_{import_name}->scaling_factor\n" + "unit: C:us_nces_demographics_{import_name}->unit\n" + "observationPeriod: \"{observation_period}\"\n" + "value: C:us_nces_demographics_{import_name}->observation\n") + +# TMCF template for Private School Place. +TMCF_TEMPLATE_PLACE_PRIVATE = ( + "Node: E:us_nces_demographics_private_place->E0\n" + "dcid: C:us_nces_demographics_private_place->school_state_code\n" + "typeOf: dcs:PrivateSchool\n" + "address: C:us_nces_demographics_private_place->Physical_Address\n" + "name: C:us_nces_demographics_private_place->Private_School_Name\n" + "ncesId: C:us_nces_demographics_private_place->SchoolID\n" + "lowestGrade: C:us_nces_demographics_private_place->Lowest_Grade\n" + "highestGrade: C:us_nces_demographics_private_place->Highest_Grade\n" + "schoolGradeLevel: C:us_nces_demographics_private_place->SchoolGrade\n" + "containedInPlace: C:us_nces_demographics_private_place->ContainedInPlace\n" + "telephone: C:us_nces_demographics_private_place->PhoneNumber\n" + "educationalMethod: C:us_nces_demographics_private_place->School_Type\n" + "religiousOrientation: C:us_nces_demographics_private_place->School_Religion\n" + "coeducationStatus: C:us_nces_demographics_private_place->Coeducational\n") + +# TMCF template for School District Place. +TMCF_TEMPLATE_PLACE_DISTRICT = ( + "Node: E:us_nces_demographics_district_place->E0\n" + "dcid: C:us_nces_demographics_district_place->school_state_code\n" + "typeOf: dcs:SchoolDistrict\n" + "address: C:us_nces_demographics_district_place->Physical_Address\n" + "name: C:us_nces_demographics_district_place->District_School_name\n" + "geoId: C:us_nces_demographics_district_place->geoID\n" + "ncesId: C:us_nces_demographics_district_place->School_ID\n" + "postalCode: C:us_nces_demographics_district_place->ZIP\n" + "containedInPlace: C:us_nces_demographics_district_place->ContainedInPlace\n" + "schoolStateID: C:us_nces_demographics_district_place->State_school_ID\n" + "telephone: C:us_nces_demographics_district_place->PhoneNumber\n" + "lowestGrade: C:us_nces_demographics_district_place->Lowest_Grade_Dist\n" + "highestGrade: C:us_nces_demographics_district_place->Highest_Grade_Dist\n" + "longitude: C:us_nces_demographics_district_place->Longitude\n" + "latitude: C:us_nces_demographics_district_place->Latitude\n" + "ncesLocale: C:us_nces_demographics_district_place->Locale\n" + "schoolManagement: C:us_nces_demographics_district_place->School_Management\n" +) + +# TMCF template for Public School Place. +TMCF_TEMPLATE_PLACE_PUBLIC = ( + "Node: E:us_nces_demographics_public_place->E0\n" + "dcid: C:us_nces_demographics_public_place->school_state_code\n" + "typeOf: dcs:PublicSchool\n" + "address: C:us_nces_demographics_public_place->Physical_Address\n" + "name: C:us_nces_demographics_public_place->Public_School_Name\n" + "ncesId: C:us_nces_demographics_public_place->School_Id\n" + "containedInPlace: C:us_nces_demographics_public_place->ContainedInPlace\n" + "telephone: C:us_nces_demographics_public_place->PhoneNumber\n" + "lowestGrade: C:us_nces_demographics_public_place->Lowest_Grade_Public\n" + "highestGrade: C:us_nces_demographics_public_place->Highest_Grade_Public\n" + "schoolGradeLevel: C:us_nces_demographics_public_place->School_Level\n" + "educationalMethod: C:us_nces_demographics_public_place->School_Type_Public\n" + "longitude: C:us_nces_demographics_public_place->Longitude\n" + "latitude: C:us_nces_demographics_public_place->Latitude\n" + "ncesLocale: C:us_nces_demographics_public_place->Locale\n" + "magnetStatus: C:us_nces_demographics_public_place->Magnet_School\n" + "titleISchoolStatus: C:us_nces_demographics_public_place->Title_I_School_Status\n" + "charterStatus: C:us_nces_demographics_public_place->Charter_School\n" + "nationalSchoolLunchProgram: C:us_nces_demographics_public_place->National_School_Lunch_Program\n" + "schoolDistrict: C:us_nces_demographics_public_place->State_District_ID\n" + "schoolStateID: C:us_nces_demographics_public_place->State_School_ID\n" + "schoolManagement: C:us_nces_demographics_public_place->School_Management\n" +) + +# Denominator Property for SVs which have percent or ratio. +_DENOMINATOR_PROP = { + "Pupil/Teacher Ratio": "Count_Teacher", + "Percent": "Count_Student" +} + +# Property map to which the Faculty anf Teacher columns are considered. +_POPULATION_PROP = { + "Full-Time Equivalent": "Teacher", + "Elementary Teachers": "Teacher", + "Prekindergarten Teachers": "Teacher", + "Secondary Teachers": "Teacher", + "Kindergarten Teachers": "Teacher", + "Ungraded Teachers": "Teacher", + "Paraprofessionals/Instructional Aides": "Faculty", + "Instructional Coordinators": "Faculty", + "Elementary School Counselor": "Faculty", + "Secondary School Counselor": "Faculty", + "Other Guidance Counselors": "Faculty", + "Total Guidance Counselors": "Faculty", + "Librarians/media specialists": "Faculty", + "Media Support Staff": "Faculty", + "LEA Administrators": "Faculty", + "LEA Administrative Support Staff": "Faculty", + "School Administrators": "Faculty", + "School Administrative Support Staff": "Faculty", + "Student Support Services Staff": "Faculty", + "School Psychologist": "Faculty", + "Other Support Services Staff": "Faculty" +} +# One specific column comes under school grade property. +_SCHOOL_GRADE_PROP = {"Ungraded Students": "NCESUngradedClasses"} +# melting the columns based on sv_name column. +MELT_VAR_COL = "sv_name" + +# 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 "" +_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) +SV_NODE_FORMAT = lambda prop_val: f'Node: dcid:{prop_val}' +# pylint:enable=unnecessary-lambda-assignment +# Default property for every node. +DF_DEFAULT_MCF_PROP = [('statType', 'measuredValue', _PV_FORMAT), + ('measuredProperty', 'count', _PV_FORMAT), + ('typeOf', 'StatisticalVariable', _PV_FORMAT)] +# The order in which the property should be arranged. +SV_PROP_ORDER = [ + "measuredProperty", "populationType", "statType", "typeOf", "race", + "schoolGradeLevel", "measurementDenominator", "gender", "lunchEligibility", + "facultyType" +] +# Patterns of every property and its respective columns. +_RACE_PATTERN = (r"(" + r"American Indian/Alaska Native" + r"|" + r"Asian or Asian/Pacific Islander" + r"|" + r"Hispanic" + r"|" + r"Black" + r"|" + r"Two or More Races" + r"|" + r"Nat. Hawaiian or Other Pacific Isl." + r"|" + r"White" + r")") + +_SCHOOL_GRADE_PATTERN = (r"(" + r"Grade \d{,2}" + r"|" + r"Prekindergarten and Kindergarten" + r"|" + r"Kindergarten" + r"|" + r"Prekindergarten" + r"|" + r"Grades 1-8" + r"|" + r"Grades 9-12" + r"|" + r"Ungraded Students" + r"|" + r"Adult Education" + r")") + +_DENOMINATOR_PATTERN = (r"(" + r"Percent" + r"|" + r"Pupil/Teacher Ratio" + r")") + +_POPULATION_TYPE_PATTERN = (r"(" + r"Pupil/Teacher Ratio" + r"|" + r"Full-Time Equivalent" + r"|" + r"Student" + r"|" + r"Elementary Teachers" + r"|" + r"Secondary Teachers" + r"|" + r"Kindergarten Teachers" + r"|" + r"Prekindergarten Teachers" + r"|" + r"Ungraded Teachers" + r"|" + r"Paraprofessionals/Instructional Aides" + r"|" + r"Instructional Coordinators" + r"|" + r"Elementary School Counselor" + r"|" + r"Secondary School Counselor" + r"|" + r"Other Guidance Counselors" + r"|" + r"Total Guidance Counselors" + r"|" + r"Librarians/media specialists" + r"|" + r"Media Support Staff" + r"|" + r"LEA Administrators" + r"|" + r"LEA Administrative Support Staff" + r"|" + r"Student Support Services Staff" + r"|" + r"School Administrative Support Staff" + r"|" + r"School Administrators" + r"|" + r"School Psychologist" + r"|" + r"Other Support Services Staff" + r")") + +_GENDER_PATTERN = (r"(" + r"Female" + r"|" + r"female" + r"|" + r"Male" + r"|" + r"male" + r")") + +_LUNCH_ELIGIBITY_PATTERN = (r"(" + r"Free Lunch" + r"|" + r"Reduced-price Lunch" + r"|" + r"Free and Reduced Lunch" + r")") + +_SCHOOL_STAFF_PATTERN = (r"(" + r"Paraprofessionals/Instructional Aides" + r"|" + r"Instructional Coordinators" + r"|" + r"Elementary School Counselor" + r"|" + r"Secondary School Counselor" + r"|" + r"Other Guidance Counselors" + r"|" + r"Total Guidance Counselors" + r"|" + r"Librarians/media specialists" + r"|" + r"Media Support Staff" + r"|" + r"LEA Administrators" + r"|" + r"LEA Administrative Support Staff" + r"|" + r"Student Support Services Staff" + r"|" + r"School Administrative Support Staff" + r"|" + r"School Administrators" + r"|" + r"School Psychologist" + r"|" + r"Elementary Teachers" + r"|" + r"Secondary Teachers" + r"|" + r"Ungraded Teachers" + r"|" + r"Other Support Services Staff" + r")") +# Based on the above patterns, properties are mapped to values. +FORM_STATVAR = { + "race": { + "regex": { + "pattern": _RACE_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "pv_format": _PV_FORMAT + }, + "schoolGradeLevel": { + "regex": { + "pattern": _SCHOOL_GRADE_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "update_value": _UPDATE_GRADE_LEVEL, + "pv_format": _PV_FORMAT + }, + "measurementDenominator": { + "regex": { + "pattern": _DENOMINATOR_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "update_value": _UPDATE_MEASUREMENT_DENO, + "pv_format": _PV_FORMAT + }, + "populationType": { + "regex": { + "pattern": _POPULATION_TYPE_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "update_value": _UPDATE_POPULATION_TYPE, + "pv_format": _PV_FORMAT + }, + "gender": { + "regex": { + "pattern": _GENDER_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "pv_format": _PV_FORMAT + }, + "lunchEligibility": { + "regex": { + "pattern": _LUNCH_ELIGIBITY_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "pv_format": _PV_FORMAT + }, + "facultyType": { + "regex": { + "pattern": _SCHOOL_STAFF_PATTERN, + "position": 1 + }, + "column": MELT_VAR_COL, + "pv_format": _PV_FORMAT + } +} diff --git a/scripts/us_nces/common/replacement_functions.py b/scripts/us_nces/common/replacement_functions.py new file mode 100644 index 000000000..fd3df41e9 --- /dev/null +++ b/scripts/us_nces/common/replacement_functions.py @@ -0,0 +1,524 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Replacement Functions for specific Column Values +which are common for all the US Education Inputs. +""" +import pandas as pd +import numpy as np + +_COEDUCATIONAL = { + "1-Coed (school has male and female students)": "Coeducational", + "2-All-female (school only has all-female students)": "AllFemale", + "3-All-male (school only has all-male students)": "AllMale", + np.nan: "", + "–": "" +} + +_RELIGIOUS_AFFLIATION = { + "1-Catholic": "Catholic", + "2-Other religious": "OtherReligious", + "3-Nonsectarian": "Nonsectarian", + np.nan: "" +} + +_RELIGIOUS = { + "–": + "", + "African Methodist Episcopal": + "AfricanMethodistEpiscopal", + "Amish": + "Amish", + "Assembly of God": + "AssemblyOfGod", + "Baptist": + "Baptist", + "Brethren": + "Brethren", + "Calvinist": + "Calvinism", + "Christian (no specific denomination)": + "Christianity", + "Church of Christ": + "ChurchOfChrist", + "Church of God": + "ChurchOfGod", + "Church of God in Christ": + "ChurchOfGodInChrist", + "Church of the Nazarene": + "ChurchOfTheNazarene", + "Disciples of Christ": + "DisciplesOfChrist", + "Episcopal": + "Episcopalians", + "Evangelical Lutheran Church in America (formerly AELC or ALC or LCA)": + "EvangelicalLutheranChurchInAmerica", + "Friends": + "FriendsChurch", + "Greek Orthodox": + "GreekOrthodox", + "Islamic": + "Islam", + "Jewish": + "Judaism", + "Latter Day Saints": + "LatterDaySaints", + "Lutheran Church – Missouri Synod": + "LutheranChurchMissouriSynod", + "Mennonite": + "Mennonite", + "Methodist": + "Methodism", + "Nonsectarian": + "Nonsectarian", + "Other": + "NCES_OtherReligion", + "Other Lutheran": + "NCES_OtherLutheran", + "Pentecostal": + "Pentecostalism", + "Presbyterian": + "Presbyterian", + "Roman Catholic": + "RomanCatholicism", + "Seventh–Day Adventist": + "SeventhDayAdventist", + "Wisconsin Evangelical Lutheran Synod": + "WisconsinEvangelicalLutheranSynod", + "Catholic": + "Catholicism", + np.nan: + "" +} + +_SCHOOL_TYPE = { + "1-Regular Elementary or Secondary": + "NCES_Regular", + "1-Regular Elementary or Secondary": + "NCES_Regular", + "2-Montessori": + "Montessori", + "3-Special Program Emphasis": + "NCES_SpecialProgramEmphasis", + "4-Special Education": + "NCES_SpecialEducation", + "5-Career/technical/vocational": + "NCES_CareerOrTechnicalOrVocational", + "6-Alternative/other": + "NCES_AlternativeOrOther", + "7-Early Childhood Program/child care center": + "NCES_EarlyChildhoodProgramOrChildCareCenter", + np.nan: + "NCES_DataMissing", + "–": + "NCES_DataMissing", +} + +_SCHOOL_GRADE = { + "Elementary Teachers": "ElementaryTeacher", + "Secondary Teachers": "SecondaryTeacher", + "Prekindergarten and Kindergarten": "PreKindergartenAndKindergarten", + "Prekindergarten": "PreKindergarten", + "Kindergarten": "Kindergarten", + "Transitional Kindergarten": "TransitionalKindergarten", + "Grades 1-8": "SchoolGrade1To8", + "Grades 9-12": "SchoolGrade9To12", + "1st grade": "SchoolGrade1", + "1st Grade": "SchoolGrade1", + "Grade 1": "SchoolGrade1", + "2nd grade": "SchoolGrade2", + "2nd Grade": "SchoolGrade2", + "Grade 2": "SchoolGrade2", + "3rd grade": "SchoolGrade3", + "3rd Grade": "SchoolGrade3", + "Grade 3": "SchoolGrade3", + "4th grade": "SchoolGrade4", + "4th Grade": "SchoolGrade4", + "Grade 4": "SchoolGrade4", + "5th grade": "SchoolGrade5", + "5th Grade": "SchoolGrade5", + "Grade 5": "SchoolGrade5", + "6th grade": "SchoolGrade6", + "6th Grade": "SchoolGrade6", + "Grade 6": "SchoolGrade6", + "7th grade": "SchoolGrade7", + "7th Grade": "SchoolGrade7", + "Grade 7": "SchoolGrade7", + "8th grade": "SchoolGrade8", + "8th Grade": "SchoolGrade8", + "Grade 8": "SchoolGrade8", + "9th grade": "SchoolGrade9", + "9th Grade": "SchoolGrade9", + "Grade 9": "SchoolGrade9", + "10th grade": "SchoolGrade10", + "10th Grade": "SchoolGrade10", + "Grade 10": "SchoolGrade10", + "11th grade": "SchoolGrade11", + "11th Grade": "SchoolGrade11", + "Grade 11": "SchoolGrade11", + "12th grade": "SchoolGrade12", + "12th Grade": "SchoolGrade12", + "Grade 12": "SchoolGrade12", + "13th grade": "SchoolGrade13", + "13th Grade": "SchoolGrade13", + "Grade 13": "SchoolGrade13", + np.nan: "NCES_GradeDataMissing", + "–": "NCES_GradeDataMissing", + "All Ungraded": "NCESUngradedClasses", + "Adult Education": "AdultEducation", + "Transitional 1st grade": "TransitionalGrade1", + "Ungraded Students": "UngradedClasses", + "Ungraded Teachers": "UngradedTeacher" +} + +_SCHOOL_GRADE_PLACE = { + "Elementary Teachers": "Elementary", + "Secondary Teachers": "Secondary", + "Prekindergarten and Kindergarten": "PreKindergartenAndKindergarten", + "Ungraded": "NCESUngradedClasses", + "Prekindergarten": "PreKindergarten", + "Kindergarten": "Kindergarten", + "Transitional Kindergarten": "TransitionalKindergarten", + "Grades 1-8": "SchoolGrade1To8", + "Grades 9-12": "SchoolGrade9To12", + "1st grade": "SchoolGrade1", + "1st Grade": "SchoolGrade1", + "Grade 1": "SchoolGrade1", + "2nd grade": "SchoolGrade2", + "2nd Grade": "SchoolGrade2", + "Grade 2": "SchoolGrade2", + "3rd grade": "SchoolGrade3", + "3rd Grade": "SchoolGrade3", + "Grade 3": "SchoolGrade3", + "4th grade": "SchoolGrade4", + "4th Grade": "SchoolGrade4", + "Grade 4": "SchoolGrade4", + "5th grade": "SchoolGrade5", + "5th Grade": "SchoolGrade5", + "Grade 5": "SchoolGrade5", + "6th grade": "SchoolGrade6", + "6th Grade": "SchoolGrade6", + "Grade 6": "SchoolGrade6", + "7th grade": "SchoolGrade7", + "7th Grade": "SchoolGrade7", + "Grade 7": "SchoolGrade7", + "8th grade": "SchoolGrade8", + "8th Grade": "SchoolGrade8", + "Grade 8": "SchoolGrade8", + "9th grade": "SchoolGrade9", + "9th Grade": "SchoolGrade9", + "Grade 9": "SchoolGrade9", + "10th grade": "SchoolGrade10", + "10th Grade": "SchoolGrade10", + "Grade 10": "SchoolGrade10", + "11th grade": "SchoolGrade11", + "11th Grade": "SchoolGrade11", + "Grade 11": "SchoolGrade11", + "12th grade": "SchoolGrade12", + "12th Grade": "SchoolGrade12", + "Grade 12": "SchoolGrade12", + "13th grade": "SchoolGrade13", + "13th Grade": "SchoolGrade13", + "Grade 13": "SchoolGrade13", + np.nan: "NCES_GradeDataMissing", + "–": "NCES_GradeDataMissing", + "Adult Education": "AdultEducation", + "Transitional 1st grade": "TransitionalGrade1" +} + +_PHYSICAL_ADD = {np.nan: "", "–": "", "Po Box": "PO BOX"} + +# pylint:disable=line-too-long +_SCHOOL_LEVEL = { + "1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).": + "ElementarySchool", + "1-ElementarySchool (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).": + "ElementarySchool", + "2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).": + "SecondarySchool", + "3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).": + "ElementarySchool__SecondarySchool__UngradedSchool", + "1-Primary": + "PrimarySchool", + "Middle": + "MiddleSchool", + "2-Middle": + "MiddleSchool", + "Elementary": + "ElementarySchool", + "High": + "HighSchool", + "3-High": + "HighSchool", + "Not Reported": + "NCES_SchoolLevelDataMissing", + "Prekindergarten": + "PreKindergarten", + "Not Applicable": + "NCES_SchoolLevelDataNotApplicable", + "Other": + "NCES_SchoolLevelOther", + "4-Other": + "NCES_SchoolLevelOther", + "Adult Education": + "AdultEducation", + "Ungraded": + "UngradedSchool", + "Secondary": + "SecondarySchool", + np.nan: + "", + "–": + "" +} +# pylint:enable=line-too-long + +_RACE_ = { + "American Indian/Alaska Native": "AmericanIndianOrAlaskaNative", + "Asian or Asian/Pacific Islander": "Asian", + "Black or African American": "Black", + "BlackOrAfricanAmericanAlone": "Black", + "Nat. Hawaiian or Other Pacific Isl.": "HawaiianNativeOrPacificIslander", + "Hispanic": "HispanicOrLatino", + # 'White': 'White', + "Two or More Races": "TwoOrMoreRaces", + "Black": "Black" +} + +_LUNCH = { + "Reduced-price Lunch": + "ReducedLunch", + "Free and Reduced Lunch": + "DirectCertificationLunch", + "Free Lunch": + "FreeLunch", + "No": + "NCES_NationalSchoolLunchProgramNo", + "Yes participating without using any Provision or the CEO": + "NCES_NationalSchoolLunchProgramYesWithoutAnyProvisionOrCEO", + "Yes under Community Eligibility Option (CEO)": + "NCES_NationalSchoolLunchProgramYesUnderCEO", + "Yes under Provision 1": + "NCES_NationalSchoolLunchProgramYesUnderProvision1", + "Yes under Provision 2": + "NCES_NationalSchoolLunchProgramYesUnderProvision2", + "Yes under Provision 3": + "NCES_NationalSchoolLunchProgramYesUnderProvision3", + np.nan: + "NCES_MagnetDataMissing", + "–": + "NCES_MagnetDataMissing" +} + +_SCHOOL_STAFF = { + "Paraprofessionals/Instructional Aides": + "ParaProfessionalsAidesOrInstructionalAide", + "Instructional Coordinators": + "InstructionalCoordinatorOrSupervisor", + "Elementary School Counselor": + "ElementarySchoolCounselor", + "Secondary School Counselor": + "SecondarySchoolCounselor", + "Other Guidance Counselors": + "SchoolOtherGuidanceCounselor", + "Total Guidance Counselors": + "TotalGuidanceCounselor", + "Librarians/media specialists": + "LibrariansSpecialistsOrMediaSpecialist", + "Media Support Staff": + "MediaSupportStaff", + "LEA Administrators": + "LEAAdministrator", + "LEA Administrative Support Staff": + "LEAAdministrativeSupportStaff", + "School Administrators": + "SchoolAdministrator", + "School Administrative Support Staff": + "SchoolAdministrativeSupportStaff", + "Student Support Services Staff": + "StudentSupportServicesStaff", + "School Psychologist": + "SchoolPsychologist", + "Other Support Services Staff": + "SchoolOtherSupportServicesStaff", + "Elementary Teachers": + "ElementaryTeacher", + "Secondary Teachers": + "SecondaryTeacher", + "Ungraded Teachers": + "UngradedTeacher", + np.nan: + "", +} + +COLUMNS = { + "Private School Name": "Private_School_Name", + "School ID - NCES Assigned": "SchoolID", + "School Type": "School_Type", + "School Level": "School_Level", + "School's Religious Affiliation or Orientation": "School_Religion", + "Lowest Grade Taught": "Lowest_Grade", + "Highest Grade Taught": "Highest_Grade", + "Physical Address": "Physical_Address", + "Phone Number": "PhoneNumber" +} + +_GENDER = {"female": "Female", "male": "Male"} + +_LOCALE = { + '13-City: Small': "NCES_CitySmall", + '21-Suburb: Large': "NCES_SuburbLarge", + '32-Town: Distant': "NCES_TownDistant", + '11-City: Large': "NCES_CityLarge", + '42-Rural: Distant': "NCES_RuralDistant", + '23-Suburb: Small': "NCES_SuburbSmall", + '22-Suburb: Mid-size': "NCES_SuburbMidsize", + '41-Rural: Fringe': "NCES_RuralFringe", + '12-City: Mid-size': "NCES_CityMidsize", + '33-Town: Remote': "NCES_TownRemote", + '31-Town: Fringe': "NCES_TownFringe", + '43-Rural: Remote': "NCES_RuralRemote", + np.nan: "NCES_LocaleDataMissing", + "–": "NCES_LocaleDataMissing" +} + +_UNREADABLE_TEXT = {"–": np.nan, "†": np.nan} + +_NAN = {np.nan: "", "nan": ""} + +_CITY = {np.nan: "", "–": "", " ": ""} + +_MAGNET = { + "1-Yes": "NCES_MagnetYes", + "2-No": "NCES_MagnetNo", + np.nan: "NCES_MagnetDataMissing", + "–": "NCES_MagnetDataMissing" +} + +_CHARTER = { + np.nan: "NCES_CharterDataMissing", + "1-Yes": "NCES_CharterYes", + "2-No": "NCES_CharterNo", + "–": "NCES_CharterDataMissing" +} + +_TITLE = { + np.nan: + "NCES_TitleISchoolStatusDataMissing", + "–": + "NCES_TitleISchoolStatusDataMissing", + "6-Not a Title I school": + "NCES_TitleISchoolStatusNotEligible", + "5-Title I schoolwide school": + "NCES_TitleISchoolStatusSWPAndTASProgram", + "4-Title I schoolwide eligible school-No program": + "NCES_TitleISchoolStatusSWPNoTASProgram", + "1-Title I targeted assistance eligible school-No program": + "NCES_TitleISchoolStatusTASNoTASProgram", + "3-Title I schoolwide eligible-Title I targeted assistance program": + "NCES_TitleISchoolStatusTASAndTASProgram", + "2-Title I targeted assistance school": + "NCES_TitleISchoolStatusTASNoTASProgram" +} + +_SCHOOL_PUBLIC_TYPE = { + "1-Regular school": "NCES_PublicSchoolTypeRegular", + "4-Alternative/other school": "NCES_PublicSchoolTypeOther", + "2-Special education school": "NCES_PublicSchoolTypeSpecialEducation", + "3-Vocational school": "NCES_PublicSchoolTypeVocational", + np.nan: "NCES_PublicSchoolTypeDataMissing", + "–": "NCES_PublicSchoolTypeDataMissing" +} + +_STATE_NAME = { + 'DODEA (Overseas and Domestic)': + 'NCES_DepartmentOfDefenseEducationActivity', + "Bureau of Indian Education": + "NCES_BureauOfIndianEducation", + "DEPARTMENT OF DEFENSE EDUCATION ACTIVITY": + "NCES_DepartmentOfDefenseEducationActivity", + "DEPARTMENT OF DEFENSE": + "NCES_DepartmentOfDefenseEducationActivity" +} + + +def replace_values(data_df: pd.DataFrame, + replace_with_all_mappers=False, + regex_flag=True): + """ + Replaces columns values with the defined mappers. + """ + cols_mapper = { + "Coeducational": _COEDUCATIONAL, + "School_Religion_Affliation": _RELIGIOUS_AFFLIATION, + "School_Religion": _RELIGIOUS, + "School_Type": _SCHOOL_TYPE, + "SchoolGrade": _SCHOOL_LEVEL, + "Race": _RACE_, + "Lunch": _LUNCH, + "SchoolStaff": _SCHOOL_STAFF, + "Gender": _GENDER, + "Physical Address": _PHYSICAL_ADD, + "Physical_Address": _PHYSICAL_ADD, + "ZIP": _NAN, + "Phone Number": _NAN, + "PhoneNumber": _NAN, + "Agency_level": _NAN, + "Lowest_Grade": _SCHOOL_GRADE, + "Highest_Grade": _SCHOOL_GRADE, + "Latitude": _NAN, + "Longitude": _NAN, + "Locale": _LOCALE, + "State_school_ID": _NAN, + "School_level": _NAN, + "County_code": _NAN, + "ZIP4": _NAN, + "City": _CITY, + "Highest_Grade_Dist": _SCHOOL_GRADE_PLACE, + "Lowest_Grade_Dist": _SCHOOL_GRADE_PLACE, + "Highest_Grade_Public": _SCHOOL_GRADE_PLACE, + "Lowest_Grade_Public": _SCHOOL_GRADE_PLACE, + "Charter_School": _CHARTER, + "School_Type_Public": _SCHOOL_PUBLIC_TYPE, + "Title_I_School_Status": _TITLE, + "Magnet_School": _MAGNET, + "National_School_Lunch_Program": _LUNCH, + "Location_ZIP4": _NAN, + "prop_race": _RACE_, + "prop_schoolGradeLevel": _SCHOOL_GRADE, + "prop_gender": _GENDER, + "prop_lunchEligibility": _LUNCH, + "prop_facultyType": _SCHOOL_STAFF, + "Agency_Name": _NAN, + "School_Level_17": _SCHOOL_LEVEL, + "School_Level_16": _SCHOOL_LEVEL, + "State_Agency_ID": _NAN, + "State_School_ID": _NAN, + "State_Name": _STATE_NAME + } + + df_columns = data_df.columns.to_list() + for column, replacements in cols_mapper.items(): + if replace_with_all_mappers: + data_df = data_df.replace(replacements, regex=regex_flag) + continue + if column in df_columns: + if isinstance(replacements, list): + for replacement in replacements: + data_df = data_df.replace({column: replacement}, + regex=regex_flag) + else: + data_df = data_df.replace({column: replacements}, + regex=regex_flag) + return data_df diff --git a/scripts/us_nces/common/us_education.py b/scripts/us_nces/common/us_education.py new file mode 100644 index 000000000..530253d32 --- /dev/null +++ b/scripts/us_nces/common/us_education.py @@ -0,0 +1,1033 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python module is generalized to work with different USEducation import +such as Private Education & Public Education. + +USEducation class in this module provides methods to generate processed CSV, MCF & +TMCF files. +""" +import warnings + +warnings.filterwarnings("ignore", category=UserWarning) + +import io +import json +import os +import sys +import re +import csv +import pandas as pd +import numpy as np + +pd.set_option("display.max_columns", None) + +from common.replacement_functions import (replace_values, _UNREADABLE_TEXT) +from common.prop_conf import * + +CODEDIR = os.path.dirname(__file__) +# For import common.replacement_functions +sys.path.insert(1, os.path.join(CODEDIR, '../../..')) +from util.statvar_dcid_generator import get_statvar_dcid +from common.dcid_existance import * +from common.dcid__mcf_existance import check_dcid_existence +from util.alpha2_to_dcid import USSTATE_MAP + + +class USEducation: + """ + USEducation is a base class which provides common implementation for + generating CSV, MCF and tMCF files. + """ + # Below variables will be initialized by sub-class (import specific) + _import_name = "" + _default_mcf_template = "" + _split_headers_using_school_type = "" + _include_columns = None + _exclude_columns = None + _include_col_place = None + _exclude_col_place = None + _generate_statvars = True + _observation_period = None + _key_col_place = None + _exclude_list = None + _school_id = None + _renaming_columns = None + + def __init__(self, + input_files: list, + cleaned_csv_path: str = None, + mcf_file_path: str = None, + tmcf_file_path: str = None, + cleaned_csv_place: str = None, + duplicate_csv_place: str = None, + tmcf_file_place: str = None) -> None: + self._input_files = input_files + self._cleaned_csv_file_path = cleaned_csv_path + self._mcf_file_path = mcf_file_path + self._tmcf_file_path = tmcf_file_path + self._csv_file_place = cleaned_csv_place + self._duplicate_csv_place = duplicate_csv_place + self._tmcf_file_place = tmcf_file_place + self._year = None + self._df = pd.DataFrame() + self._final_df_place = pd.DataFrame() + if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): + os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) + if not os.path.exists(os.path.dirname(self._csv_file_place)): + os.mkdir(os.path.dirname(self._csv_file_place)) + if not os.path.exists(os.path.dirname(self._duplicate_csv_place)): + os.mkdir(os.path.dirname(self._duplicate_csv_place)) + + def set_cleansed_csv_file_path(self, cleansed_csv_file_path: str) -> None: + self._cleaned_csv_file_path = cleansed_csv_file_path + + def set_mcf_file_path(self, mcf_file_path: str) -> None: + self._mcf_file_path = mcf_file_path + + def set_tmcf_file_path(self, tmcf_file_path: str) -> None: + self._tmcf_file_path = tmcf_file_path + + def set_tmcf_place_path(self, tmcf_file_place: str) -> None: + self._tmcf_file_place = tmcf_file_place + + def input_file_to_df(self, f_path: str) -> pd.DataFrame: + """Convert a file path to a dataframe.""" + with open(f_path, "r", encoding="UTF-8") as file: + lines = file.readlines() + # first six lines is data description and source we skip those + #assert all(lines[i] == '\n' for i in [1, 3, 5]) + # last seven lines is data legend and totals we skip those + #assert lines[-5].startswith('Data Source') + f_content = io.StringIO('\n'.join(lines[6:-5])) + return pd.read_csv(f_content) + + def _extract_year_from_headers(self, headers: list) -> str: + """Extracting year from the headers.""" + year_pattern = r"\[(District|((Private|Public) School))\](\s)(?P\d\d\d\d-\d\d)" + for header in headers: + match = re.search(year_pattern, header) + if match: + year = match.groupdict()["year"] + break + return year + + def _clean_data(self, raw_df: pd.DataFrame) -> pd.DataFrame: + """ + Extracts the required words using regex. + Args: + data_df (pd.DataFrame): _description_ + conf (dict): _description_ + curr_prop_column (str): _description_ + Returns: + raw_df: DataFrame + """ + regex_patterns = [(r'^=\"(.*)\"$', r'\1'), + (r'^-(-?)(\s?)([a-zA-Z0-9\s]*)(-?)$', r'\3')] + + for pattern, pos in regex_patterns: + raw_df = raw_df.replace(to_replace={re.compile(pattern): pos}, + regex=True) + + for col in ["Private School Name", "Public School Name"]: + if col in raw_df.columns.values.tolist(): + raw_df[col] = \ + raw_df[col].str.replace('"', '\'') + + return raw_df + + def _clean_columns(self, raw_df: pd.DataFrame) -> pd.DataFrame: + ''' + Extracts the required name from the column name + ex: 'State Name [Private School] Latest available year' -> 'State Name' + Args: + raw_df (pd.DataFrame): Input DataFrame + Returns: + raw_df (pd.DataFrame): cleaned header DataFrame + ''' + cleaned_columns = [] + for col in raw_df.columns.values.tolist(): + cleaned_columns.append( + col.split(self._split_headers_using_school_type)[0].strip()) + raw_df.columns = cleaned_columns + return raw_df + + def _apply_regex(self, data_df: pd.DataFrame, conf: dict, + curr_prop_column: str): + """ + Extracts the required words using regex. + Args: + data_df (pd.DataFrame): _description_ + conf (dict): _description_ + curr_prop_column (str): _description_ + Returns: + _type_: _description_ + """ + regex = conf.get("regex", False) + + if regex: + pattern = regex["pattern"] + 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].fillna( + 'None') + else: + data_df[curr_prop_column] = 'None' + return data_df + + def _generate_prop(self, + data_df: pd.DataFrame, + default_mcf_prop: list = None, + sv_prop_order: list = None, + node_configs: dict = None): + """ + Generate property columns in the dataframe data_df + Args: + data_df (pd.DataFrame): Input DataFrame + Returns: + _type_: _description_ + """ + for prop_, val_, format_ in default_mcf_prop: + data_df["prop_" + prop_] = format_((prop_, val_)) + + for prop_ in sv_prop_order: + if "prop_" + prop_ in data_df.columns.values.tolist(): + continue + + conf = node_configs[prop_] + data_df["curr_prop"] = prop_ + column = conf["column"] + curr_value_column = "prop_" + prop_ + + unique_rows = data_df.drop_duplicates(subset=[column]).reset_index( + drop=True) + unique_rows[curr_value_column] = unique_rows[column] + unique_rows = self._apply_regex(unique_rows, conf, + curr_value_column) + if conf.get("update_value", False): + unique_rows[curr_value_column] = unique_rows[ + curr_value_column].apply(conf["update_value"]) + + unique_rows[curr_value_column] = unique_rows[[ + "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) + curr_val_mapper = dict( + zip(unique_rows[column], unique_rows[curr_value_column])) + + data_df[curr_value_column] = data_df[column].map(curr_val_mapper) + return data_df + + def _generate_stat_vars(self, data_df: pd.DataFrame, prop_cols: str, + sv_node_column: str) -> pd.DataFrame: + """ + Generates statvars using property columns. + Args: + data_df (pd.DataFrame): Input DataFrame + prop_cols (str): property columns + Returns: + pd.DataFrame: DataFrame including statvar column + """ + + data_df[sv_node_column] = '{' + \ + data_df[prop_cols].apply( + lambda x: ','.join(x.dropna().astype(str)), + axis=1) + \ + '}' + + data_df[sv_node_column] = data_df[sv_node_column].apply(json.loads) + data_df['sv_name'] = data_df[sv_node_column].apply(get_statvar_dcid) + data_df["sv_name"] = np.where( + data_df["prop_measurementDenominator"].isin([np.nan]), + data_df["sv_name"], data_df["sv_name"].str.replace("Count", + "Percent", + n=1)) + data_df[sv_node_column] = data_df['sv_name'].apply(SV_NODE_FORMAT) + + 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'])) + + return (stat_var_with_dcs, stat_var_without_dcs) + + def _generate_mcf_data(self, data_df: pd.DataFrame, + prop_cols: list) -> pd.DataFrame: + ''' + Mapps the property according to the value from prop_conf file from + common folder. + Args: + data_df (pd.DataFrame): Input DataFrame + prop_cols (list): property columns + Returns: + mcf_mapper (dict): property mapped columns + data_df (pd.DataFrame): new mcf column which consists the dictionary + ''' + + data_df['mcf'] = \ + data_df[prop_cols].apply( + func=lambda x: '\n'.join(x.dropna()), + axis=1).str.replace('"', '') + mcf_mapper = dict(zip(data_df["all_prop"], data_df['mcf'])) + return mcf_mapper + + def _generate_stat_var_and_mcf(self, + data_df: pd.DataFrame, + sv_prop_order: list = None): + """ + Generates the stat vars. + Args: + data_df (_type_): _description_ + Returns: + _type_: _description_ + """ + + prop_cols = ["prop_" + col for col in sorted(sv_prop_order)] + + data_df["all_prop"] = "" + for col in prop_cols: + 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 = unique_props.replace('', np.nan) + if self._generate_statvars: + stat_var_with_dcs, stat_var_without_dcs = self._generate_stat_vars( + unique_props, prop_cols, sv_node_column) + prop_cols.insert(0, sv_node_column) + data_df["prop_node"] = data_df["all_prop"].map(stat_var_with_dcs) + data_df["sv_name"] = data_df["all_prop"].map(stat_var_without_dcs) + mcf_mapper = self._generate_mcf_data(unique_props, prop_cols) + data_df["mcf"] = data_df["all_prop"].map(mcf_mapper) + data_df = data_df.drop(columns=["all_prop"]).reset_index(drop=True) + data_df = data_df.drop(columns=prop_cols).reset_index(drop=True) + return data_df + + def _verify_year_uniqueness(self, headers: list) -> bool: + """ + Checks for particual year in the file which is being executed and + gives an error if any other 'year column' is being executed. + Args: + headers: list + Returns: + bool: _description_ + """ + year_pattern = r"\[(District|((Private|Public) School))\](\s)(?P\d\d\d\d-\d\d)" + year_match = True + for header in headers: + match = re.search(year_pattern, header) + if match: + year = match.groupdict()["year"] + if year != self._year: + year_match = False + print( + f"Column {header} is not for expectd year {self._year}") + return year_match + + def _transform_private_place(self): + """ + The Data for Place Entities is cleaned and written to a file. + """ + # Renaming column names in the dataframe. + self._final_df_place = self._final_df_place.rename( + columns=self._renaming_columns) + # Filling zip and county numbers upto 5 digits and adding prefixes. + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].astype( + str).str.zfill(5) + self._final_df_place['ZIP'] = "zip/" + self._final_df_place['ZIP'] + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].astype(str).str.zfill(5) + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].apply(lambda x: 'geoId/' + x if x != '' else '') + self._final_df_place[ + 'State_code'] = "geoId/" + self._final_df_place['State_code'] + + def add_leading_zero(text): + parts = text.split('/') + if len(parts) == 2 and len(parts[1]) == 1: + return f"{parts[0]}/0{parts[1]}" + else: + return text + + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].apply(add_leading_zero) + # 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) + self._final_df_place["ZIP4"] = np.where( + (self._final_df_place["ZIP4"].str.len() > 5), + (self._final_df_place["ZIP4"].str[:5] + '-' + + self._final_df_place["ZIP4"].str[5:]), + (self._final_df_place["ZIP4"])) + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].astype( + str) + " " + self._final_df_place["City"].astype(str) + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.title() + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].astype(str) + " " + self._final_df_place[ + 'State_Abbr'] + " " + self._final_df_place["ZIP4"].astype(str) + # List of columns to be considered under 'dcs' + col_to_dcs = [ + "School_Type", "School_Religion", "Coeducational", "Lowest_Grade", + "Highest_Grade", "SchoolGrade" + ] + for col in col_to_dcs: + self._final_df_place[col] = self._final_df_place[col].apply( + lambda x: 'dcs:' + str(x) if x != '' else '') + # Creating a unique list for zip and county + zip_list = list(pd.unique(self._final_df_place['ZIP'])) + county_list = list(pd.unique(self._final_df_place['County_code'])) + config = { + 'dc_api_batch_size': 200, + 'dc_api_retries': 3, + 'dc_api_retry_sec': 5, + 'dc_api_use_cache': False, + 'dc_api_root': None + } + # Passing the list through API call for checking its existance. + dcid_check_zip = dc_api_get_defined_dcids(zip_list, config) + dcid_check_county = dc_api_get_defined_dcids(county_list, config) + # Considering only the existing zip and county codes. + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].apply( + lambda x: x if dcid_check_zip[x] else '') + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].apply(lambda x: x if dcid_check_county[x] else '') + # 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'] + # Camel casing Physical Address and School Name. + + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.replace("Po Box", "PO Box") + self._final_df_place["Private_School_Name"] = np.where( + self._final_df_place["Private_School_Name"].str.len() <= 4, + 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.drop_duplicates( + subset=["school_state_code"]).reset_index(drop=True) + + def _transform_public_place(self): + """ + The Data for Place Entities is cleaned and written to a file. + """ + # 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. + self._final_df_place['School_Level'] = np.where( + self._final_df_place['School_Level_17'].isin([np.nan]), + self._final_df_place['School_Level_16'], + (self._final_df_place['School_Level_17'])) + # Restructing School District ID according Data Commons. + #self._final_df_place["State_District_ID"] = self._final_df_place["State_District_ID"].astype(str).str.zfill(12) + self._final_df_place["State_District_ID"] = \ + "geoId/sch" + self._final_df_place["State_District_ID"] + # List of columns to be considered under 'dcs' + col_to_dcs = [ + 'Lowest_Grade_Public', 'Highest_Grade_Public', 'Locale', + 'National_School_Lunch_Program', 'Magnet_School', 'Charter_School', + 'School_Type', 'Title_I_School_Status', 'State_District_ID', + 'School_Level' + ] + for col in col_to_dcs: + if col in self._final_df_place.columns.to_list(): + self._final_df_place[col] = self._final_df_place[col].replace( + to_replace={'': pd.NA}) + self._final_df_place[col] = "dcs:" + self._final_df_place[col] + # Adding prefixes to ZIP, State and County code. + self._final_df_place['ZIP'] = 'zip/' + self._final_df_place['ZIP'] + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].astype(str) + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].astype(str) + # 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['County_code'].astype(str).str[:2]), + (self._final_df_place["State_code"])) + + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].apply(lambda x: 'geoId/' + x if x != '' else '') + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].apply(lambda x: 'geoId/' + x if x != '' else '') + # Generates State code by mapping state abbrevation and USSTATE map + # to fill the empty values in the state code column. + self._final_df_place['State_code'] = np.where( + self._final_df_place['State_code'] == "", + (self._final_df_place['State_Abbr'].map(USSTATE_MAP)), + (self._final_df_place['State_code'])) + # Creating a unique list for zip,state and county. + zip_list = list(pd.unique((self._final_df_place['ZIP']))) + county_list = list(pd.unique(self._final_df_place['County_code'])) + state_list = list(pd.unique(self._final_df_place['State_code'])) + # removing empty values from the list which are from source. + if '' in county_list: + county_list.remove("") + if '' in state_list: + state_list.remove("") + + config = { + 'dc_api_batch_size': 200, + 'dc_api_retries': 3, + 'dc_api_retry_sec': 5, + 'dc_api_use_cache': False, + 'dc_api_root': None + } + # Passing the list through API call for checking its existance. + dcid_check_zip = dc_api_get_defined_dcids(zip_list, config) + dcid_check_county = dc_api_get_defined_dcids(county_list, config) + dcid_check_state = dc_api_get_defined_dcids(state_list, config) + # After passing through check, the empty values are assigned as False. + dcid_check_county[""] = False + dcid_check_state[""] = False + # Considering only the existing zip, state and county codes. + self._final_df_place['ZIP'] = self._final_df_place['ZIP'].apply( + lambda x: x if dcid_check_zip[x] else '') + + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].apply(lambda x: x if dcid_check_county[x] else '') + + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].apply(lambda x: x if dcid_check_state[x] else '') + # Reverse mapping State abbrevations from the current state_code + # column to combine Physical Address with State Abbrevation. + state_abbr = {v: k for k, v in USSTATE_MAP.items()} + self._final_df_place['Validated_State_Abbr'] = self._final_df_place[ + 'State_code'].replace(state_abbr) + # 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['ZIP'] = self._final_df_place['ZIP'].str.replace( + "zip/", "") + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"] + " " + self._final_df_place["City"] + # Camel casing Physical Address + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.title() + # Created a column School_Management for State Name as NCES_BureauOfIndianEducation + # and NCES_DepartmentOfDefenseEducationActivity as they are outlyin areas of United States. + self._final_df_place["School_Management"] = np.where( + self._final_df_place["State_Name"].str.contains( + "NCES_BureauOfIndianEducation|NCES_DepartmentOfDefenseEducationActivity" + ), self._final_df_place["State_Name"], '') + # Checking if state code is not null and respectively adding state + # abbrevation to physical address. + self._final_df_place["Physical_Address"] = np.where( + self._final_df_place['State_code'] == "", + (self._final_df_place["Physical_Address"]), + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["Validated_State_Abbr"])) + # Checking if ZIP4 is not null and respectively adding it + # to physical address. + self._final_df_place["Physical_Address"] = np.where( + self._final_df_place['Location_ZIP4'] == "", + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["ZIP"]), + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["ZIP"] + "-" + + self._final_df_place['Location_ZIP4'])) + + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.replace("Po Box", "PO BOX") + # Camel casing Public School Name and if the length of the school name + # is less than 4 then the school name remains the same. Most of them + # are abbrevations. + self._final_df_place["Public_School_Name"] = np.where( + self._final_df_place["Public_School_Name"].str.len() <= 4, + self._final_df_place["Public_School_Name"], + self._final_df_place["Public_School_Name"].astype(str).apply( + lambda x: x.title())) + # Sorting the values by descending order in year 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.drop_duplicates( + subset=["school_state_code"]).reset_index(drop=True) + + def _transform_district_place(self): + """ + The Data for Place Entities is cleaned and written to a file. + """ + 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) + # 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) + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].astype(str) + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].astype(str) + # 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['County_code'].astype(str).str[:2]), + (self._final_df_place["State_code"])) + + self._final_df_place['County_code'] = self._final_df_place[ + 'County_code'].apply(lambda x: 'geoId/' + x if x != '' else '') + self._final_df_place['State_code'] = self._final_df_place[ + 'State_code'].apply(lambda x: 'geoId/' + x if x != '' else '') + # Generates State code by mapping state abbrevation and USSTATE map + # to fill the empty values in the state code column. + self._final_df_place['State_code'] = np.where( + self._final_df_place['State_code'] == "", + (self._final_df_place['State_Abbr'].map(USSTATE_MAP)), + (self._final_df_place['State_code'])) + # Creating a unique list of Sate Code and removing null values from source. + state_list = list(pd.unique(self._final_df_place['State_code'])) + if '' in state_list: + state_list.remove("") + config = { + 'dc_api_batch_size': 200, + 'dc_api_retries': 3, + 'dc_api_retry_sec': 5, + 'dc_api_use_cache': False, + 'dc_api_root': None + } + dcid_check_state = dc_api_get_defined_dcids(state_list, config) + dcid_check_state[""] = False + # Generating a column for place property. + self._final_df_place['ContainedInPlace'] = self._final_df_place[ + 'State_code'].apply(lambda x: x if dcid_check_state[x] else '') + # Reverse mapping State abbrevations from the current state_code + # column to combine Physical Address with State Abbrevation. + state_abbr = {v: k for k, v in USSTATE_MAP.items()} + self._final_df_place['Validated_State_Abbr'] = self._final_df_place[ + 'State_code'].replace(state_abbr) + # Camel casing Physical Address + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"] + " " + self._final_df_place["City"] + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.title() + + self._final_df_place["Physical_Address"] = np.where( + self._final_df_place['ContainedInPlace'] == "", + (self._final_df_place["Physical_Address"]), + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["Validated_State_Abbr"])) + + self._final_df_place["Physical_Address"] = np.where( + self._final_df_place['Location_ZIP4'] == "", + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["ZIP"]), + (self._final_df_place["Physical_Address"] + " " + + self._final_df_place["ZIP"] + "-" + + self._final_df_place['Location_ZIP4'])) + self._final_df_place["Physical_Address"] = self._final_df_place[ + "Physical_Address"].str.replace("Po Box", "PO Box") + self._final_df_place["District_School_name"] = np.where( + self._final_df_place["District_School_name"].str.len() <= 4, + self._final_df_place["District_School_name"], + self._final_df_place["District_School_name"].str.title()) + # Created a column School_Management for State Name as NCES_BureauOfIndianEducation + # and NCES_DepartmentOfDefenseEducationActivity as they are outlyin areas of United States. + self._final_df_place["School_Management"] = np.where( + self._final_df_place["State_Name"].str.contains( + "NCES_BureauOfIndianEducation|NCES_DepartmentOfDefenseEducationActivity" + ), self._final_df_place["State_Name"], '') + + col_to_dcs = [ + 'Lowest_Grade_Dist', 'Highest_Grade_Dist', 'Locale', + 'ContainedInPlace' + ] + for col in col_to_dcs: + self._final_df_place[col] = self._final_df_place[col].replace( + 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) + + def _parse_file(self, raw_df: pd.DataFrame) -> pd.DataFrame: + ''' + This method combines and melts all the columns to one Final DataFrame. + The final dataframe consists the preferred columns based on place or + demographics data. + Args: + raw_df (pd.DataFrame): cleaned Dataframes + Returns: + pd.DataFrame + ''' + # Extracting year from the input file + self._year = self._extract_year_from_headers( + raw_df.columns.values.tolist()) + + # Checks for a different year column in the input file + year_check = self._verify_year_uniqueness( + raw_df.columns.values.tolist()) + if not year_check: + print( + f"Some columns in file are not of expected year {self._year} - correct the download config. Exiting.." + ) + exit() + + # Extracting the lower interval year as per DataCommons K12 Import + raw_df["year"] = self._year[0:4].strip() + + # Clean the data + df_cleaned = self._clean_data(raw_df) + + # Convert all columns to string and strip whitespaces + for col in df_cleaned.columns.values.tolist(): + df_cleaned[col] = df_cleaned[col].astype('str').str.strip() + + # Clean columns + df_cleaned = self._clean_columns(df_cleaned) + # Adding prefix to the SchoolID as per DataCommons + if self._import_name == "private_school": + df_cleaned["school_state_code"] = \ + "nces/" + df_cleaned["School ID - NCES Assigned"] + elif self._import_name == "public_school": + # Ensure School ID is formatted correctly with leading zeros + df_cleaned["School ID - NCES Assigned"] = df_cleaned[ + "School ID - NCES Assigned"].astype(str).str.zfill(12) + df_cleaned["school_state_code"] = "nces/" + df_cleaned[ + "School ID - NCES Assigned"] + 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"] + + # Consider only the required columns for Demographics + curr_cols = df_cleaned.columns.values.tolist() + data_cols = [] + for pattern in self._include_columns: + r = re.compile(pattern) + data_cols += list(filter(r.match, curr_cols)) + + # Consider only the required columns for Place Data + curr_place = curr_cols + data_place = [] + for pattern in self._include_col_place: + r = re.compile(pattern) + data_place += list(filter(r.match, curr_place)) + + # Create list of columns to check for null values + col_list = list(set([*data_cols, *data_place])) + + # Remove columns that are not required + drop_list = [ + item for item in col_list if item not in self._exclude_list + ] + + # Replace unreadable text values with NaN + df_cleaned = df_cleaned.replace(_UNREADABLE_TEXT) + + # Handle duplicate school IDs + df_duplicate = df_cleaned[df_cleaned.duplicated(subset=self._school_id)] + if df_duplicate.shape[0] >= 1: + df_duplicate.to_csv(self._duplicate_csv_place, + index=False, + mode='a', + header=False) + + # Drop rows where all required columns are null + df_cleaned = df_cleaned.dropna(how='all', subset=drop_list) + + # Select only the place data columns + df_place = df_cleaned[data_place] + + # Sort values by data columns + df_cleaned = df_cleaned.sort_values(by=data_cols, ascending=True) + + # Drop duplicates based on School ID + df_cleaned = df_cleaned.drop_duplicates(subset=self._school_id, + keep="first") + + if self._import_name in [ + "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 + + # 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) + + 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 + + if not self._generate_statvars: + return df_cleaned[data_cols] + # Melting all the columns to its respective observation. + df_cleaned = df_cleaned.melt(id_vars=['school_state_code', 'year'], + value_vars=data_cols, + var_name='sv_name', + value_name='observation') + + df_cleaned['observation'] = pd.to_numeric(df_cleaned['observation'], + errors='coerce') + # Dropping empty obsevation values. + df_cleaned["observation"] = df_cleaned["observation"].replace( + to_replace={'': pd.NA}) + df_cleaned = df_cleaned.drop( + df_cleaned[df_cleaned["observation"] < 0].index) + df_cleaned = df_cleaned.dropna(subset=['observation']) + + return df_cleaned + + def dropping_scalingFactor_unit(self, df: pd.DataFrame) -> pd.DataFrame: + ''' + Dropping the scalingFactor and unit for Pupil/Teacher Ratio variable. + The values are not multiples of 100. + Args: + raw_df (pd.DataFrame): cleaned Dataframes + Returns: + pd.DataFrame + ''' + df["scaling_factor"] = np.where( + df["sv_name"].str.contains( + "Percent_Student_AsAFractionOf_Count_Teacher"), '', + df["scaling_factor"]) + df["unit"] = np.where( + df["sv_name"].str.contains( + "Percent_Student_AsAFractionOf_Count_Teacher"), '', df["unit"]) + return df + + def generate_csv(self) -> pd.DataFrame: + """ + This Method calls the required methods to generate + cleaned CSV, MCF, and TMCF file. + + Args: + None + + Returns: + pd.DataFrame + """ + + dfs = [] + df_parsed = None + if self._generate_statvars: + df_merged = pd.DataFrame(columns=[ + "school_state_code", "year", "sv_name", "observation", + "scaling_factor", "unit" + ]) + df_merged.to_csv(self._cleaned_csv_file_path, index=False) + c = 0 + unique_sv_names = [] + city_dict = {} + for input_file in sorted(self._input_files): + c += 1 + print(f"{c} - {os.path.basename(input_file)}") + + raw_df = self.input_file_to_df(input_file) + df_parsed = self._parse_file(raw_df) + if df_parsed.shape[0] > 0: + if self._generate_statvars: + df_parsed = df_parsed.sort_values( + by=["year", "sv_name", "school_state_code"]) + df_parsed = self._generate_prop(df_parsed, + DF_DEFAULT_MCF_PROP, + 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") + # 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( + df_parsed["sv_name"].str.contains("Percent"), + "dcs:Percent", '') + df_clean = self.dropping_scalingFactor_unit(df_parsed) + df_final = df_clean[[ + "school_state_code", "year", "sv_name", "observation", + "scaling_factor", "unit" + ]] + # Dropping Duplicates and writing to a file + df_final.drop_duplicates(inplace=True) + df_final.to_csv(self._cleaned_csv_file_path, + header=False, + index=False, + mode='a') + # The column unique SVs are extracted for MCF properties. + df_parsed = df_parsed.drop_duplicates( + subset=["sv_name"]).reset_index(drop=True) + curr_sv_names = df_parsed["sv_name"].values.tolist() + new_sv_names = list( + set(curr_sv_names) - set(unique_sv_names)) + unique_sv_names = unique_sv_names + new_sv_names + + df_parsed = df_parsed[df_parsed["sv_name"].isin( + new_sv_names)].reset_index(drop=False) + dfs.append(df_parsed) + # Based on the import_name, the place data is executed and written to a + # file. + if self._import_name == "private_school": + self._transform_private_place() + self._final_df_place.to_csv(self._csv_file_place, + index=False, + quoting=csv.QUOTE_NONNUMERIC) + for Physical_Address, group in self._final_df_place.groupby( + 'Physical_Address'): + if len(group) > 1: + city_dict[Physical_Address] = group[ + 'school_state_code'].tolist() + + if self._import_name == "district_school": + self._transform_district_place() + self._final_df_place.to_csv(self._csv_file_place, + index=False, + quoting=csv.QUOTE_NONNUMERIC) + + if self._import_name == "public_school": + self._transform_public_place() + self._final_df_place.to_csv(self._csv_file_place, + index=False, + quoting=csv.QUOTE_NONNUMERIC) + + df_merged = pd.DataFrame() + for df in dfs: + df_merged = pd.concat([df_merged, df]) + self._df = df_merged + + def generate_mcf(self) -> None: + """ + This method generates MCF file w.r.t + dataframe headers and defined MCF template + Args: + sv_list (list) : List of DataFrame Columns + + Returns: + None + """ + if self._generate_statvars: + 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() + else: + mcf_ = self._df["mcf"].tolist() + + f_deno = [] + for dcnode in mcf_: + deno_matched = re.findall("(Node: dcid:)(\w+)", dcnode)[0][1] + f_deno.append(deno_matched) + # Passes the Node through check_dcid_existance to check if the SV is + # already existing. + node_status = check_dcid_existence(f_deno) + f_deno = [] + for dcnode in mcf_: + deno_matched = re.findall("(Node: dcid:)(\w+)", dcnode)[0][1] + status = node_status[deno_matched] + if not status: + f_deno.append(dcnode) + + mcf_ = "\n\n".join(f_deno) + with open(self._mcf_file_path, "w", encoding="UTF-8") as file: + file.write(mcf_) + + def generate_tmcf(self) -> None: + """ + This method generates TMCF file w.r.t + dataframe headers and defined TMCF template. + Args: + None + + Returns: + None + """ + + 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')) + + # Generating tmcf file for NCES place entities based on the import name. + if self._import_name == "private_school": + with open(self._tmcf_file_place, 'w+', encoding='utf-8') as f_out: + f_out.write(TMCF_TEMPLATE_PLACE_PRIVATE.rstrip('\n')) + + if self._import_name == "district_school": + with open(self._tmcf_file_place, 'w+', encoding='utf-8') as f_out: + f_out.write(TMCF_TEMPLATE_PLACE_DISTRICT.rstrip('\n')) + + if self._import_name == "public_school": + with open(self._tmcf_file_place, 'w+', encoding='utf-8') as f_out: + f_out.write(TMCF_TEMPLATE_PLACE_PUBLIC.rstrip('\n')) diff --git a/scripts/us_nces/demographics/download.py b/scripts/us_nces/demographics/download.py new file mode 100644 index 000000000..123975ab6 --- /dev/null +++ b/scripts/us_nces/demographics/download.py @@ -0,0 +1,201 @@ +import functools +import io +import json +from absl import logging +import zipfile +import requests +import time +from absl import app, flags +from bs4 import BeautifulSoup + +from download_config import COLUMNS_SELECTOR_URL +from download_config import COMPRESS_FILE_URL +from download_config import DOWNLOAD_URL +from download_config import COLUMNS_SELECTOR +from download_config import COMPRESS_FILE +from download_config import HEADERS +from download_config import COLUMNS_TO_DOWNLOAD_WITH_SINGLE_API_CALL +from download_config import MAX_RETRIES +from download_config import RETRY_SLEEP_SECS +from download_config import YEAR_PAYLOAD, YEAR_URL +from download_files_details import DEFAULT_COLUMNS_SELECTED +from download_files_details import KEY_COLUMNS_PUBLIC, PUBLIC_COLUMNS +from download_files_details import KEY_COLUMNS_PRIVATE, PRIVATE_COLUMNS +from download_files_details import KEY_COLUMNS_DISTRICT, DISTRICT_COLUMNS, PUBLIC_2017, DISTRICT_2017 +import fetch_ncid + +_FLAGS = flags.FLAGS +flags.DEFINE_enum("import_name", None, + ["PublicSchool", "PrivateSchool", "District"], + "Import name for which input files to be downloaded") +flags.DEFINE_list("years_to_download", None, + "Years for which file has to be downloaded") +flags.mark_flag_as_required("import_name") + + +def _call_export_csv_api(school: str, year: str, columns: list) -> str: + COLUMNS_SELECTOR["lColumnsSelected"] = DEFAULT_COLUMNS_SELECTED + columns + COLUMNS_SELECTOR["sLevel"] = school + COLUMNS_SELECTOR["lYearsSelected"] = [year] + json_value = COLUMNS_SELECTOR + response = requests.post(url=COLUMNS_SELECTOR_URL, + json=COLUMNS_SELECTOR, + headers=HEADERS) + if response.status_code == 200: + src_file_name = json.loads(response.text)['d'] + logging.info( + f"CSV export successful for {school} - {year} - {src_file_name}") + return src_file_name + else: + logging.error( + f"CSV export failed with status code: {response.status_code}") + return None + + +def retry(f): + """Wrap a function so that the function is retried automatically.""" + + @functools.wraps(f) + def wrapped(*args, **kwargs): + attempt = 1 + while attempt <= MAX_RETRIES: + try: + return f(*args, **kwargs) + except Exception: + attempt += 1 + if attempt <= MAX_RETRIES: + logging.warning( + f'Retrying in {RETRY_SLEEP_SECS} seconds: attempt {attempt} of {MAX_RETRIES}' + ) + time.sleep(RETRY_SLEEP_SECS) + else: + logging.error( + f'Execution failed after {MAX_RETRIES} retries for {args}' + ) + raise + + return wrapped + + +def _call_compress_api(file_name: str) -> str: + COMPRESS_FILE["sFileName"] = file_name + response = requests.post(url=COMPRESS_FILE_URL, + json=COMPRESS_FILE, + headers=HEADERS) + if response.status_code == 200: + compressed_src_file = json.loads(response.text)['d'][0] + logging.info(f"File compression successful: {compressed_src_file}") + return compressed_src_file + else: + logging.error( + f"File compression failed with status code: {response.status_code}") + return None + + +def _call_download_api(compressed_src_file: str, year: str) -> int: + res = requests.get(url=DOWNLOAD_URL.format( + compressed_src_file=compressed_src_file)) + if res.status_code == 200: + logging.info(f"API success for downloading file for year {year}") + with zipfile.ZipFile(io.BytesIO(res.content)) as zipfileout: + if _FLAGS.import_name == "PrivateSchool": + zipfileout.extractall(f"private_school/input_files") + elif _FLAGS.import_name == "District": + zipfileout.extractall(f"school_district/input_files") + elif _FLAGS.import_name == "PublicSchool": + zipfileout.extractall(f"public_school/input_files") + return 0 + else: + logging.error( + f"Download failed with status code: {res.status_code} for year {year}" + ) + return 1 + + +def get_year_list(school): + YEAR_PAYLOAD["sLevel"] = school + response = requests.post(YEAR_URL, + headers=HEADERS, + data=json.dumps(YEAR_PAYLOAD)) + years_to_download = [] + if response.status_code == 200: + data = response.json() + html_content = f"""{data}""" + soup = BeautifulSoup(html_content, 'html.parser') + for input_tag in soup.find_all('input', {'type': 'checkbox'}): + year = input_tag['value'] + years_to_download.append(year) + else: + logging.error( + f"Failed to retrieve years with status code: {response.status_code}" + ) + if school == "PublicSchool" or school == "District": + years_to_download = [y for y in years_to_download if int(y) >= 2010] + return years_to_download + + +def main(_): + logging.info(f"Downloading files for import {_FLAGS.import_name}") + school = _FLAGS.import_name + years_to_download = get_year_list(school) + if school == "PublicSchool": + primary_key = KEY_COLUMNS_PUBLIC + column_names = PUBLIC_COLUMNS + elif school == "PrivateSchool": + primary_key = KEY_COLUMNS_PRIVATE + column_names = PRIVATE_COLUMNS + elif school == "District": + primary_key = KEY_COLUMNS_DISTRICT + column_names = DISTRICT_COLUMNS + for year in years_to_download: + # fecthing 2017column id's from config file for PublicSchool and District + # as id is not listed in the website as expected + if year == "2017" and school == "PublicSchool": + id_list = PUBLIC_2017 + elif year == "2017" and school == "District": + id_list = DISTRICT_2017 + else: + id_list = fetch_ncid.fetch_school_ncid(school, year, column_names) + index_columns_selected = 0 + COLUMNS_TO_DOWNLOAD = id_list + total_columns_to_download = len(COLUMNS_TO_DOWNLOAD) + while index_columns_selected < total_columns_to_download: + start_idx = index_columns_selected + remaining_columns_to_select = total_columns_to_download - index_columns_selected + end_idx = index_columns_selected + min( + remaining_columns_to_select, + COLUMNS_TO_DOWNLOAD_WITH_SINGLE_API_CALL) + curr_columns_selected = COLUMNS_TO_DOWNLOAD[start_idx:end_idx] + if primary_key[0] not in curr_columns_selected: + curr_columns_selected.append(primary_key[0]) + index_columns_selected += min( + remaining_columns_to_select, + COLUMNS_TO_DOWNLOAD_WITH_SINGLE_API_CALL) + + logging.info( + f"{school} - {year} - {index_columns_selected} columns out of {total_columns_to_download}" + ) + + nces_elsi_file_download(school, year, curr_columns_selected) + logging.info(f"Download complete for year {year}") + + +@retry +def nces_elsi_file_download(school, year, curr_columns_selected): + file_name = _call_export_csv_api(school, year, curr_columns_selected) + if file_name is None: + raise Exception(f"Export to CSV failed for {school} - {year}") + else: + logging.info(f"Compressing output CSV: {file_name}") + compressed_file_path = _call_compress_api(file_name) + if compressed_file_path is None: + raise Exception(f"Compress file failed for {file_name}") + else: + logging.info(f"Downloading the compressed file for {year}") + download_ret = _call_download_api(compressed_file_path, year) + if download_ret != 0: + raise Exception(f"Download failed for {file_name}") + + +if __name__ == "__main__": + app.run(main) diff --git a/scripts/us_nces/demographics/download_config.py b/scripts/us_nces/demographics/download_config.py new file mode 100644 index 000000000..3aaf8ffc3 --- /dev/null +++ b/scripts/us_nces/demographics/download_config.py @@ -0,0 +1,41 @@ +HEADERS = {'content-type': 'application/json'} + +COLUMNS_SELECTOR_URL = "https://nces.ed.gov/ccd/elsi/export.aspx/ExportToCSV" + +COLUMNS_SELECTOR = { + "sSection": "tableGenerator", + "sZipCode": "", + "sZipMiles": "", + "sState": "", + "sCountyValue": "", + "sDistrictValue": "", + "sTableTitle": "", + "sTableID": "", + "sState": "", + "sLevel": None, + "sYear": "", + "lYearsSelected": None, + "lColumnsSelected": None, + "lFilterNames": [["State", "Static"]], + "lFilterData": [["allplus"]], + "lFilterYears": [[]], + "lFilterMasterData": [[]], + "lFilterTitles": ["State"], + "sGroupByColumn": "0", + "sNYCMerged": "false" +} + +COMPRESS_FILE_URL = "https://nces.ed.gov/ccd/elsi/export.aspx/CompressFile" + +COMPRESS_FILE = {"sFileName": None} + +DOWNLOAD_URL = 'https://nces.ed.gov/{compressed_src_file}' + +YEAR_URL = "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx/GetTableGeneratorYearList" + +YEAR_PAYLOAD = {'sLevel': '{school_type}'} + +COLUMNS_TO_DOWNLOAD_WITH_SINGLE_API_CALL = 59 + +MAX_RETRIES = 5 +RETRY_SLEEP_SECS = 3 diff --git a/scripts/us_nces/demographics/download_files_details.py b/scripts/us_nces/demographics/download_files_details.py new file mode 100644 index 000000000..c6231fa3f --- /dev/null +++ b/scripts/us_nces/demographics/download_files_details.py @@ -0,0 +1,1081 @@ +# This is a radio button selection and the key words are as per the website +SCHOOL = ["PublicSchool"] +DISTRICT_2017 = [ + '9560', '32651', '13393', '32618', '16661', '32628', '32629', '32631', + '32632', '32622', '32645', '32642', '32643', '32619', '32635', '32636', + '32603', '33079', '32664', '32665', '32666', '32667', '32668', '32669', + '32670', '32671', '32672', '32673', '32674', '32675', '32676', '32677', + '32678', '32679', '33077', '32615', '33078', '32662', '32663', '33025', + '33026', '33027', '33028', '33029', '33030', '33031', '33032', '33033', + '33034', '33035', '33036', '33037', '33038', '33039', '33040', '33041', + '33042', '33043', '33044', '33045', '33046', '32680', '32681', '32682', + '32683', '32684', '32685', '32686', '32687', '32688', '32689', '32690', + '32691', '32692', '32693', '32694', '32695', '32696', '32697', '32698', + '32699', '32700', '32701', '32702', '32703', '32704', '32705', '32706', + '32707', '36149', '36150', '32708', '32709', '36151', '36152', '32710', + '32711', '32712', '32713', '32714', '32715', '32716', '32717', '32718', + '32719', '32720', '32721', '32722', '32723', '32724', '32725', '32726', + '32727', '32728', '32729', '32730', '32731', '32732', '32733', '32734', + '32735', '32736', '32737', '32738', '32739', '32740', '32741', '32742', + '32743', '32744', '32745', '32746', '32747', '32748', '32749', '32750', + '32751', '32752', '32753', '32754', '32755', '32756', '32757', '32758', + '32759', '32760', '32761', '32762', '32763', '32764', '32765', '32766', + '32767', '32768', '32769', '32770', '32771', '32772', '32773', '32774', + '32775', '32776', '32777', '32778', '32779', '32780', '32781', '32782', + '32783', '32784', '32785', '32786', '32787', '32788', '32789', '32790', + '32791', '32792', '32793', '32794', '32795', '32796', '32797', '32798', + '32799', '32800', '32801', '32802', '32803', '32804', '32805', '32806', + '32807', '36153', '36154', '36155', '36156', '36157', '36158', '32808', + '32809', '32810', '32811', '32813', '32812', '32814', '36160', '36161', + '36162', '36163', '36164', '36165', '36166', '36159', '32815', '32816', + '32817', '32818', '32819', '32820', '32821', '32822', '32823', '32824', + '32825', '32826', '32827', '32828', '32829', '32830', '32831', '32832', + '32833', '32834', '32835', '32836', '32837', '32838', '32839', '32840', + '32841', '32842', '32843', '32844', '32845', '32846', '32847', '32848', + '32849', '32850', '32851', '32852', '32853', '32854', '32855', '32856', + '32857', '32858', '32859', '32860', '32861', '32862', '32863', '32864', + '32865', '32866', '32867', '32868', '32869', '32870', '32871', '32872', + '32873', '32874', '32875', '32876', '32877', '32878', '32879', '32880', + '32881', '32882', '32883', '32884', '32885', '32886', '32887', '32888', + '32889', '32890', '32891', '32892', '32893', '32894', '32895', '32896', + '32897', '32898', '32899', '32900', '32901', '32902', '32903', '32904', + '32905', '32906', '32907', '32908', '32909', '32910', '32911', '32912', + '32913', '32914', '32915', '32916', '32917', '32918', '32919', '32920', + '32921', '32922', '32923', '32924', '32925', '32926', '32927', '32928', + '32929', '32930', '32931', '32932', '32933', '32934', '32935', '32936', + '32937', '32938', '32939', '32940', '32941', '32942', '32943', '32944', + '32945', '32946', '32947', '32948', '32949', '32950', '32951', '32952', + '32953', '32954', '32955', '32956', '32957', '32958', '32959', '32960', + '32961', '32962', '32963', '32964', '32965', '32966', '32967', '32968', + '32969', '32970', '32971', '32972', '32973', '32974', '32975', '32976', + '32977', '32978', '32979', '32980', '32981', '32982', '32983', '32984', + '32985', '32986', '32987', '32988', '32989', '32990', '32991', '32992', + '32993', '32994', '32995', '32996', '32997', '32998', '32999', '33000', + '33001', '33002', '33003', '33004', '33005', '33006', '33007', '33008', + '33009', '33010', '36167', '36168', '36169', '36170', '36171', '36172', + '36173', '36174', '36175', '36176', '36177', '36178', '36179', '36180', + '33011', '33012', '33013', '33014', '33015', '33016', '33017', '33018', + '33019', '33020', '33021', '33022', '33023', '33024', '36181', '36182', + '36183', '36184', '36185', '36186', '36187', '36188', '36189', '36190', + '36191', '36192', '36193', '36194', '32614', '32641', '32605', '32597', + '32596', '32610', '32616', '32634', '32593', '32594', '32595', '32609', + '32654', '32613', '32601', '32602', '32598', '32599', '32607', '32608', + '32612', '32604' +] +PUBLIC_2017 = [ + '33535', '13403', '33081', '13392', '33085', '15188', '33402', '16662', + '33316', '33317', '33319', '33320', '33310', '33321', '33082', '33086', + '33405', '33531', '33399', '33400', '33114', '33538', '33309', '33084', + '33083', '33106', '33552', '33090', '33558', '33109', '33111', '33409', + '33410', '33107', '33105', '33092', '33093', '33094', '33095', '33096', + '33097', '33098', '33099', '33100', '33101', '33102', '33103', '33550', + '33112', '33551', '33397', '33398', '33087', '33088', '33104', '33089', + '33113', '33462', '33414', '33110', '33268', '33269', '33270', '33271', + '33273', '33274', '33275', '33276', '33277', '33493', '33494', '33445', + '33446', '33281', '33282', '33308', '33283', '33284', '33285', '33286', + '33287', '33288', '33289', '33290', '33291', '33292', '33293', '33294', + '33295', '33296', '33297', '33298', '33299', '33300', '33301', '33302', + '33303', '33304', '33305', '33306', '33307', '36032', '36033', '33279', + '33280', '36016', '36017', '33322', '33323', '33324', '33325', '33326', + '33495', '33447', '33327', '33328', '33329', '33330', '33331', '33496', + '33448', '33332', '33333', '33334', '33335', '33336', '33497', '33449', + '33337', '33338', '33339', '33340', '33341', '33498', '33450', '33342', + '33343', '33344', '33345', '33346', '33499', '33451', '33347', '33348', + '33349', '33350', '33351', '33500', '33452', '33352', '33353', '33354', + '33355', '33356', '33501', '33453', '33357', '33358', '33359', '33360', + '33361', '33502', '33454', '33362', '33363', '33364', '33365', '33366', + '33503', '33455', '33367', '33368', '33369', '33370', '33371', '33504', + '33456', '33372', '33373', '33374', '33375', '33376', '33505', '33457', + '33377', '33378', '33379', '33380', '33381', '33506', '33458', '33382', + '33383', '33384', '33385', '33386', '33507', '33459', '33387', '33388', + '33389', '33390', '33391', '33508', '33460', '36018', '36019', '36020', + '36021', '36022', '36023', '36024', '33392', '33393', '33394', '33395', + '33396', '33509', '33461', '36025', '36026', '36027', '36028', '36029', + '36030', '36031', '33118', '33119', '33120', '33121', '33122', '33123', + '33124', '33125', '33126', '33127', '33463', '33464', '33415', '33416', + '33128', '33129', '33130', '33131', '33132', '33133', '33134', '33135', + '33136', '33137', '33465', '33466', '33417', '33418', '33138', '33139', + '33140', '33141', '33142', '33143', '33144', '33145', '33146', '33147', + '33467', '33468', '33419', '33420', '33148', '33149', '33150', '33151', + '33152', '33153', '33154', '33155', '33156', '33157', '33469', '33470', + '33421', '33422', '33158', '33159', '33160', '33161', '33162', '33163', + '33164', '33165', '33166', '33167', '33471', '33472', '33423', '33424', + '33168', '33169', '33170', '33171', '33172', '33173', '33174', '33175', + '33176', '33177', '33473', '33474', '33425', '33426', '33178', '33179', + '33180', '33181', '33182', '33183', '33184', '33185', '33186', '33187', + '33475', '33476', '33427', '33428', '33188', '33189', '33190', '33191', + '33192', '33193', '33194', '33195', '33196', '33197', '33477', '33478', + '33429', '33430', '33198', '33199', '33200', '33201', '33202', '33203', + '33204', '33205', '33206', '33207', '33479', '33480', '33431', '33432', + '33208', '33209', '33210', '33211', '33212', '33213', '33214', '33215', + '33216', '33217', '33481', '33482', '33433', '33434', '33218', '33219', + '33220', '33221', '33222', '33223', '33224', '33225', '33226', '33227', + '33483', '33484', '33435', '33436', '33228', '33229', '33230', '33231', + '33232', '33233', '33234', '33235', '33236', '33237', '33485', '33486', + '33437', '33438', '33238', '33239', '33240', '33241', '33242', '33243', + '33244', '33245', '33246', '33247', '33487', '33488', '33439', '33440', + '33248', '33249', '33250', '33251', '33252', '33253', '33254', '33255', + '33256', '33257', '33489', '33490', '33441', '33442', '35885', '35886', + '35887', '35888', '35889', '35890', '35891', '35892', '35893', '35894', + '35895', '35896', '35897', '35898', '33258', '33259', '33260', '33261', + '33262', '33263', '33264', '33265', '33266', '33267', '33491', '33492', + '33443', '33444', '35899', '35900', '35901', '35902', '35903', '35904', + '35905', '35906', '35907', '35908', '35909', '35910', '35911', '35912', + '33091', '33108' +] + +# Default columns selected for the data export. +DEFAULT_COLUMNS_SELECTED = ["staticName", "defaultName"] + +# List of columns specifically for Public Schools data export. +PRIVATE_COLUMNS = [ + "State Name [Private School]", "ANSI/FIPS State Code [Private School]", + "Private School Name [Private School]", + "School ID - NCES Assigned [Private School]", + "County Name [Private School]", "ANSI/FIPS County Code [Private School]", + "Phone Number [Private School]", "Physical Address [Private School]", + "City [Private School]", "ZIP [Private School]", "ZIP + 4 [Private School]", + "Lowest Grade Taught [Private School]", + "Highest Grade Taught [Private School]", "Coeducational [Private School]", + "School Type [Private School]", "School Level [Private School]", + "School's Religious Affiliation or Orientation [Private School]", + "School Community Type [Private School]", + "Total Students (Ungraded & PK-12) [Private School]", + "Total Students (Ungraded & K-12) [Private School]", + "Prekindergarten and Kindergarten Students [Private School]", + "Grades 1-8 Students [Private School]", + "Grades 9-12 Students [Private School]", + "Prekindergarten Students [Private School]", + "Kindergarten Students [Private School]", + "Grade 1 Students [Private School]", "Grade 2 Students [Private School]", + "Grade 3 Students [Private School]", "Grade 4 Students [Private School]", + "Grade 5 Students [Private School]", "Grade 6 Students [Private School]", + "Grade 7 Students [Private School]", "Grade 8 Students [Private School]", + "Grade 9 Students [Private School]", "Grade 10 Students [Private School]", + "Grade 11 Students [Private School]", "Grade 12 Students [Private School]", + "Ungraded Students [Private School]", + "Pupil/Teacher Ratio [Private School]", + "Full-Time Equivalent (FTE) Teachers [Private School]", + "American Indian/Alaska Native Students [Private School]", + "Percentage of American Indian/Alaska Native Students [Private School]", + "Asian or Asian/Pacific Islander Students [Private School]", + "Percentage of Asian or Asian/Pacific Islander Students [Private School]", + "Hispanic Students [Private School]", + "Percentage of Hispanic Students [Private School]", + "Black or African American Students [Private School]", + "Percentage of Black Students [Private School]", + "White Students [Private School]", + "Percentage of White Students [Private School]", + "Nat. Hawaiian or Other Pacific Isl. Students [Private School]", + "Percentage of Nat. Hawaiian or Other Pacific Isl. Students [Private School]", + "Two or More Races Students [Private School]", + "Percentage of Two or More Races Students [Private School]", + "State Abbr [Private School]", "Religious Orientation [Private School]" +] + +PUBLIC_COLUMNS = [ + "State Name [Public School]", "State Abbr [Public School]", + "School Name [Public School]", "School ID - NCES Assigned [Public School]", + "Agency Name [Public School]", "Agency ID - NCES Assigned [Public School]", + "County Number [Public School]", "ANSI/FIPS State Code [Public School]", + "Location Address 1 [Public School]", "Location City [Public School]", + "Location ZIP [Public School]", "Location ZIP4 [Public School]", + "Phone Number [Public School]", + "National School Lunch Program [Public School]", + "Magnet School [Public School]", "State School ID [Public School]", + "School Type [Public School]", "Title I School Status [Public School]", + "Charter School [Public School]", "Locale [Public School]", + "Latitude [Public School]", "Longitude [Public School]", + "Lowest Grade Offered [Public School]", + "Highest Grade Offered [Public School]", + "School Level (SY 2017-18 onward) [Public School]", + "School Level [Public School]", + "Total Students, All Grades (Excludes AE) [Public School]", + "Total Students, All Grades (Includes AE) [Public School]", + "Free Lunch Eligible [Public School]", + "Direct Certification [Public School]", + "Reduced-price Lunch Eligible Students [Public School]", + "Free and Reduced Lunch Students [Public School]", + "Grades 1-8 Students [Public School]", + "Grades 9-12 Students [Public School]", + "Prekindergarten Students [Public School]", + "Kindergarten Students [Public School]", "Grade 1 Students [Public School]", + "Grade 2 Students [Public School]", "Grade 3 Students [Public School]", + "Grade 4 Students [Public School]", "Grade 5 Students [Public School]", + "Grade 6 Students [Public School]", "Grade 7 Students [Public School]", + "Grade 8 Students [Public School]", "Grade 9 Students [Public School]", + "Grade 10 Students [Public School]", "Grade 11 Students [Public School]", + "Grade 12 Students [Public School]", "Grade 13 Students [Public School]", + "Ungraded Students [Public School]", + "Adult Education Students [Public School]", "Male Students [Public School]", + "Female Students [Public School]", + "American Indian/Alaska Native Students [Public School]", + "Asian or Asian/Pacific Islander Students [Public School]", + "Hispanic Students [Public School]", + "Black or African American Students [Public School]", + "White Students [Public School]", + "Nat. Hawaiian or Other Pacific Isl. Students [Public School]", + "Two or More Races Students [Public School]", + "Total Race/Ethnicity [Public School]", + "American Indian/Alaska Native - male [Public School]", + "American Indian/Alaska Native - female [Public School]", + "Asian or Asian/Pacific Islander - male [Public School]", + "Asian or Asian/Pacific Islander - female [Public School]", + "Hispanic - female [Public School]", "Hispanic - male [Public School]", + "Black or African American - male [Public School]", + "Black or African American - female [Public School]", + "White - male [Public School]", "White - female [Public School]", + "Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Two or More Races - male [Public School]", + "Two or More Races - female [Public School]", + "Prekindergarten Students - male [Public School]", + "Prekindergarten Students - female [Public School]", + "Kindergarten Students - male [Public School]", + "Kindergarten Students - female [Public School]", + "Grade 1 Students - male [Public School]", + "Grade 1 Students - female [Public School]", + "Grade 2 Students - male [Public School]", + "Grade 2 Students - female [Public School]", + "Grade 3 Students - male [Public School]", + "Grade 3 Students - female [Public School]", + "Grade 4 Students - male [Public School]", + "Grade 4 Students - female [Public School]", + "Grade 5 Students - male [Public School]", + "Grade 5 Students - female [Public School]", + "Grade 6 Students - male [Public School]", + "Grade 6 Students - female [Public School]", + "Grade 7 Students - male [Public School]", + "Grade 7 Students - female [Public School]", + "Grade 8 Students - male [Public School]", + "Grade 8 Students - female [Public School]", + "Grade 9 Students - male [Public School]", + "Grade 9 Students - female [Public School]", + "Grade 10 Students - male [Public School]", + "Grade 10 Students - female [Public School]", + "Grade 11 Students - male [Public School]", + "Grade 11 Students - female [Public School]", + "Grade 12 Students - male [Public School]", + "Grade 12 Students - female [Public School]", + "Grade 13 Students - male [Public School]", + "Grade 13 Students - female [Public School]", + "Ungraded Students - male [Public School]", + "Ungraded Students - female [Public School]", + "Adult Education Students - male [Public School]", + "Adult Education Students - female [Public School]", + "Prekindergarten Students - American Indian/Alaska Native [Public School]", + "Prekindergarten Students - Asian or Asian/Pacific Islander [Public School]", + "Prekindergarten Students - Hispanic [Public School]", + "Prekindergarten Students - Black or African American [Public School]", + "Prekindergarten Students - White [Public School]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Prekindergarten Students, Two or More Races [Public School]", + "Kindergarten Students - American Indian/Alaska Native [Public School]", + "Kindergarten Students - Asian or Asian/Pacific Islander [Public School]", + "Kindergarten Students - Hispanic [Public School]", + "Kindergarten Students - Black or African American [Public School]", + "Kindergarten Students, White [Public School]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Kindergarten Students, Two or More Races [Public School]", + "Grade 1 Students - American Indian/Alaska Native [Public School]", + "Grade 1 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 1 Students - Hispanic [Public School]", + "Grade 1 Students - Black or African American [Public School]", + "Grade 1 Students - White [Public School]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 1 Students - Two or More Races [Public School]", + "Grade 2 Students - American Indian/Alaska Native [Public School]", + "Grade 2 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 2 Students - Hispanic [Public School]", + "Grade 2 Students - Black or African American [Public School]", + "Grade 2 Students - White [Public School]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 2 Students - Two or More Races [Public School]", + "Grade 3 Students - American Indian/Alaska Native [Public School]", + "Grade 3 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 3 Students - Hispanic [Public School]", + "Grade 3 Students - Black or African American [Public School]", + "Grade 3 Students - White [Public School]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 3 Students - Two or More Races [Public School]", + "Grade 4 Students - American Indian/Alaska Native [Public School]", + "Grade 4 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 4 Students - Hispanic [Public School]", + "Grade 4 Students - Black or African American [Public School]", + "Grade 4 Students - White [Public School]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 4 Students - Two or More Races [Public School]", + "Grade 5 Students - American Indian/Alaska Native [Public School]", + "Grade 5 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 5 Students - Hispanic [Public School]", + "Grade 5 Students - Black or African American [Public School]", + "Grade 5 Students - White [Public School]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 5 Students - Two or More Races [Public School]", + "Grade 6 Students - American Indian/Alaska Native [Public School]", + "Grade 6 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 6 Students - Hispanic [Public School]", + "Grade 6 Students - Black or African American [Public School]", + "Grade 6 Students - White [Public School]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 6 Students - Two or More Races [Public School]", + "Grade 7 Students - American Indian/Alaska Native [Public School]", + "Grade 7 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 7 Students - Hispanic [Public School]", + "Grade 7 Students - Black or African American [Public School]", + "Grade 7 Students - White [Public School]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 7 Students - Two or More Races [Public School]", + "Grade 8 Students - American Indian/Alaska Native [Public School]", + "Grade 8 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 8 Students - Hispanic [Public School]", + "Grade 8 Students - Black or African American [Public School]", + "Grade 8 Students - White [Public School]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 8 Students - Two or More Races [Public School]", + "Grade 9 Students - American Indian/Alaska Native [Public School]", + "Grade 9 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 9 Students - Hispanic [Public School]", + "Grade 9 Students - Black or African American [Public School]", + "Grade 9 Students - White [Public School]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 9 Students - Two or More Races [Public School]", + "Grade 10 Students - American Indian/Alaska Native [Public School]", + "Grade 10 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 10 Students - Hispanic [Public School]", + "Grade 10 Students - Black or African American [Public School]", + "Grade 10 Students - White [Public School]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 10 Students - Two or More Races [Public School]", + "Grade 11 Students - American Indian/Alaska Native [Public School]", + "Grade 11 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 11 Students - Hispanic [Public School]", + "Grade 11 Students - Black or African American [Public School]", + "Grade 11 Students - White [Public School]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 11 Students - Two or More Races [Public School]", + "Grade 12 Students - American Indian/Alaska Native [Public School]", + "Grade 12 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 12 Students - Hispanic [Public School]", + "Grade 12 Students - Black or African American [Public School]", + "Grade 12 Students - White [Public School]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 12 Students - Two or More Races [Public School]", + "Grade 13 Students - American Indian/Alaska Native [Public School]", + "Grade 13 Students - Asian or Asian/Pacific Islander [Public School]", + "Grade 13 Students - Hispanic [Public School]", + "Grade 13 Students - Black or African American [Public School]", + "Grade 13 Students - White [Public School]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Grade 13 Students - Two or More Races [Public School]", + "Ungraded Students - American Indian/Alaska Native [Public School]", + "Ungraded Students - Asian or Asian/Pacific Islander [Public School]", + "Ungraded Students - Hispanic [Public School]", + "Ungraded Students - Black or African American [Public School]", + "Ungraded Students - White [Public School]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Ungraded Students - Two or More Races [Public School]", + "Adult Education Students - American Indian/Alaska Native [Public School]", + "Adult Education Students - Asian or Asian/Pacific Islander [Public School]", + "Adult Education Students - Hispanic [Public School]", + "Adult Education Students - Black or African American [Public School]", + "Adult Education Students - White [Public School]", + "Adult Education - Nat. Hawaiian or Other Pacific Isl. [Public School]", + "Adult Education Students - Two or More Races [Public School]", + "Prekindergarten Students - American Indian/Alaska Native - male [Public School]", + "Prekindergarten Students - American Indian/Alaska Native - female [Public School]", + "Prekindergarten Students - Asian or Asian/Pacific Islander - male [Public School]", + "Prekindergarten Students - Asian or Asian/Pacific Islander - female [Public School]", + "Prekindergarten Students - Hispanic - male [Public School]", + "Prekindergarten Students - Hispanic - female [Public School]", + "Prekindergarten Students - Black or African American - male [Public School]", + "Prekindergarten Students - Black or African American - female [Public School]", + "Prekindergarten Students - White - male [Public School]", + "Prekindergarten Students - White - female [Public School]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Prekindergarten Students - Two or More Races - male [Public School]", + "Prekindergarten Students - Two or More Races - female [Public School]", + "Kindergarten Students - American Indian/Alaska Native - male [Public School]", + "Kindergarten Students - American Indian/Alaska Native - female [Public School]", + "Kindergarten Students - Asian or Asian/Pacific Islander - male [Public School]", + "Kindergarten Students - Asian or Asian/Pacific Islander - female [Public School]", + "Kindergarten Students - Hispanic - male [Public School]", + "Kindergarten Students - Hispanic - female [Public School]", + "Kindergarten Students - Black or African American - male [Public School]", + "Kindergarten Students - Black or African American - female [Public School]", + "Kindergarten Students - White - male [Public School]", + "Kindergarten Students - White - female [Public School]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Kindergarten Students - Two or More Races - male [Public School]", + "Kindergarten Students - Two or More Races - female [Public School]", + "Grade 1 Students - American Indian/Alaska Native - male [Public School]", + "Grade 1 Students - American Indian/Alaska Native - female [Public School]", + "Grade 1 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 1 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 1 Students - Hispanic - male [Public School]", + "Grade 1 Students - Hispanic - female [Public School]", + "Grade 1 Students - Black or African American - male [Public School]", + "Grade 1 Students - Black or African American - female [Public School]", + "Grade 1 Students - White - male [Public School]", + "Grade 1 Students - White - female [Public School]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 1 Students - Two or More Races - male [Public School]", + "Grade 1 Students - Two or More Races - female [Public School]", + "Grade 2 Students - American Indian/Alaska Native - male [Public School]", + "Grade 2 Students - American Indian/Alaska Native - female [Public School]", + "Grade 2 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 2 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 2 Students - Hispanic - male [Public School]", + "Grade 2 Students - Hispanic - female [Public School]", + "Grade 2 Students - Black or African American - male [Public School]", + "Grade 2 Students - Black or African American - female [Public School]", + "Grade 2 Students - White - male [Public School]", + "Grade 2 Students - White - female [Public School]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 2 Students - Two or More Races - male [Public School]", + "Grade 2 Students - Two or More Races - female [Public School]", + "Grade 3 Students - American Indian/Alaska Native - male [Public School]", + "Grade 3 Students - American Indian/Alaska Native - female [Public School]", + "Grade 3 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 3 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 3 Students - Hispanic - male [Public School]", + "Grade 3 Students - Hispanic - female [Public School]", + "Grade 3 Students - Black or African American - male [Public School]", + "Grade 3 Students - Black or African American - female [Public School]", + "Grade 3 Students - White - male [Public School]", + "Grade 3 Students - White - female [Public School]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 3 Students - Two or More Races - male [Public School]", + "Grade 3 Students - Two or More Races - female [Public School]", + "Grade 4 Students - American Indian/Alaska Native - male [Public School]", + "Grade 4 Students - American Indian/Alaska Native - female [Public School]", + "Grade 4 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 4 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 4 Students - Hispanic - male [Public School]", + "Grade 4 Students - Hispanic - female [Public School]", + "Grade 4 Students - Black or African American - male [Public School]", + "Grade 4 Students - Black or African American - female [Public School]", + "Grade 4 Students - White - male [Public School]", + "Grade 4 Students - White - female [Public School]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 4 Students - Two or More Races - male [Public School]", + "Grade 4 Students - Two or More Races - female [Public School]", + "Grade 5 Students - American Indian/Alaska Native - male [Public School]", + "Grade 5 Students - American Indian/Alaska Native - female [Public School]", + "Grade 5 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 5 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 5 Students - Hispanic - male [Public School]", + "Grade 5 Students - Hispanic - female [Public School]", + "Grade 5 Students - Black or African American - male [Public School]", + "Grade 5 Students - Black or African American - female [Public School]", + "Grade 5 Students - White - male [Public School]", + "Grade 5 Students - White - female [Public School]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 5 Students - Two or More Races - male [Public School]", + "Grade 5 Students - Two or More Races - female [Public School]", + "Grade 6 Students - American Indian/Alaska Native - male [Public School]", + "Grade 6 Students - American Indian/Alaska Native - female [Public School]", + "Grade 6 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 6 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 6 Students - Hispanic - male [Public School]", + "Grade 6 Students - Hispanic - female [Public School]", + "Grade 6 Students - Black or African American - male [Public School]", + "Grade 6 Students - Black or African American - female [Public School]", + "Grade 6 Students - White - male [Public School]", + "Grade 6 Students - White - female [Public School]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 6 Students- Two or More Races - male [Public School]", + "Grade 6 Students - Two or More Races - female [Public School]", + "Grade 7 Students - American Indian/Alaska Native - male [Public School]", + "Grade 7 Students - American Indian/Alaska Native - female [Public School]", + "Grade 7 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 7 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 7 Students - Hispanic - male [Public School]", + "Grade 7 Students - Hispanic - female [Public School]", + "Grade 7 Students - Black or African American - male [Public School]", + "Grade 7 Students - Black or African American - female [Public School]", + "Grade 7 Students - White - male [Public School]", + "Grade 7 Students - White - female [Public School]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 7 Students - Two or More Races - male [Public School]", + "Grade 7 Students - Two or More Races - female [Public School]", + "Grade 8 Students - American Indian/Alaska Native - male [Public School]", + "Grade 8 Students - American Indian/Alaska Native - female [Public School]", + "Grade 8 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 8 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 8 Students- Hispanic - male [Public School]", + "Grade 8 Students - Hispanic - female [Public School]", + "Grade 8 Students - Black or African American - male [Public School]", + "Grade 8 Students - Black or African American - female [Public School]", + "Grade 8 Students - White - male [Public School]", + "Grade 8 Students - White - female [Public School]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 8 Students - Two or More Races - male [Public School]", + "Grade 8 Students - Two or More Races - female [Public School]", + "Grade 9 Students - American Indian/Alaska Native - male [Public School]", + "Grade 9 Students - American Indian/Alaska Native - female [Public School]", + "Grade 9 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 9 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 9 Students - Hispanic - male [Public School]", + "Grade 9 Students - Hispanic - female [Public School]", + "Grade 9 Students - Black or African American - male [Public School]", + "Grade 9 Students - Black or African American - female [Public School]", + "Grade 9 Students - White - male [Public School]", + "Grade 9 Students - White - female [Public School]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 9 Students - Two or More Races - male [Public School]", + "Grade 9 Students - Two or More Races - female [Public School]", + "Grade 10 Students - American Indian/Alaska Native - male [Public School]", + "Grade 10 Students - American Indian/Alaska Native - female [Public School]", + "Grade 10 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 10 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 10 Students - Hispanic - male [Public School]", + "Grade 10 Students - Hispanic - female [Public School]", + "Grade 10 Students - Black or African American - male [Public School]", + "Grade 10 Students - Black or African American - female [Public School]", + "Grade 10 Students - White - male [Public School]", + "Grade 10 Students - White - female [Public School]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 10 Students - Two or More Races - male [Public School]", + "Grade 10 Students - Two or More Races - female [Public School]", + "Grade 11 Students - American Indian/Alaska Native - male [Public School]", + "Grade 11 Students - American Indian/Alaska Native - female [Public School]", + "Grade 11 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 11 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 11 Students - Hispanic - male [Public School]", + "Grade 11 Students - Hispanic - female [Public School]", + "Grade 11 Students - Black or African American - male [Public School]", + "Grade 11 Students - Black or African American - female [Public School]", + "Grade 11 Students - White - male [Public School]", + "Grade 11 Students - White - female [Public School]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 11 Students - Two or More Races - male [Public School]", + "Grade 11 Students - Two or More Races - female [Public School]", + "Grade 12 Students - American Indian/Alaska Native - male [Public School]", + "Grade 12 Students - American Indian/Alaska Native - female [Public School]", + "Grade 12 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 12 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 12 Students - Hispanic - male [Public School]", + "Grade 12 Students - Hispanic - female [Public School]", + "Grade 12 Students - Black or African American - male [Public School]", + "Grade 12 Students - Black or African American - female [Public School]", + "Grade 12 Students - White - male [Public School]", + "Grade 12 Students - White - female [Public School]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 12 Students - Two or More Races - male [Public School]", + "Grade 12 Students - Two or More Races - female [Public School]", + "Grade 13 Students - American Indian/Alaska Native - male [Public School]", + "Grade 13 Students - American Indian/Alaska Native - female [Public School]", + "Grade 13 Students - Asian or Asian/Pacific Islander - male [Public School]", + "Grade 13 Students - Asian or Asian/Pacific Islander - female [Public School]", + "Grade 13 Students - Hispanic - male [Public School]", + "Grade 13 Students - Hispanic - female [Public School]", + "Grade 13 Students - Black or African American - male [Public School]", + "Grade 13 Students - Black or African American - female [Public School]", + "Grade 13 Students - White - male [Public School]", + "Grade 13 Students - White - female [Public School]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Grade 13 Students - Two or More Races - male [Public School]", + "Grade 13 Students - Two or More Races - female [Public School]", + "Ungraded Students - American Indian/Alaska Native - male [Public School]", + "Ungraded Students - American Indian/Alaska Native - female [Public School]", + "Ungraded Students - Asian or Asian/Pacific Islander - male [Public School]", + "Ungraded Students - Asian or Asian/Pacific Islander - female [Public School]", + "Ungraded Students - Hispanic - male [Public School]", + "Ungraded Students - Hispanic - female [Public School]", + "Ungraded Students - Black or African American - male [Public School]", + "Ungraded Students - Black or African American - female [Public School]", + "Ungraded Students - White - male [Public School]", + "Ungraded Students - White - female [Public School]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Ungraded Students - Two or More Races - male [Public School]", + "Ungraded Students - Two or More Races - female [Public School]", + "Adult Education Students - American Indian/Alaska Native - male [Public School]", + "Adult Education Students - American Indian/Alaska Native - female [Public School]", + "Adult Education Students - Asian or Asian/Pacific Islander - male [Public School]", + "Adult Education Students - Asian or Asian/Pacific Islander - female [Public School]", + "Adult Education Students - Hispanic - male [Public School]", + "Adult Education Students - Hispanic - female [Public School]", + "Adult Education Students - Black or African American - male [Public School]", + "Adult Education Students - Black or African American - female [Public School]", + "Adult Education Students - White - male [Public School]", + "Adult Education Students - White - female [Public School]", + "Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [Public School]", + "Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [Public School]", + "Adult Education Students - Two or More Races - male [Public School]", + "Adult Education Students - Two or More Races - female [Public School]", + "Full-Time Equivalent (FTE) Teachers [Public School]", + "Pupil/Teacher Ratio [Public School]" +] + +DISTRICT_COLUMNS = [ + "State Abbr [District]", "Agency Name [District]", + "Agency ID - NCES Assigned [District]", "County Number [District]", + "ANSI/FIPS State Code [District]", "Location Address 1 [District]", + "Location ZIP [District]", "Location City [District]", + "Location ZIP4 [District]", "Lowest Grade Offered [District]", + "Highest Grade Offered [District]", "Locale [District]", + "State Agency ID [District]", "Latitude [District]", "Longitude [District]", + "Phone Number [District]", + "Total Students, All Grades (Excludes AE) [District]", + "Total Students, All Grades (Includes AE) [District]", + "Grades 1-8 Students [District]", "Grades 9-12 Students [District]", + "Prekindergarten Students [District]", "Kindergarten Students [District]", + "Grade 1 Students [District]", "Grade 2 Students [District]", + "Grade 3 Students [District]", "Grade 4 Students [District]", + "Grade 5 Students [District]", "Grade 6 Students [District]", + "Grade 7 Students [District]", "Grade 8 Students [District]", + "Grade 9 Students [District]", "Grade 10 Students [District]", + "Grade 11 Students [District]", "Grade 12 Students [District]", + "Grade 13 Students [District]", "Ungraded Students [District]", + "Adult Education Students [District]", "Male Students [District]", + "Female Students [District]", + "American Indian/Alaska Native Students [District]", + "Asian or Asian/Pacific Islander Students [District]", + "Hispanic Students [District]", + "Black or African American Students [District]", + "White Students [District]", + "Nat. Hawaiian or Other Pacific Isl. Students [District]", + "Two or More Races Students [District]", "Total Race/Ethnicity [District]", + "American Indian/Alaska Native - male [District]", + "American Indian/Alaska Native - female [District]", + "Asian or Asian/Pacific Islander - male [District]", + "Asian or Asian/Pacific Islander - female [District]", + "Hispanic - male [District]", "Hispanic - female [District]", + "Black or African American - male [District]", + "Black or African American - female [District]", "White - male [District]", + "White - female [District]", + "Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Two or More Races - male [District]", + "Two or More Races - female [District]", + "Prekindergarten Students - male [District]", + "Prekindergarten Students - female [District]", + "Kindergarten Students - male [District]", + "Kindergarten Students - female [District]", + "Grade 1 Students - male [District]", + "Grade 1 Students - female [District]", + "Grade 2 Students - male [District]", + "Grade 2 Students - female [District]", + "Grade 3 Students - male [District]", + "Grade 3 Students - female [District]", + "Grade 4 Students - male [District]", + "Grade 4 Students - female [District]", + "Grade 5 Students - male [District]", + "Grade 5 Students - female [District]", + "Grade 6 Students - male [District]", + "Grade 6 Students - female [District]", + "Grade 7 Students - male [District]", + "Grade 7 Students - female [District]", + "Grade 8 Students - male [District]", + "Grade 8 Students - female [District]", + "Grade 9 Students - male [District]", + "Grade 9 Students - female [District]", + "Grade 10 Students - male [District]", + "Grade 10 Students - female [District]", + "Grade 11 Students - male [District]", + "Grade 11 Students - female [District]", + "Grade 12 Students - male [District]", + "Grade 12 Students - female [District]", + "Grade 13 Students - male [District]", + "Grade 13 Students - female [District]", + "Ungraded Students - male [District]", + "Ungraded Students - female [District]", + "Adult Education Students - male [District]", + "Adult Education Students - female [District]", + "Prekindergarten Students - American Indian/Alaska Native [District]", + "Prekindergarten Students - Asian or Asian/Pacific Islander [District]", + "Prekindergarten Students - Hispanic [District]", + "Prekindergarten Students - Black or African American [District]", + "Prekindergarten Students - White [District]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Prekindergarten Students, Two or More Races [District]", + "Kindergarten Students - American Indian/Alaska Native [District]", + "Kindergarten Students - Asian or Asian/Pacific Islander [District]", + "Kindergarten Students - Hispanic [District]", + "Kindergarten Students - Black or African American [District]", + "Kindergarten Students, White [District]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Kindergarten Students, Two or More Races [District]", + "Grade 1 Students - American Indian/Alaska Native [District]", + "Grade 1 Students - Asian or Asian/Pacific Islander [District]", + "Grade 1 Students - Hispanic [District]", + "Grade 1 Students - Black or African American [District]", + "Grade 1 Students - White [District]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 1 Students - Two or More Races [District]", + "Grade 2 Students - American Indian/Alaska Native [District]", + "Grade 2 Students - Asian or Asian/Pacific Islander [District]", + "Grade 2 Students - Hispanic [District]", + "Grade 2 Students - Black or African American [District]", + "Grade 2 Students - White [District]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 2 Students - Two or More Races [District]", + "Grade 3 Students - American Indian/Alaska Native [District]", + "Grade 3 Students - Asian or Asian/Pacific Islander [District]", + "Grade 3 Students - Hispanic [District]", + "Grade 3 Students - Black or African American [District]", + "Grade 3 Students - White [District]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 3 Students - Two or More Races [District]", + "Grade 4 Students - American Indian/Alaska Native [District]", + "Grade 4 Students - Asian or Asian/Pacific Islander [District]", + "Grade 4 Students - Hispanic [District]", + "Grade 4 Students - Black or African American [District]", + "Grade 4 Students - White [District]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 4 Students - Two or More Races [District]", + "Grade 5 Students - American Indian/Alaska Native [District]", + "Grade 5 Students - Asian or Asian/Pacific Islander [District]", + "Grade 5 Students - Hispanic [District]", + "Grade 5 Students - Black or African American [District]", + "Grade 5 Students - White [District]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 5 Students - Two or More Races [District]", + "Grade 6 Students - American Indian/Alaska Native [District]", + "Grade 6 Students - Asian or Asian/Pacific Islander [District]", + "Grade 6 Students - Hispanic [District]", + "Grade 6 Students - Black or African American [District]", + "Grade 6 Students - White [District]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 6 Students - Two or More Races [District]", + "Grade 7 Students - American Indian/Alaska Native [District]", + "Grade 7 Students - Asian or Asian/Pacific Islander [District]", + "Grade 7 Students - Hispanic [District]", + "Grade 7 Students - Black or African American [District]", + "Grade 7 Students - White [District]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 7 Students - Two or More Races [District]", + "Grade 8 Students - American Indian/Alaska Native [District]", + "Grade 8 Students - Asian or Asian/Pacific Islander [District]", + "Grade 8 Students - Hispanic [District]", + "Grade 8 Students - Black or African American [District]", + "Grade 8 Students - White [District]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 8 Students - Two or More Races [District]", + "Grade 9 Students - American Indian/Alaska Native [District]", + "Grade 9 Students - Asian or Asian/Pacific Islander [District]", + "Grade 9 Students - Hispanic [District]", + "Grade 9 Students - Black or African American [District]", + "Grade 9 Students - White [District]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 9 Students - Two or More Races [District]", + "Grade 10 Students - American Indian/Alaska Native [District]", + "Grade 10 Students - Asian or Asian/Pacific Islander [District]", + "Grade 10 Students - Hispanic [District]", + "Grade 10 Students - Black or African American [District]", + "Grade 10 Students - White [District]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 10 Students - Two or More Races [District]", + "Grade 11 Students - American Indian/Alaska Native [District]", + "Grade 11 Students - Asian or Asian/Pacific Islander [District]", + "Grade 11 Students - Hispanic [District]", + "Grade 11 Students - Black or African American [District]", + "Grade 11 Students - White [District]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 11 Students - Two or More Races [District]", + "Grade 12 Students - American Indian/Alaska Native [District]", + "Grade 12 Students - Asian or Asian/Pacific Islander [District]", + "Grade 12 Students - Hispanic [District]", + "Grade 12 Students - Black or African American [District]", + "Grade 12 Students - White [District]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 12 Students - Two or More Races [District]", + "Grade 13 Students - American Indian/Alaska Native [District]", + "Grade 13 Students - Asian or Asian/Pacific Islander [District]", + "Grade 13 Students - Hispanic [District]", + "Grade 13 Students - Black or African American [District]", + "Grade 13 Students - White [District]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Grade 13 Students - Two or More Races [District]", + "Ungraded Students - American Indian/Alaska Native [District]", + "Ungraded Students - Asian or Asian/Pacific Islander [District]", + "Ungraded Students - Hispanic [District]", + "Ungraded Students - Black or African American [District]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. [District]", + "Ungraded Students - White [District]", + "Ungraded Students - Two or More Races [District]", + "Adult Education Students - American Indian/Alaska Native [District]", + "Adult Education Students - Asian or Asian/Pacific Islander [District]", + "Adult Education Students - Hispanic [District]", + "Adult Education Students - Black or African American [District]", + "Adult Education Students - White [District]", + "Adult Education - Nat. Hawaiian or Other Pacific Isl. [District]", + "Adult Education Students - Two or More Races [District]", + "Prekindergarten Students - American Indian/Alaska Native - male [District]", + "Prekindergarten Students - American Indian/Alaska Native - female [District]", + "Prekindergarten Students - Asian or Asian/Pacific Islander - male [District]", + "Prekindergarten Students - Asian or Asian/Pacific Islander - female [District]", + "Prekindergarten Students - Hispanic - male [District]", + "Prekindergarten Students - Hispanic - female [District]", + "Prekindergarten Students - Black or African American - male [District]", + "Prekindergarten Students - Black or African American - female [District]", + "Prekindergarten Students - White - male [District]", + "Prekindergarten Students - White - female [District]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Prekindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Prekindergarten Students - Two or More Races - male [District]", + "Prekindergarten Students - Two or More Races - female [District]", + "Kindergarten Students - American Indian/Alaska Native - male [District]", + "Kindergarten Students - American Indian/Alaska Native - female [District]", + "Kindergarten Students - Asian or Asian/Pacific Islander - male [District]", + "Kindergarten Students - Asian or Asian/Pacific Islander - female [District]", + "Kindergarten Students - Hispanic - male [District]", + "Kindergarten Students - Hispanic - female [District]", + "Kindergarten Students - Black or African American - male [District]", + "Kindergarten Students - Black or African American - female [District]", + "Kindergarten Students - White - male [District]", + "Kindergarten Students - White - female [District]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Kindergarten Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Kindergarten Students - Two or More Races - male [District]", + "Kindergarten Students - Two or More Races - female [District]", + "Grade 1 Students - American Indian/Alaska Native - male [District]", + "Grade 1 Students - American Indian/Alaska Native - female [District]", + "Grade 1 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 1 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 1 Students - Hispanic - male [District]", + "Grade 1 Students - Hispanic - female [District]", + "Grade 1 Students - Black or African American - male [District]", + "Grade 1 Students - Black or African American - female [District]", + "Grade 1 Students - White - male [District]", + "Grade 1 Students - White - female [District]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 1 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 1 Students - Two or More Races - male [District]", + "Grade 1 Students - Two or More Races - female [District]", + "Grade 2 Students - American Indian/Alaska Native - male [District]", + "Grade 2 Students - American Indian/Alaska Native - female [District]", + "Grade 2 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 2 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 2 Students - Hispanic - male [District]", + "Grade 2 Students - Hispanic - female [District]", + "Grade 2 Students - Black or African American - male [District]", + "Grade 2 Students - Black or African American - female [District]", + "Grade 2 Students - White - male [District]", + "Grade 2 Students - White - female [District]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 2 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 2 Students - Two or More Races - male [District]", + "Grade 2 Students - Two or More Races - female [District]", + "Grade 3 Students - American Indian/Alaska Native - male [District]", + "Grade 3 Students - American Indian/Alaska Native - female [District]", + "Grade 3 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 3 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 3 Students - Hispanic - male [District]", + "Grade 3 Students - Hispanic - female [District]", + "Grade 3 Students - Black or African American - male [District]", + "Grade 3 Students - Black or African American - female [District]", + "Grade 3 Students - White - male [District]", + "Grade 3 Students - White - female [District]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 3 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 3 Students - Two or More Races - male [District]", + "Grade 3 Students - Two or More Races - female [District]", + "Grade 4 Students - American Indian/Alaska Native - male [District]", + "Grade 4 Students - American Indian/Alaska Native - female [District]", + "Grade 4 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 4 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 4 Students - Hispanic - male [District]", + "Grade 4 Students - Hispanic - female [District]", + "Grade 4 Students - Black or African American - male [District]", + "Grade 4 Students - Black or African American - female [District]", + "Grade 4 Students - White - male [District]", + "Grade 4 Students - White - female [District]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 4 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 4 Students - Two or More Races - male [District]", + "Grade 4 Students - Two or More Races - female [District]", + "Grade 5 Students - American Indian/Alaska Native - male [District]", + "Grade 5 Students - American Indian/Alaska Native - female [District]", + "Grade 5 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 5 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 5 Students - Hispanic - male [District]", + "Grade 5 Students - Hispanic - female [District]", + "Grade 5 Students - Black or African American - male [District]", + "Grade 5 Students - Black or African American - female [District]", + "Grade 5 Students - White - male [District]", + "Grade 5 Students - White - female [District]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 5 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 5 Students - Two or More Races - male [District]", + "Grade 5 Students - Two or More Races - female [District]", + "Grade 6 Students - American Indian/Alaska Native - male [District]", + "Grade 6 Students - American Indian/Alaska Native - female [District]", + "Grade 6 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 6 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 6 Students - Hispanic - male [District]", + "Grade 6 Students - Hispanic - female [District]", + "Grade 6 Students - Black or African American - male [District]", + "Grade 6 Students - Black or African American - female [District]", + "Grade 6 Students - White - male [District]", + "Grade 6 Students - White - female [District]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 6 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 6 Students- Two or More Races - male [District]", + "Grade 6 Students - Two or More Races - female [District]", + "Grade 7 Students - American Indian/Alaska Native - male [District]", + "Grade 7 Students - American Indian/Alaska Native - female [District]", + "Grade 7 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 7 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 7 Students - Hispanic - male [District]", + "Grade 7 Students - Hispanic - female [District]", + "Grade 7 Students - Black or African American - male [District]", + "Grade 7 Students - Black or African American - female [District]", + "Grade 7 Students - White - male [District]", + "Grade 7 Students - White - female [District]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 7 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 7 Students - Two or More Races - male [District]", + "Grade 7 Students - Two or More Races - female [District]", + "Grade 8 Students - American Indian/Alaska Native - male [District]", + "Grade 8 Students - American Indian/Alaska Native - female [District]", + "Grade 8 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 8 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 8 Students- Hispanic - male [District]", + "Grade 8 Students - Hispanic - female [District]", + "Grade 8 Students - Black or African American - male [District]", + "Grade 8 Students - Black or African American - female [District]", + "Grade 8 Students - White - male [District]", + "Grade 8 Students - White - female [District]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 8 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 8 Students - Two or More Races - male [District]", + "Grade 8 Students - Two or More Races - female [District]", + "Grade 9 Students - American Indian/Alaska Native - male [District]", + "Grade 9 Students - American Indian/Alaska Native - female [District]", + "Grade 9 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 9 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 9 Students - Hispanic - male [District]", + "Grade 9 Students - Hispanic - female [District]", + "Grade 9 Students - Black or African American - male [District]", + "Grade 9 Students - Black or African American - female [District]", + "Grade 9 Students - White - male [District]", + "Grade 9 Students - White - female [District]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 9 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 9 Students - Two or More Races - male [District]", + "Grade 9 Students - Two or More Races - female [District]", + "Grade 10 Students - American Indian/Alaska Native - male [District]", + "Grade 10 Students - American Indian/Alaska Native - female [District]", + "Grade 10 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 10 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 10 Students - Hispanic - male [District]", + "Grade 10 Students - Hispanic - female [District]", + "Grade 10 Students - Black or African American - male [District]", + "Grade 10 Students - Black or African American - female [District]", + "Grade 10 Students - White - male [District]", + "Grade 10 Students - White - female [District]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 10 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 10 Students - Two or More Races - male [District]", + "Grade 10 Students - Two or More Races - female [District]", + "Grade 11 Students - American Indian/Alaska Native - male [District]", + "Grade 11 Students - American Indian/Alaska Native - female [District]", + "Grade 11 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 11 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 11 Students - Hispanic - male [District]", + "Grade 11 Students - Hispanic - female [District]", + "Grade 11 Students - Black or African American - male [District]", + "Grade 11 Students - Black or African American - female [District]", + "Grade 11 Students - White - male [District]", + "Grade 11 Students - White - female [District]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 11 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 11 Students - Two or More Races - male [District]", + "Grade 11 Students - Two or More Races - female [District]", + "Grade 12 Students - American Indian/Alaska Native - male [District]", + "Grade 12 Students - American Indian/Alaska Native - female [District]", + "Grade 12 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 12 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 12 Students - Hispanic - male [District]", + "Grade 12 Students - Hispanic - female [District]", + "Grade 12 Students - Black or African American - male [District]", + "Grade 12 Students - Black or African American - female [District]", + "Grade 12 Students - White - male [District]", + "Grade 12 Students - White - female [District]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 12 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 12 Students - Two or More Races - male [District]", + "Grade 12 Students - Two or More Races - female [District]", + "Grade 13 Students - American Indian/Alaska Native - male [District]", + "Grade 13 Students - American Indian/Alaska Native - female [District]", + "Grade 13 Students - Asian or Asian/Pacific Islander - male [District]", + "Grade 13 Students - Asian or Asian/Pacific Islander - female [District]", + "Grade 13 Students - Hispanic - male [District]", + "Grade 13 Students - Hispanic - female [District]", + "Grade 13 Students - Black or African American - male [District]", + "Grade 13 Students - Black or African American - female [District]", + "Grade 13 Students - White - male [District]", + "Grade 13 Students - White - female [District]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Grade 13 Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Grade 13 Students - Two or More Races - male [District]", + "Grade 13 Students - Two or More Races - female [District]", + "Ungraded Students - American Indian/Alaska Native - male [District]", + "Ungraded Students - American Indian/Alaska Native - female [District]", + "Ungraded Students - Asian or Asian/Pacific Islander - male [District]", + "Ungraded Students - Asian or Asian/Pacific Islander - female [District]", + "Ungraded Students - Hispanic - male [District]", + "Ungraded Students - Hispanic - female [District]", + "Ungraded Students - Black or African American - male [District]", + "Ungraded Students - Black or African American - female [District]", + "Ungraded Students - White - male [District]", + "Ungraded Students - White - female [District]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Ungraded Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Ungraded Students - Two or More Races - male [District]", + "Ungraded Students - Two or More Races - female [District]", + "Adult Education Students - American Indian/Alaska Native - male [District]", + "Adult Education Students - American Indian/Alaska Native - female [District]", + "Adult Education Students - Asian or Asian/Pacific Islander - male [District]", + "Adult Education Students - Asian or Asian/Pacific Islander - female [District]", + "Adult Education Students - Hispanic - male [District]", + "Adult Education Students - Hispanic - female [District]", + "Adult Education Students - Black or African American - male [District]", + "Adult Education Students - Black or African American - female [District]", + "Adult Education Students - White - male [District]", + "Adult Education Students - White - female [District]", + "Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - male [District]", + "Adult Education Students - Nat. Hawaiian or Other Pacific Isl. - female [District]", + "Adult Education Students - Two or More Races - male [District]", + "Adult Education Students - Two or More Races - female [District]", + "Full-Time Equivalent (FTE) Teachers [District]", + "Pupil/Teacher Ratio [District]", "Prekindergarten Teachers [District]", + "Kindergarten Teachers [District]", "Elementary Teachers [District]", + "Secondary Teachers [District]", "Ungraded Teachers [District]", + "Total Staff [District]", "Paraprofessionals/Instructional Aides [District]", + "Instructional Coordinators [District]", + "Elementary School Counselor [District]", + "Secondary School Counselor [District]", + "Other Guidance Counselors [District]", + "Total Guidance Counselors [District]", + "Librarians/media specialists [District]", "Media Support Staff [District]", + "LEA Administrators [District]", + "LEA Administrative Support Staff [District]", + "School Administrators [District]", + "School Administrative Support Staff [District]", + "Student Support Services Staff (w/o Psychology) [District]", + "School Psychologist [District]", "Other Support Services Staff [District]", + "Student Support Services Staff [District]" +] + +KEY_COLUMNS_PUBLIC = ["13392"] +KEY_COLUMNS_PRIVATE = ["13391"] +KEY_COLUMNS_DISTRICT = ["13393"] diff --git a/scripts/us_nces/demographics/fetch_ncid.py b/scripts/us_nces/demographics/fetch_ncid.py new file mode 100644 index 000000000..5991980f7 --- /dev/null +++ b/scripts/us_nces/demographics/fetch_ncid.py @@ -0,0 +1,122 @@ +import time +import csv +import copy +from selenium import webdriver +from selenium.webdriver.common.by import By +from chromedriver_py import binary_path # this will get you the path variable for ChromeDriver + + +def fetch_school_ncid(school, year, column_names): + """ + Fetches the NCID (National Center for Education Statistics ID) for a given school and year. + + Args: + school (str): Name of the school. + year (str): Year for which to find the NCID. + column_names (list): List of expected column names in the output data (not currently used). + + Returns: + list: List of NCIDs corresponding to the given column names. + """ + + # Initialize output CSV structure and list to hold all fetched data + OUTPUT_CSV = {"label_header": "", "label_text": "", "value": ""} + FINAL_LIST = [] + + # Initialize WebDriver + chrome_options = webdriver.ChromeOptions() + chrome_options.add_argument('--headless') + chrome_options.add_argument('--window-size=1920,1080') + + svc = webdriver.ChromeService( + executable_path=binary_path) # Get the path for ChromeDriver + driver = webdriver.Chrome( + service=svc, + options=chrome_options) # Start Chrome with the given service + + # Prepare the year variable by formatting it to match the expected input format + year = 'cb_year_' + year + '' + + # Open the NCES CCD ELSI Table Generator page + driver.get("https://nces.ed.gov/ccd/elsi/tableGenerator.aspx") + + # Find and click the radio button corresponding to the specified school + inputs = driver.find_elements(By.XPATH, "//*[@type='radio']") + for i in inputs: + if i.get_attribute('value') == school: + i.click() + break + time.sleep(5) # Wait for 5 seconds to ensure the page updates + + # Find and click the checkbox corresponding to the specified year + checkboxes = driver.find_elements(By.XPATH, "//*[@type='checkbox']") + for i in checkboxes: + if i.get_attribute('id') == year: + i.click() + break + + # Find and click the 'aTableColumns' link to open the column selection interface + Columns = driver.find_elements(By.XPATH, "//a") + for i in Columns: + if i.get_attribute('id') == 'aTableColumns': + i.click() + break + time.sleep(2) # Wait for 2 seconds to allow page interactions to complete + + # Find all
  • elements within the column tabs + li_items = driver.find_elements(By.XPATH, "//*[@id='dColumnTabs']/ul/li") + for div_id in li_items: + # Click each
  • tab one by one to access the column options + div_id.click() + time.sleep(5) # Wait for 5 seconds for the tab content to load + + # Locate the corresponding div for the clicked tab + div_tab = driver.find_elements(By.ID, + div_id.get_attribute('aria-controls'))[0] + first_ul = div_tab.find_elements(By.XPATH, "ul") + + # Ensure the
      is found and proceed to extract
    • items within it + if first_ul: + first_lis = first_ul[0].find_elements(By.XPATH, "li") + else: + # If no
        is found, proceed without errors + pass + + # For each
      • element, look for nested
        elements, then click them + for first_child_li in first_lis: + div = first_child_li.find_element(By.TAG_NAME, 'div') + div.click() + time.sleep(1) # Wait for 1 second before continuing + + # After clicking, find and process nested
          and
        • items + second_ul = first_child_li.find_elements(By.XPATH, "ul") + second_lis = second_ul[0].find_elements(By.XPATH, "li") + for second_child_li in second_lis: + # Extract labels and input elements (for the options) + lbl = second_child_li.find_elements(By.TAG_NAME, "label") + inp = second_child_li.find_elements(By.TAG_NAME, "input") + + # Create a copy of the output CSV structure and fill it with label and value information + item = copy.deepcopy(OUTPUT_CSV) + item['label_header'] = lbl[ + 0].text # The header label of the option + item['label_text'] = lbl[ + 1].text # The text label for the specific value + item['value'] = inp[0].get_attribute( + 'value') # The value of the option + + # Add the item to the final list of options + FINAL_LIST.append(item) + + # Close the WebDriver once all necessary actions are completed + driver.quit() + + # Prepare to return a list of NCIDs corresponding to the requested columns + id_list = [] + + # Filter the options by matching the label_header with the provided column names + for item in FINAL_LIST: + if item['label_header'] in column_names: + id_list.append(item['value']) # Add the value (NCID) to the list + + return id_list # Return the list of NCIDs that match the requested columns diff --git a/scripts/us_nces/demographics/manifest.json b/scripts/us_nces/demographics/manifest.json new file mode 100644 index 000000000..aa32f2d96 --- /dev/null +++ b/scripts/us_nces/demographics/manifest.json @@ -0,0 +1,20 @@ +{ + "import_specifications": [ + { + "import_name": "NCES_PrivateSchoolStats", + "curator_emails": ["dhhhanushree@google.com"], + "provenance_url": "https://nces.ed.gov/ccd/elsi/tableGenerator.aspx", + "provenance_description": "US nces shool data for private", + "scripts": ["download.py --import_name=PrivateSchool","private_school/process.py"], + "import_inputs": [ + { + "template_mcf": "private_school/output_files/us_nces_demographics_private_school.tmcf", + "cleaned_csv": "private_school/output_files/us_nces_demographics_private_school.csv" + } + ], + "cron_schedule": "0 10 21 * *" + } + ] +} + + diff --git a/scripts/us_nces/demographics/private_school/config.py b/scripts/us_nces/demographics/private_school/config.py new file mode 100644 index 000000000..606060992 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/config.py @@ -0,0 +1,103 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script is config file +for us nces demographic private school. +""" +# Defining file names. +CSV_FILE_NAME = "us_nces_demographics_private_school.csv" +MCF_FILE_NAME = "us_nces_demographics_private_school.mcf" +TMCF_FILE_NAME = "us_nces_demographics_private_school.tmcf" +CSV_FILE_PLACE = "us_nces_demographics_private_place.csv" +TMCF_FILE_PLACE = "us_nces_demographics_private_place.tmcf" +CSV_DUPLICATE_NAME = "dulicate_id_us_nces_demographics_private_place.csv" +SCHOOL_TYPE = "private_school" +OBSERVATION_PERIOD = "P2Y" +SPLIT_HEADER_ON_SCHOOL_TYPE = "[Private School]" + +# Considering the required columns for Demographics Data. +POSSIBLE_DATA_COLUMNS = [ + ".*Students.*", ".*Teacher.*", "Percentage.*", ".*Ungraded.*", "Grades.*", + "Prekindergarten and Kindergarten.*" +] +# Excluding the unwanted columns. +EXCLUDE_DATA_COLUMNS = [ + "(Ungraded & K-12)", +] +# Considering the required columns for Place Data. +POSSIBLE_PLACE_COLUMNS = [ + "school_state_code", "ZIP + 4", "ZIP", ".*County.*", ".*School.*", + "Lowest Grade.*", "Highest Grade.*", "Physical.*", "Phone.*", + "Coeducational", "School Level.*", ".*State.*", "City.*", "Religious.*" +] +# Excluding the unwanted columns. +EXCLUDE_PLACE_COLUMNS = [ + "State Name", "County Name", "Total Students", + "Prekindergarten and Kindergarten Students", "Grades 1-8 Students", + "Grades 9-12 Students", "Prekindergarten Students", "Kindergarten Students", + "Grade 1 Students", "Grade 2 Students", "School Community Type", + "Grade 3 Students", "Grade 4 Students", "Grade 5 Students", + "Grade 6 Students", "Grade 7 Students", "Grade 8 Students", + "Grade 9 Students", "Grade 10 Students", "Grade 11 Students", + "Grade 12 Students", "Ungraded Students", "Percentage of Black Students", + "American Indian/Alaska Native Students", + "Percentage of American Indian/Alaska Native Students", + "Asian or Asian/Pacific Islander Students", + "Percentage of Asian or Asian/Pacific Islander Students", + "Hispanic Students", "Percentage of Hispanic Students", + "Black or African American Students", "White Students", + "Percentage of White Students", + "Nat. Hawaiian or Other Pacific Isl. Students", + "Percentage of Nat. Hawaiian or Other Pacific Isl. Students", + "Two or More Races Students", "Percentage of Two or More Races Students", + "Pupil/Teacher Ratio", "Full-Time Equivalent", "year" +] +# Set of columns to exclude while checking for duplicate School IDs +EXCLUDE_LIST = [ + "school_state_code", "Private School Name", "ANSI/FIPS State Code", + "School ID - NCES Assigned", "State Abbr" +] +# Dropping the Duplicate entries based on School ID +DROP_BY_VALUE = "School ID - NCES Assigned" +# Renaming column name. +RENAMEING_PRIVATE_COLUMNS = { + "Private School Name": + "Private_School_Name", + "School ID - NCES Assigned": + "SchoolID", + "School Type": + "School_Type", + "School's Religious Affiliation or Orientation": + "School_Religion_Affliation", + "Religious Orientation": + "School_Religion", + "Physical Address": + "Physical_Address", + "Phone Number": + "PhoneNumber", + "Lowest Grade Taught": + "Lowest_Grade", + "Highest Grade Taught": + "Highest_Grade", + "School Level": + "SchoolGrade", + "ZIP + 4": + "ZIP4", + "ANSI/FIPS County Code": + "County_code", + "ANSI/FIPS State Code": + "State_code", + "State Abbr": + "State_Abbr" +} \ No newline at end of file diff --git a/scripts/us_nces/demographics/private_school/process.py b/scripts/us_nces/demographics/private_school/process.py new file mode 100644 index 000000000..9099b40a0 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/process.py @@ -0,0 +1,99 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script Load the datasets, cleans it +and generates cleaned CSV, MCF, TMCF file. +Before running this module, run download_input_files.py script, it downloads +required input files, creates necessary folders for processing. +Folder information +input_files - downloaded files (from US nces website) are placed here +output_files - output files (mcf, tmcf and csv are written here) +""" + +import os +import sys + +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(1, MODULE_DIR + '/../..') +# pylint:disable=wrong-import-position +# pylint:disable=import-error +# pylint:disable=wildcard-import +from common.us_education import USEducation +from config import * + +# pylint:enable=wrong-import-position +# pylint:enable=import-error +# pylint:disable=wildcard-import + + +# pylint:disable=too-few-public-methods +class NCESPrivateSchool(USEducation): + """ + This Class has requried methods to generate Cleaned CSV, + MCF and TMCF Files. + """ + _import_name = SCHOOL_TYPE + _split_headers_using_school_type = SPLIT_HEADER_ON_SCHOOL_TYPE + _include_columns = POSSIBLE_DATA_COLUMNS + _exclude_columns = EXCLUDE_DATA_COLUMNS + _include_col_place = POSSIBLE_PLACE_COLUMNS + _exclude_col_place = EXCLUDE_PLACE_COLUMNS + _generate_statvars = True + _observation_period = OBSERVATION_PERIOD + _exclude_list = EXCLUDE_LIST + _school_id = DROP_BY_VALUE + _renaming_columns = RENAMEING_PRIVATE_COLUMNS + + def set_include_columns(self, columns: list): + self._include_columns = columns + + def set_exclude_columns(self, columns: list): + self._exclude_columns = columns + + def set_generate_statvars_flag(self, flag: bool): + self._generate_statvars = flag + + +# pylint:enable=too-few-public-methods + +if __name__ == '__main__': + input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") + input_files = [ + os.path.join(input_path, file) + for file in sorted(os.listdir(input_path)) + if file != ".DS_Store" + ] + + # Defining Output Files + output_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "output_files") + + output_file_path_place = os.path.join( + os.path.dirname(os.path.abspath(__file__)), "output_place") + + cleaned_csv_path = os.path.join(output_file_path, CSV_FILE_NAME) + mcf_path = os.path.join(output_file_path, MCF_FILE_NAME) + tmcf_path = os.path.join(output_file_path, TMCF_FILE_NAME) + cleaned_csv_place = os.path.join(output_file_path_place, CSV_FILE_PLACE) + duplicate_csv_place = os.path.join(output_file_path_place, + CSV_DUPLICATE_NAME) + tmcf_path_place = os.path.join(output_file_path_place, TMCF_FILE_PLACE) + loader = NCESPrivateSchool(input_files, cleaned_csv_path, mcf_path, + tmcf_path, cleaned_csv_place, + duplicate_csv_place, tmcf_path_place) + + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() diff --git a/scripts/us_nces/demographics/private_school/process_test.py b/scripts/us_nces/demographics/private_school/process_test.py new file mode 100644 index 000000000..09632f647 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/process_test.py @@ -0,0 +1,149 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Script to automate the testing for EuroStat Physical Activity process script. +""" + +import os +import unittest +import sys +import tempfile +# module_dir is the path to where this test is running from. +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(0, MODULE_DIR) +# pylint: disable=wrong-import-position +from process import NCESPrivateSchool +# pylint: enable=wrong-import-position + +TEST_DATASET_DIR = os.path.join(MODULE_DIR, "test_data", "datasets") +EXPECTED_FILES_DIR = os.path.join(MODULE_DIR, "test_data", "expected_files") + + +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. + """ + test_data_files = os.listdir(TEST_DATASET_DIR) + + ip_data = [ + os.path.join(TEST_DATASET_DIR, file_name) + 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_private_school.csv") + mcf_file_path = os.path.join(tmp_dir, "test_private_school.mcf") + tmcf_file_path = os.path.join(tmp_dir, "test_private_school.tmcf") + csv_path_place = os.path.join(tmp_dir, + "test_private_school_place.csv") + tmcf_path_place = os.path.join(tmp_dir, + "test_private_school_place.tmcf") + dup_csv_path_place = os.path.join( + tmp_dir, "test_private_school_place_dup.csv") + + loader = NCESPrivateSchool(self.ip_data, cleaned_csv_file_path, + mcf_file_path, tmcf_file_path, + csv_path_place, dup_csv_path_place, + tmcf_path_place) + + 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() + + def test_mcf_tmcf_files(self): + """ + This method is required to test between output generated + preprocess script and expected output files like MCF File + """ + expected_mcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_private_school.mcf") + + expected_tmcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_private_school.tmcf") + + expected_tmcf_place_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_private_place.tmcf") + + with open(expected_mcf_file_path, + encoding="UTF-8") as expected_mcf_file: + expected_mcf_data = expected_mcf_file.read() + + with open(expected_tmcf_file_path, + encoding="UTF-8") as expected_tmcf_file: + expected_tmcf_data = expected_tmcf_file.read() + + with open(expected_tmcf_place_path, + encoding="UTF-8") as expected_tmcf_file_place: + expected_tmcf_place = expected_tmcf_file_place.read() + + self.assertEqual(expected_mcf_data.strip(), + self.actual_mcf_data.strip()) + self.assertEqual(expected_tmcf_data.strip(), + self.actual_tmcf_data.strip()) + self.assertEqual(expected_tmcf_place.strip(), + self.actual_tmcf_place.strip()) + + def test_create_csv(self): + """ + This method is required to test between output generated + preprocess script and expected output files like CSV + """ + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_private_school.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_data = expected_csv_file.read() + + self.assertEqual(expected_csv_data.strip(), + self.actual_csv_data.strip()) + + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_private_place.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_place = expected_csv_file.read() + + self.assertEqual(expected_csv_place.strip(), + self.actual_csv_place.strip()) + + +if __name__ == '__main__': + unittest.main() diff --git a/scripts/us_nces/demographics/private_school/test_data/datasets/ELSI_csv_export_638683649994467450939.csv b/scripts/us_nces/demographics/private_school/test_data/datasets/ELSI_csv_export_638683649994467450939.csv new file mode 100644 index 000000000..1df70c7e5 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/test_data/datasets/ELSI_csv_export_638683649994467450939.csv @@ -0,0 +1,200 @@ +ELSI Export + +National Center for Education Statistics - http://nces.ed.gov/ccd/elsi/ + +This is a Private School based table with the following filters applied: State(s) (All Years): All 50 + DC and outlying territories + +Private School Name,State Name [Private School] Latest available year,State Name [Private School] 2009-10,ANSI/FIPS State Code [Private School] Latest available year,Private School Name [Private School] 2009-10,School ID - NCES Assigned [Private School] Latest available year,County Name [Private School] 2009-10,ANSI/FIPS County Code [Private School] 2009-10,Phone Number [Private School] 2009-10,Physical Address [Private School] 2009-10,City [Private School] 2009-10,State Abbr [Private School] Latest available year,ZIP [Private School] 2009-10,ZIP + 4 [Private School] 2009-10,Lowest Grade Taught [Private School] 2009-10,Highest Grade Taught [Private School] 2009-10,Coeducational [Private School] 2009-10,School Type [Private School] 2009-10,School Level [Private School] 2009-10,School's Religious Affiliation or Orientation [Private School] 2009-10,School Community Type [Private School] 2009-10,Religious Orientation [Private School] 2009-10,Total Students (Ungraded & PK-12) [Private School] 2009-10,Total Students (Ungraded & K-12) [Private School] 2009-10,Prekindergarten and Kindergarten Students [Private School] 2009-10,Grades 1-8 Students [Private School] 2009-10,Grades 9-12 Students [Private School] 2009-10,Prekindergarten Students [Private School] 2009-10,Kindergarten Students [Private School] 2009-10,Grade 1 Students [Private School] 2009-10,Grade 2 Students [Private School] 2009-10,Grade 3 Students [Private School] 2009-10,Grade 4 Students [Private School] 2009-10,Grade 5 Students [Private School] 2009-10,Grade 6 Students [Private School] 2009-10,Grade 7 Students [Private School] 2009-10,Grade 8 Students [Private School] 2009-10,Grade 9 Students [Private School] 2009-10,Grade 10 Students [Private School] 2009-10,Grade 11 Students [Private School] 2009-10,Grade 12 Students [Private School] 2009-10,Ungraded Students [Private School] 2009-10,American Indian/Alaska Native Students [Private School] 2009-10,Percentage of American Indian/Alaska Native Students [Private School] 2009-10,Asian or Asian/Pacific Islander Students [Private School] 2009-10,Percentage of Asian or Asian/Pacific Islander Students [Private School] 2009-10,Hispanic Students [Private School] 2009-10,Percentage of Hispanic Students [Private School] 2009-10,Black or African American Students [Private School] 2009-10,Percentage of Black Students [Private School] 2009-10,White Students [Private School] 2009-10,Percentage of White Students [Private School] 2009-10,Nat. Hawaiian or Other Pacific Isl. Students [Private School] 2009-10,Percentage of Nat. Hawaiian or Other Pacific Isl. Students [Private School] 2009-10,Two or More Races Students [Private School] 2009-10,Percentage of Two or More Races Students [Private School] 2009-10,Pupil/Teacher Ratio [Private School] 2009-10,Full-Time Equivalent (FTE) Teachers [Private School] 2009-10 +"OUR SAVIOR""S LUTHERAN DAY SCHOOL",MINNESOTA,MINNESOTA,27,OUR SAVIORS LUTHERAN DAY SCHOOL,02039659,POLK,27119,2182815191,PO BOX 477,CROOKSTON,MN ,56716,56716,Prekindergarten,7th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,3-Town (ulocale = 31 or 32 or 33),Lutheran Church – Missouri Synod,53,36,25,28,–,17,8,5,2,5,8,2,5,1,–,–,–,–,–,–,0,0.00,0,0.00,1,2.78,0,0.00,32,88.89,0,0.00,3,8.33,7.83,4.60 +-- MANSFIELD CHRISTIAN SCHOOL-,OHIO,OHIO,39,MANSFIELD CHRISTIAN SCHOOL,Y2162569,RICHLAND,39139,4197565651,500 LOGAN RD,MANSFIELD,OH ,44907,449072898,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),633,600,70,382,181,33,37,47,37,42,37,50,57,53,59,53,46,46,36,–,0,0.00,7,1.17,3,0.50,54,9.00,513,85.50,0,0.00,23,3.83,14.18,42.30 +100 BLK MEN OF GREATER MOBILE'S PHOENIX PROGRAM,ALABAMA,ALABAMA,01,100 BLK MEN OF GREATER MOBILE'S PHOENIX PROGRAM,A0900001,MOBILE,01097,2514579465,838 W MAIN ST,PRICHARD,AL ,36610,366103862,6th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,156,156,–,86,70,–,–,–,–,–,–,–,25,26,35,15,20,20,15,–,0,0.00,0,0.00,8,5.13,123,78.85,25,16.03,0,0.00,0,0.00,13.45,11.60 +123 YOU N ME PRESCHOOL,ILLINOIS,ILLINOIS,17,123 YOU N ME PRESCHOOL,A0103186,PEORIA,17143,3096923470,809 W DETWEILLER DR,PEORIA,IL ,61615,616152149,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,70,20,70,–,–,50,20,–,–,–,–,–,–,–,–,–,–,–,–,–,4,20.00,2,10.00,2,10.00,2,10.00,5,25.00,0,0.00,5,25.00,10.00,2.00 +1408 S. GOLIAD ST.,TEXAS,TEXAS,48,HERITAGE CHRISTIAN ACADEMY,A9703331,ROCKWALL,48397,9727729788,1408 S GOLIAD ST,ROCKWALL,TX ,75087,750874602,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),250,229,34,150,66,21,13,25,14,12,19,17,19,21,23,24,13,14,15,–,0,0.00,0,0.00,9,3.93,7,3.06,213,93.01,0,0.00,0,0.00,8.61,26.60 +1ST CEREBRAL PALSY OF NJ,NEW JERSEY,NEW JERSEY,34,1ST CEREBRAL PALSY OF NJ,02043767,ESSEX,34013,9737510200,7 SANFORD AVE,BELLEVILLE,NJ ,07109,07109,Prekindergarten,Prekindergarten,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,60,57,3,–,–,3,–,–,–,–,–,–,–,–,–,–,–,–,–,57,0,0.00,1,1.75,24,42.11,23,40.35,6,10.53,0,0.00,3,5.26,4.60,12.40 +1ST CLASS MONTESSORI PRESCHOOL,TENNESSEE,TENNESSEE,47,1ST CLASS MONTESSORI PRESCHOOL,K9305911,SHELBY,47157,9012745622,1336 PEABODY AVE,MEMPHIS,TN ,38104,381043500,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,23,10,23,–,–,13,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,9,90.00,1,10.00,0,0.00,0,0.00,10.00,1.00 +1ST UNITED METHODIST PRESCHOOL & KINDERGARTEN,NORTH CAROLINA,NORTH CAROLINA,37,1ST UNITED METHODIST PRESCHOOL & KINDERGARTEN,A0108235,NASH,37127,2529770475,100 S CHURCH ST,ROCKY MOUNT,NC ,27804,278045701,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Methodist,95,15,95,–,–,80,15,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,6.67,0,0.00,14,93.33,0,0.00,0,0.00,7.50,2.00 +2450 CHILDCARE INC DBA HAPPY DAYS CHILDCARE,INDIANA,INDIANA,18,HAPPY DAYS CHILDCARE & LEARNING CENTER,A0700925,LAKE,18089,2199231333,2450 LINCOLN ST,HIGHLAND,IN ,46322,463221822,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,38,20,26,–,–,18,8,–,–,–,–,–,–,–,–,–,–,–,–,12,0,0.00,0,0.00,7,35.00,5,25.00,8,40.00,0,0.00,0,0.00,20.00,1.00 +2ND NATURE ACADEMY,NEW HAMPSHIRE,NEW HAMPSHIRE,33,SECOND NATURE ACADEMY,A0106240,HILLSBOROUGH,33011,6038814815,10 GROTON RD,NASHUA,NH ,03062,03062,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,57,11,57,–,–,46,11,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,9.09,0,0.00,0,0.00,10,90.91,0,0.00,0,0.00,7.86,1.40 +40 MILE COLONY,MONTANA,MONTANA,30,40 MILE COLONY,A0902047,BIG HORN,30003,4066392457,PO BOX 3,LODGE GRASS,MT ,59050,590500003,Kindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Brethren,6,6,2,4,–,–,2,1,1,–,1,–,–,–,1,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,6,100.00,0,0.00,0,0.00,3.16,1.90 +5TH STREET COLLEGE OF BERTHOUD,COLORADO,COLORADO,08,5TH STREET COLLEGE OF BERTHOUD,A9705123,LARIMER,08069,9705323653,PO BOX 722,BERTHOUD,CO ,80513,805130722,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,21,3,21,–,–,18,3,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,3,100.00,0,0.00,0,0.00,3.00,1.00 +9107 LITTLE FRIENDS ACADEMY INC,PENNSYLVANIA,PENNSYLVANIA,42,LITTLE FRIENDS CHILD CARE & KINDERGARTEN,K9305227,DELAWARE,42045,6104467171,9107 W CHESTER PIKE,UPPER DARBY,PA ,19082,190821108,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,28,10,28,–,–,18,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,8,80.00,2,20.00,0,0.00,0,0.00,10.00,1.00 +91ST PSALM CHRISTIAN SCHOOL,ARIZONA,ARIZONA,04,91ST PSALM CHRISTIAN SCHOOL,A9700074,MARICOPA,04013,6022431900,2020 E BASELINE RD,PHOENIX,AZ ,85042,850426906,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),145,145,24,98,23,–,24,16,20,13,13,6,12,6,12,6,6,6,5,–,0,0.00,1,0.69,56,38.62,37,25.52,51,35.17,0,0.00,0,0.00,8.53,17.00 +92ND STREET YM&YWHA NURSERY SCHOOL,NEW YORK,NEW YORK,36,92ND STREET YM&YWHA NURSERY SCHOOL,K9303952,NEW YORK,36061,2124155532,1395 LEXINGTON AVE,NEW YORK,NY ,10128,101281612,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Jewish,196,21,196,–,–,175,21,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,– +A,NEW YORK,NEW YORK,36,AUGUSTINIAN ACADEMY,00928796,JEFFERSON,36045,3154931301,317 WEST ST,CARTHAGE,NY ,13619,136191697,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,1-Catholic,3-Town (ulocale = 31 or 32 or 33),Roman Catholic,149,133,32,117,–,16,16,17,21,19,11,14,12,12,11,–,–,–,–,–,1,0.75,5,3.76,6,4.51,4,3.01,109,81.95,2,1.50,6,4.51,14.78,9.00 +A & B CHRISTIAN SCHOOL,TEXAS,TEXAS,48,A & B CHRISTIAN SCHOOL,BB942865,HARRIS,48201,7139446144,3111 FOREST OAKS BLVD,HOUSTON,TX ,77017,770177127,Prekindergarten,2nd grade,1-Coed (school has male and female students),6-Alternative/other,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),53,13,50,3,–,40,10,2,1,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,15.38,8,61.54,3,23.08,0,0.00,0,0.00,0,0.00,1.44,9.00 +A BETTER CHANCE SCHOOL/CAL AUTISM FOUNDATION,CALIFORNIA,CALIFORNIA,06,A BETTER CHANCE SCHOOL/CAL AUTISM FOUNDATION,A0500119,CONTRA COSTA,06013,5102621500,4138 LAKESIDE DR,RICHMOND,CA ,94806,948061941,All Ungraded,All Ungraded,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,29,29,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,29,0,0.00,3,10.34,3,10.34,4,13.79,15,51.72,0,0.00,4,13.79,7.25,4.00 +A BOOKS CHRISTIAN ACADEMY,FLORIDA,FLORIDA,12,A BOOK'S CHRISTIAN ACADEMY,A9501078,ORANGE,12095,4078840031,1001 ROGER WILLIAMS RD,APOPKA,FL ,32703,327035554,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),57,49,16,41,–,8,8,13,7,5,5,6,5,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,7.21,6.80 +A BRIGHT BEGINNING CHILD DEVELOPMENT CENTER,CALIFORNIA,CALIFORNIA,06,A BRIGHT BEGINNING CHILD DEVELOPMENT CENTER,A0770215,LOS ANGELES,06037,3106734525,712 E MANCHESTER BLVD,INGLEWOOD,CA ,90301,90301,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,65,20,65,–,–,45,20,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,5.00,17,85.00,0,0.00,0,0.00,2,10.00,10.00,2.00 +A BRIGHT BEGINNING CHILDCARE,NEW JERSEY,NEW JERSEY,34,A BRIGHT BEGINNING CHILDCARE,A0106286,MIDDLESEX,34023,7324480400,1440 HOW LN,NORTH BRUNSWICK,NJ ,08902,089024600,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,45,10,45,–,–,35,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,4,40.00,2,20.00,4,40.00,0,0.00,0,0.00,10.00,1.00 +A BRIGHT START CHILD DEVELOPMENT CENTER,NEW JERSEY,NEW JERSEY,34,A BRIGHT START CHILD DEVELOPMENT CENTER,A0106324,SOMERSET,34035,9088220060,97 MOUNT BETHEL RD,WARREN,NJ ,07059,070595126,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,3,1,3,–,–,2,1,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,1,100.00,0,0.00,0,0.00,1.00,1.00 +A C E S,CALIFORNIA,CALIFORNIA,06,A C E S,A0900179,FRESNO,06019,5592918101,3001 PICO AVE,CLOVIS,CA ,93619,936199276,4th grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,5,5,–,4,1,–,–,–,–,–,1,1,–,1,1,–,–,–,1,–,0,0.00,0,0.00,0,0.00,0,0.00,5,100.00,0,0.00,0,0.00,5.00,1.00 +A CHILD S PLACE,MARYLAND,MARYLAND,24,A CHILD S PLACE,A9502014,BALTIMORE CITY,24510,4105325399,4701 N CHARLES ST,BALTIMORE,MD ,21210,212102404,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,1-Catholic,1-City (ulocale = 11 or 12 or 13),Roman Catholic,60,11,60,–,–,49,11,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,9.09,1,9.09,1,9.09,8,72.73,0,0.00,0,0.00,2.75,4.00 +A CHILD S PLACE SCHOOL,NEW JERSEY,NEW JERSEY,34,A CHILD S PLACE SCHOOL,A9502733,MONMOUTH,34025,7327470141,1409 W FRONT ST,LINCROFT,NJ ,07738,077381112,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,59,13,59,–,–,46,13,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,3,23.08,0,0.00,1,7.69,9,69.23,0,0.00,0,0.00,3.25,4.00 +A CHILD'S DREAM CHRISTIAN SCHOOL,TEXAS,TEXAS,48,A CHILD'S DREAM CHRISTIAN SCHOOL,A0903479,BEXAR,48029,2103109240,6025 TEACH RD 104,SAN ANTONIO,TX ,78250,78250,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),14,10,6,8,–,4,2,–,3,–,2,1,2,–,–,–,–,–,–,–,0,0.00,0,0.00,6,60.00,0,0.00,4,40.00,0,0.00,0,0.00,9.09,1.10 +A CHILD'S GARDEN,OREGON,OREGON,41,A CHILD'S GARDEN,A0771471,DESCHUTES,41017,5416170434,2150 NE STUDIO RD STE 1,BEND,OR ,97701,97701,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),3-Special Program Emphasis,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,39,3,39,–,–,36,3,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,–,–,0,0.00,2,66.67,0,0.00,1.58,1.90 +A CHILD'S GARDEN,CONNECTICUT,CONNECTICUT,09,A CHILD'S GARDEN INC,A0507274,FAIRFIELD,09001,2034020334,20 IVY BROOK RD,SHELTON,CT ,06484,064846402,Kindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,43,43,43,–,–,–,43,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,4,9.30,0,0.00,0,0.00,39,90.70,0,0.00,0,0.00,22.63,1.90 +A CHILD'S GARDEN MONTESSORI SCHOOL,CONNECTICUT,CONNECTICUT,09,A CHILD'S GARDEN MONTESSORI SCHOOL,A9900904,NEW LONDON,09011,8605721283,28 WHITTAKER DR,STONINGTON,CT ,06378,063781722,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,30,6,30,–,–,24,6,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,16.67,0,0.00,5,83.33,0,0.00,0,0.00,1.67,3.60 +A CHILD'S PLACE,PENNSYLVANIA,PENNSYLVANIA,42,A CHILD'S PLACE,K9305325,CHESTER,42029,6106874999,524 SUGARTOWN RD,DEVON,PA ,19333,193331716,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,21,6,21,–,–,15,6,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,6,100.00,0,0.00,0,0.00,6.00,1.00 +A CHILD'S PLACE,NEW JERSEY,NEW JERSEY,34,A CHILD'S PLACE,A0771128,SOMERSET,34035,9083698890,302 S BRANCH RD,HILLSBOROUGH,NJ ,08844,08844,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,62,14,62,–,–,48,14,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,14.29,1,7.14,0,0.00,11,78.57,0,0.00,0,0.00,14.00,1.00 +A CHILD'S PLACE DAY SCHOOL,NEW YORK,NEW YORK,36,A CHILD'S PLACE DAY SCHOOL,BB964072,QUEENS,36081,7185652170,3220 108TH ST,EAST ELMHURST,NY ,11369,113692524,Prekindergarten,2nd grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,175,55,152,23,–,120,32,16,7,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,3.64,24,43.64,24,43.64,3,5.45,0,0.00,2,3.64,9.17,6.00 +A CHILD'S PLACE MONTESSORI SCHOOL,FLORIDA,FLORIDA,12,A CHILD'S PLACE MONTESSORI SCHOOL,A9705218,DUVAL,12031,9042684050,12601 SAN JOSE BLVD,JACKSONVILLE,FL ,32223,322232646,Prekindergarten,3rd grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,65,16,54,11,–,49,5,4,4,3,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,6.25,1,6.25,14,87.50,0,0.00,0,0.00,4.00,4.00 +A CHILD'S TOUCH,COLORADO,COLORADO,08,A CHILD'S TOUCH,A9101510,ADAMS,08001,3032868460,9141 POZE BLVD,THORNTON,CO ,80229,802294660,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),87,32,87,–,–,55,32,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,7,21.88,0,0.00,25,78.13,0,0.00,0,0.00,9.41,3.40 +A CHILD'S WORLD,PENNSYLVANIA,PENNSYLVANIA,42,A CHILD'S WORLD,A0108771,BUCKS,42017,2159498900,183 BRISTOL OXFORD VALLEY RD,LANGHORNE,PA ,19047,190473030,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,54,12,54,–,–,42,12,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,8.33,1,8.33,4,33.33,6,50.00,0,0.00,0,0.00,4.00,3.00 +A CHILD'S WORLD,NORTH DAKOTA,NORTH DAKOTA,38,A CHILD'S WORLD,A0902553,CASS,38017,7012988047,3100 12TH AVE N,FARGO,ND ,58102,58102,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,24,7,24,–,–,17,7,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,7,100.00,0,0.00,0,0.00,6.36,1.10 +A CHILDREN'S HABITAT MONTESSORI SCHOOL,INDIANA,INDIANA,18,A CHILDREN'S HABITAT MONTESSORI PRESCHOOL & KDGN,A0790077,MARION,18097,3177265584,801 W 73RD ST,INDIANAPOLIS,IN ,46260,462604150,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,42,3,42,–,–,39,3,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,3,100.00,0,0.00,0,0.00,7.50,0.40 +A CHILDRENS PLACE LEARNING CENTER,PENNSYLVANIA,PENNSYLVANIA,42,A CHILDRENS PLACE LEARNING CENTER,A0902783,LEHIGH,42077,6102640440,719 ROBLE RD,ALLENTOWN,PA ,18109,181099564,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,22,11,22,–,–,11,11,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,9.09,0,0.00,10,90.91,0,0.00,0,0.00,11.00,1.00 +A CHILDS GARDEN MONTESSORI SCHOOL,TEXAS,TEXAS,48,A CHILDS GARDEN MONTESSORI SCHOOL,AA000003,DALLAS,48113,9724462663,1935 OLD DENTON RD,CARROLLTON,TX ,75006,75006,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,60,10,60,–,–,50,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,20.00,3,30.00,0,0.00,5,50.00,0,0.00,0,0.00,2.00,5.00 +A CHILDS PLACE MONTESSORI,FLORIDA,FLORIDA,12,A CHILDS PLACE MONTESSORI,A9501079,DUVAL,12031,9047335797,3718 SALISBURY RD,JACKSONVILLE,FL ,32216,322166112,All Ungraded,All Ungraded,1-Coed (school has male and female students),2-Montessori,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,75,75,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,75,0,0.00,15,20.00,0,0.00,0,0.00,60,80.00,0,0.00,0,0.00,11.36,6.60 +A CHILDS VIEW PRESCHOOL,COLORADO,COLORADO,08,A CHILDS VIEW PRESCHOOL,A0507124,JEFFERSON,08059,3039893961,3265 S WADSWORTH BLVD BLDG 3,LAKEWOOD,CO ,80227,802275017,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,90,45,90,–,–,45,45,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,15.00,3.00 +A CHILDS WORLD,PENNSYLVANIA,PENNSYLVANIA,42,A CHILDS WORLD,A0902693,BUCKS,42017,2153487200,2001 S EASTON RD,DOYLESTOWN,PA ,18901,189012723,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,56,25,56,–,–,31,25,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,3,12.00,0,0.00,1,4.00,21,84.00,0,0.00,0,0.00,25.00,1.00 +A CHILDS WORLD,PENNSYLVANIA,PENNSYLVANIA,42,CHILDS WORLD INC,A9903610,BUCKS,42017,2155048100,2147 S EAGLE RD,NEWTOWN,PA ,18940,189401575,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,20,10,20,–,–,10,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,10,100.00,0,0.00,0,0.00,10.00,1.00 +A COUNTRY GARDEN MONTESSORI,WASHINGTON,WASHINGTON,53,A COUNTRY GARDEN MONTESSORI,A0971821,KING,53033,3608258886,38722 BLACK DIAMOND RD,ENUMCLAW,WA ,98022,98022,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,20,2,20,–,–,18,2,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,2,100.00,0,0.00,0,0.00,2.00,1.00 +A DIFFERENT WORLD ACADEMY,LOUISIANA,LOUISIANA,22,A DIFFERENT WORLD ACADEMY,A0901570,JEFFERSON,22051,5043944644,PO BOX 788,HARVEY,LA ,70059,700590788,3rd grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),18,18,–,9,9,–,–,–,–,3,–,1,1,3,1,6,–,–,3,–,0,0.00,0,0.00,0,0.00,18,100.00,0,0.00,0,0.00,0,0.00,9.47,1.90 +A FANTIS SCHOOL,NEW YORK,NEW YORK,36,A FANTIS PAROCHIAL SCHOOL,BB061076,KINGS,36047,7186240501,195 STATE ST,BROOKLYN,NY ,11201,112015757,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Greek Orthodox,144,91,70,74,–,53,17,8,11,8,7,9,9,8,14,–,–,–,–,–,0,0.00,1,1.10,4,4.40,11,12.09,75,82.42,0,0.00,0,0.00,4.16,21.90 +A GENERATION AHEAD CHILD CARE/LEARNING CENTER,ILLINOIS,ILLINOIS,17,A GENERATION AHEAD CHILD CARE/LEARNING CENTER,A0507700,DUPAGE,17043,6302711025,2055 BURLINGTON AVE,LISLE,IL ,60532,605321646,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,57,6,57,–,–,51,6,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,2,33.33,1,16.67,3,50.00,0,0.00,0,0.00,5.45,1.10 +A GROWING PLACE MONTESSORI SCHOOL,MISSOURI,MISSOURI,29,A GROWING PLACE MONTESSORI SCHOOL,A9502589,ST. LOUIS,29189,3148639493,101 N BEMISTON AVE,SAINT LOUIS,MO ,63105,63105,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,23,3,23,–,–,20,3,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,2,66.67,0,0.00,1,33.33,1.20,2.50 +A HABITAT FOR LEARNING,TEXAS,TEXAS,48,A HABITAT FOR LEARNING,A0771713,TAYLOR,48441,3256922481,3242 BELTWAY S,ABILENE,TX ,79606,796065603,Prekindergarten,Transitional 1st grade,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,188,68,188,–,–,120,68,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,2.94,17,25.00,16,23.53,33,48.53,0,0.00,0,0.00,34.00,2.00 +A JOYFUL NOISE LEARNING CENTER,CALIFORNIA,CALIFORNIA,06,A JOYFUL NOISE LEARNING CENTER,BB100187,ALAMEDA,06001,5107828593,26555 GADING RD,HAYWARD,CA ,94544,94544,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Baptist,14,8,14,–,–,6,8,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,3,37.50,2,25.00,3,37.50,0,0.00,0,0.00,8.00,1.00 +A KID'S PLACE,VIRGINIA,VIRGINIA,51,A KID'S PLACE,A9708049,LOUDOUN,51107,7034041595,12215 SUGAR MAPLE DR,HERNDON,VA ,20170,20170,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,27,9,27,–,–,18,9,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,9,100.00,0,0.00,0,0.00,3.00,3.00 +A LITTLE COLLEGE AT ROYAL OAKS,FLORIDA,FLORIDA,12,A LITTLE COLLEGE AT ROYAL OAKS,BB080442,MIAMI-DADE,12086,3055109869,PO BOX 170363,MIAMI LAKES,FL ,33016,330165804,†,†,1-Coed (school has male and female students),1-Regular Elementary or Secondary,†,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,140,–,120,20,–,95,25,11,9,–,–,–,–,–,–,–,–,–,–,–,0,–,7,–,12,–,8,–,17,–,–,–,–,–,–,6.00 +A MOTHER'S TOUCH CREATIVE LEARNING CENTER,ILLINOIS,ILLINOIS,17,A MOTHER'S TOUCH CREATIVE LEARNING CENTER,BB000456,COOK,17031,8475777600,125 N DRYDEN AVE,ARLINGTON HEIGHTS,IL ,60004,60004,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,84,24,84,–,–,60,24,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,4.17,2,8.33,21,87.50,0,0.00,0,0.00,17.14,1.40 +A NEW DAWN ELEMENTARY SCHOOL,NEW YORK,NEW YORK,36,A NEW DAWN ELEMENTARY SCHOOL,A0107740,QUEENS,36081,7182061500,8914 163RD ST,JAMAICA,NY ,11432,114325070,Prekindergarten,3rd grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,27,7,26,1,–,20,6,–,–,1,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,7,100.00,0,0.00,0,0.00,0,0.00,1.75,4.00 +A PLACE TO GROW,OHIO,OHIO,39,A PLACE TO GROW,A9707442,FRANKLIN,39049,6147931441,6760 DISCOVERY BLVD,DUBLIN,OH ,43017,43017,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,106,33,81,–,–,73,8,–,–,–,–,–,–,–,–,–,–,–,–,25,0,0.00,1,3.03,1,3.03,0,0.00,30,90.91,0,0.00,1,3.03,11.79,2.80 +A SMALL WORLD,MARYLAND,MARYLAND,24,A SMALL WORLD,A9502015,BALTIMORE,24005,4103569290,4506 PAINTERS MILL RD,OWINGS MILLS,MD ,21117,21117,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,84,52,38,–,–,32,6,–,–,–,–,–,–,–,–,–,–,–,–,46,0,0.00,0,0.00,0,0.00,52,100.00,0,0.00,0,0.00,0,0.00,10.40,5.00 +A SMALL WORLD LEARNING CENTER IV,FLORIDA,FLORIDA,12,A SMALL WORLD LEARNING CENTER IV,BB100383,MIAMI-DADE,12086,7863182020,840 EAST 25TH ST,HIALEAH,FL ,33013,33013,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,37,15,37,–,–,22,15,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,13,86.67,2,13.33,0,0.00,0,0.00,0,0.00,7.50,2.00 +A STEP AHEAD PRESCHOOL,NEW JERSEY,NEW JERSEY,34,A STEP AHEAD PRESCHOOL,A0106293,HUDSON,34017,2018695335,610 76TH ST,NORTH BERGEN,NJ ,07047,070474906,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),29,23,29,–,–,6,23,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,23.00,1.00 +A STEP UP INC.,RHODE ISLAND,RHODE ISLAND,44,A STEP UP INC,K9305466,KENT,44003,4018237837,88 CROMPTON RD,EAST GREENWICH,RI ,02818,028181202,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),19,2,19,–,–,17,2,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,–,–,–,–,–,–,–,–,3.33,0.60 +A UNIQUE LEARNING ACADEMY,GEORGIA,GEORGIA,13,A UNIQUE LEARNING ACADEMY,A0102857,DEKALB,13089,7704848226,7290 COVINGTON HWY,LITHONIA,GA ,30058,300587608,Prekindergarten,1st grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),28,13,20,8,–,15,5,8,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,8,61.54,0,0.00,0,0.00,5,38.46,6.84,1.90 +A WEE PROMISE CHRISTIAN PRESCHOOL & SCHOOL,FLORIDA,FLORIDA,12,A WEE PROMISE CHRISTIAN PRESCHOOL & SCHOOL,A0900756,LEE,12071,2394819951,8400 CYPRESS LAKE DR,FORT MYERS,FL ,33919,33919,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Baptist,53,6,53,–,–,47,6,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,16.67,1,16.67,4,66.67,0,0.00,0,0.00,6.00,1.00 +A WHIZZ KIDS PRESCHOOL INC II,ILLINOIS,ILLINOIS,17,A WHIZZ KIDS PRESCHOOL INC II,BB020971,COOK,17031,7737680880,2600 E 83RD ST,CHICAGO,IL ,60617,606172001,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,17,5,17,–,–,12,5,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,5,100.00,0,0.00,0,0.00,0,0.00,5.00,1.00 +A WORLD OF CHILDREN,VIRGINIA,VIRGINIA,51,A WORLD OF CHILDREN,A9708050,VIRGINIA BEACH,51810,7574680452,3478 HOLLAND RD,VIRGINIA BEACH,VA ,23452,234524873,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,19,8,19,–,–,11,8,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,2,25.00,5,62.50,1,12.50,0,0.00,0,0.00,4.00,2.00 +A WORLD OF CHILDREN,VIRGINIA,VIRGINIA,51,A WORLD OF CHILDREN,A0109638,CHESAPEAKE,51550,7574366967,752 CEDAR RD,CHESAPEAKE,VA ,23322,23322,Prekindergarten,1st grade,1-Coed (school has male and female students),6-Alternative/other,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,73,21,67,6,–,52,15,6,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,4.76,1,4.76,7,33.33,10,47.62,0,0.00,2,9.52,10.50,2.00 +A WORLD OF HOPE CC LEARNING CTR,GEORGIA,GEORGIA,13,A WORLD OF HOPE CC LEARNING CTR,A0970996,COLUMBIA,13073,7068688955,671 E ROBINSON AVE,GROVETOWN,GA ,30813,308132224,Prekindergarten,2nd grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Baptist,28,12,22,6,–,16,6,4,2,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,8.33,7,58.33,3,25.00,0,0.00,1,8.33,4.62,2.60 +A YOUNG CHILDRENS MONTESSORI ACADEMY,FLORIDA,FLORIDA,12,A YOUNG CHILDRENS MONTESSORI ACADEMY,A0102854,LEE,12071,2395409400,3221 CHIQUITA BLVD S,CAPE CORAL,FL ,33914,339144288,Prekindergarten,3rd grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,62,18,48,14,–,44,4,6,6,2,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,13,72.22,1,5.56,4,22.22,0,0.00,0,0.00,2.25,8.00 +AARDVARK CHILD CARE & LEARNING CENTER,PENNSYLVANIA,PENNSYLVANIA,42,AARDVARK CHILD CARE & LEARNING CENTER,A0902694,DELAWARE,42045,6103588998,PO BOX 469 335 CHEYNEY RD,GLEN MILLS,PA ,19342,19342,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,16,1,16,–,–,15,1,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,1,100.00,0,0.00,0,0.00,0.71,1.40 +AARON SCHOOL,NEW YORK,NEW YORK,36,AARON SCHOOL,A0502391,NEW YORK,36061,2128679594,309 E 45TH ST,NEW YORK,NY ,10017,10017,Kindergarten,5th grade,1-Coed (school has male and female students),4-Special Education,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,116,116,18,98,–,–,18,19,10,23,22,24,–,–,–,–,–,–,–,–,0,0.00,3,2.59,2,1.72,3,2.59,103,88.79,0,0.00,5,4.31,4.16,27.90 +ABBEVILLE CHRISTIAN ACADEMY,ALABAMA,ALABAMA,01,ABBEVILLE CHRISTIAN ACADEMY,00001026,HENRY,01067,3345855100,PO BOX 9,ABBEVILLE,AL ,36310,363100009,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),169,157,27,87,55,12,15,11,13,8,7,9,13,10,16,7,18,15,15,–,0,0.00,3,1.91,2,1.27,1,0.64,150,95.54,0,0.00,1,0.64,9.46,16.60 +ABBOTSFORD CHRISTIAN ACADEMY,WISCONSIN,WISCONSIN,55,ABBOTSFORD CHRISTIAN ACADEMY,02068045,MARATHON,55073,7152234445,4868 CEMETARY AVE,ABBOTSFORD,WI ,54405,544059428,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Other,33,33,3,15,15,–,3,2,1,3,–,3,1,3,2,4,3,3,5,–,0,0.00,0,0.00,0,0.00,0,0.00,33,100.00,0,0.00,0,0.00,5.69,5.80 +ABBOTT HOUSE,SOUTH DAKOTA,SOUTH DAKOTA,46,ABBOTT HOUSE,01283096,DAVISON,46035,6059962486,909 COURT MERRILL,MITCHELL,SD ,57301,573014362,3rd grade,12th grade ,2-All-female (school only has all-female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,3-Town (ulocale = 31 or 32 or 33),Nonsectarian,34,34,–,19,15,–,–,–,–,1,–,1,5,6,6,7,3,3,2,–,15,44.12,0,0.00,1,2.94,3,8.82,15,44.12,0,0.00,0,0.00,8.50,4.00 +ABC 123 A CAT A ME,TEXAS,TEXAS,48,ABC 123 A CAT A ME,BB943172,HARRIS,48201,7137338365,10914 CULLEN BLVD,HOUSTON,TX ,77047,770471154,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,50,25,50,–,–,25,25,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,25,100.00,0,0.00,0,0.00,0,0.00,25.00,1.00 +ABC ACADEMY,INDIANA,INDIANA,18,ABC ACADEMY,A0103294,LAKE,18089,2199450767,480 W 61ST AVE,HOBART,IN ,46342,46342,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,125,15,125,–,–,110,15,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,3,20.00,5,33.33,7,46.67,0,0.00,0,0.00,15.00,1.00 +ABC ACADEMY,ILLINOIS,ILLINOIS,17,ABC ACADEMY,BB021012,COOK,17031,7733381033,2714 W PRATT BLVD,CHICAGO,IL ,60645,606454507,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,13,2,13,–,–,11,2,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,2,100.00,0,0.00,0,0.00,0,0.00,0,0.00,0.67,3.00 +ABC CHILDCARE CENTER,CALIFORNIA,CALIFORNIA,06,ABC CHILDCARE CENTER,A0307071,RIVERSIDE,06065,9516995251,29705 SOLANA WAY,TEMECULA,CA ,92591,925913611,Prekindergarten,5th grade,1-Coed (school has male and female students),6-Alternative/other,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,287,56,259,28,–,231,28,10,13,2,2,1,–,–,–,–,–,–,–,–,0,0.00,4,7.14,12,21.43,8,14.29,32,57.14,0,0.00,0,0.00,9.33,6.00 +ABC CHILDCARE LEARNING CENTER,TEXAS,TEXAS,48,ABC CHILDCARE LEARNING CENTER,BB101572,EL PASO,48141,9158597777,901 HORIZON BLVD,EL PASO,TX ,79927,79927,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,51,15,51,–,–,36,15,–,–,–,–,–,–,–,–,–,–,–,–,–,1,6.67,0,0.00,12,80.00,2,13.33,0,0.00,0,0.00,0,0.00,7.89,1.90 +ABC CHILDREN'S LEARNING ACADEMY,FLORIDA,FLORIDA,12,ABC CHILDREN'S LEARNING ACADEMY,A9705232,PALM BEACH,12099,5169642800,4330 SUMMIT BLVD,WEST PALM BEACH,FL ,33406,334064097,Prekindergarten,1st grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,93,18,85,8,–,75,10,8,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,5.56,9,50.00,3,16.67,5,27.78,0,0.00,0,0.00,9.00,2.00 +ABC CHRISTIAN ACADEMY & PRESCHOOL,FLORIDA,FLORIDA,12,ABC CHRISTIAN ACADEMY,K9301240,DUVAL,12031,9043530103,2360 KINGS RD,JACKSONVILLE,FL ,32209,32209,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Baptist,94,56,52,42,–,38,14,8,5,12,9,3,5,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,56,100.00,0,0.00,0,0.00,0,0.00,14.00,4.00 +ABC DAYCARE & KINDERGARTEN,GEORGIA,GEORGIA,13,ABC DAYCARE & KINDERGARTEN,A0970714,RICHMOND,13245,7067966455,3305 PECAN ST,AUGUSTA,GA ,30906,309069552,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,25,10,25,–,–,15,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,9,90.00,1,10.00,0,0.00,0,0.00,10.00,1.00 +ABC DAYCARE CENTER,NEW JERSEY,NEW JERSEY,34,ABC DAYCARE CENTER,A0307668,OCEAN,34029,7329207410,12 BEAVERSON BLVD,BRICK,NJ ,08723,08723,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,27,18,23,–,–,9,14,–,–,–,–,–,–,–,–,–,–,–,–,4,0,0.00,0,0.00,0,0.00,3,16.67,15,83.33,0,0.00,0,0.00,9.00,2.00 +ABC ELEMENTARY SCHOOL,NEW JERSEY,NEW JERSEY,34,ABC ELEMENTARY SCHOOL,A9104267,HUDSON,34017,2014358326,228 BIDWELL AVE,JERSEY CITY,NJ ,07305,073053323,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Seventh–Day Adventist,19,16,5,14,–,3,2,1,3,1,–,–,2,3,4,–,–,–,–,–,0,0.00,0,0.00,2,12.50,14,87.50,0,0.00,0,0.00,0,0.00,4.10,3.90 +ABC EXPRESS PRESCHOOL,NEW JERSEY,NEW JERSEY,34,ABC EXPRESS PRESCHOOL INC,A0106295,GLOUCESTER,34015,8565890826,697 DELSEA DR,PITMAN,NJ ,08071,080711231,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,25,5,25,–,–,20,5,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1,20.00,0,0.00,4,80.00,0,0.00,0,0.00,2.50,2.00 +ABC GROWING TREE,NEW JERSEY,NEW JERSEY,34,ABC GROWING TREE,A0106296,MORRIS,34027,9739894141,271 US HIGHWAY 46,MINE HILL,NJ ,07803,07803,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,18,6,18,–,–,12,6,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,1.33,4.50 +ABC INTERNATIONAL MONTESSORI ACADEMY,MINNESOTA,MINNESOTA,27,ABC INTERNATIONAL MONTESSORI ACADEMY,A0105209,HENNEPIN,27053,9528811717,10801 NORMANDALE BLVD,BLOOMINGTON,MN ,55437,554373122,Prekindergarten,6th grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),46,26,31,15,–,20,11,6,–,3,2,2,2,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,2.03,12.80 +ABC JUNCTION LLC,NEW HAMPSHIRE,NEW HAMPSHIRE,33,ABC JUNCTION LLC,A9902871,HILLSBOROUGH,33011,6034245620,259 CHARLES BANCROFT HWY,LITCHFIELD,NH ,03052,03052,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,32,11,32,–,–,21,11,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,9.09,0,0.00,0,0.00,10,90.91,0,0.00,0,0.00,5.50,2.00 +ABC KINDERGARTEN,TEXAS,TEXAS,48,ABC KINDERGARTEN,A9707907,BOWIE,48037,9037931453,3505 BEECHWOOD LN,TEXARKANA,TX ,75501,755017913,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),9,4,9,–,–,5,4,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,1,25.00,3,75.00,0,0.00,0,0.00,4.00,1.00 +ABC LEARNING CENTRE INC (DBA ABC-STEWART SCHOOL),INDIANA,INDIANA,18,ABC LEARNING CENTER INC,00425908,BARTHOLOMEW,18005,8123423029,6691 W STATE ROAD 46,COLUMBUS,IN ,47201,472015079,Prekindergarten,6th grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,202,105,127,75,–,97,30,15,16,15,9,9,11,–,–,–,–,–,–,–,0,0.00,18,17.14,3,2.86,2,1.90,82,78.10,0,0.00,0,0.00,6.03,17.40 +ABC LITTLE SCHOOL,CALIFORNIA,CALIFORNIA,06,A B C LITTLE SCHOOL,A9100483,LOS ANGELES,06037,8187865169,6447 WOODMAN AVE,VAN NUYS,CA ,91401,914011603,Prekindergarten,2nd grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,83,20,78,5,–,63,15,1,4,–,–,–,–,–,–,–,–,–,–,–,0,0.00,3,15.00,8,40.00,3,15.00,5,25.00,0,0.00,1,5.00,20.00,1.00 +ABC LITTLE SCHOOL,CALIFORNIA,CALIFORNIA,06,ABC LITTLE SCHOOL,01898328,LOS ANGELES,06037,8187860310,14926 BURBANK BLVD,SHERMAN OAKS,CA ,91411,914113609,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,26,14,26,–,–,12,14,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,4,28.57,4,28.57,6,42.86,0,0.00,0,0.00,14.00,1.00 +ABC LITTLE SCHOOL,CALIFORNIA,CALIFORNIA,06,ABC LITTLE SCHOOL,A0300103,LOS ANGELES,06037,8187665557,11728 MOORPARK ST,STUDIO CITY,CA ,91604,916042111,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,81,11,81,–,–,70,11,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,11.00,1.00 +ABC LITTLE SCHOOLS - WEST HOLLYWOOD,CALIFORNIA,CALIFORNIA,06,ABC LITTLE SCHOOLS - WEST HOLLYWOOD,A9302116,LOS ANGELES,06037,3236549920,927 N FAIRFAX AVE,WEST HOLLYWOOD,CA ,90046,900467203,Prekindergarten,1st grade,1-Coed (school has male and female students),6-Alternative/other,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,50,10,48,2,–,40,8,2,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,3,30.00,2,20.00,0,0.00,5,50.00,0,0.00,0,0.00,10.00,1.00 +ABC MONTESSORI ACADEMY FOR THE BRILLIANT CHILD,GEORGIA,GEORGIA,13,ABC MONTESSORI ACADEMY FOR THE BRILLIANT CHILD,A0700686,HENRY,13151,7709579998,483 WALKER DR,MCDONOUGH,GA ,30253,302537413,Prekindergarten,12th grade ,1-Coed (school has male and female students),2-Montessori,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,83,63,43,32,6,20,23,12,4,4,4,3,1,1,3,3,–,1,2,2,0,0.00,9,14.29,2,3.17,19,30.16,33,52.38,0,0.00,0,0.00,6.00,10.50 +ABC OF NC CHILD DEVELOPMENT CENTER,NORTH CAROLINA,NORTH CAROLINA,37,ABC OF NC CHILD DEVELOPMENT CENTER,A0902446,FORSYTH,37067,3362511180,3904 OLD VINEYARD RD,WINSTON SALEM,NC ,27104,271044740,Prekindergarten,7th grade,1-Coed (school has male and female students),4-Special Education,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,43,12,36,7,–,31,5,3,1,1,–,–,1,1,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,1,8.33,11,91.67,0,0.00,0,0.00,2.79,4.30 +ABC PLAYHOUSE,CALIFORNIA,CALIFORNIA,06,ABC PLAYHOUSE,00094237,LOS ANGELES,06037,3103711231,18213 PRAIRIE AVE,TORRANCE,CA ,90504,905044830,Prekindergarten,1st grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,91,36,85,6,–,55,30,6,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,18.00,2.00 +ABC PRESCHOOL & KINDERGARTEN CENTER,NEW YORK,NEW YORK,36,ABC PRESCHOOL & KINDERGARTEN CENTER,BB964100,QUEENS,36081,7186722424,6620 LAUREL HILL BLVD,WOODSIDE,NY ,11377,11377,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,150,15,150,–,–,135,15,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,4,26.67,0,0.00,9,60.00,2,13.33,0,0.00,15.00,1.00 +ABC SCHOOL HOUSE,CALIFORNIA,CALIFORNIA,06,ABC SCHOOL HOUSE,A0770225,LOS ANGELES,06037,8188428466,4102 W VICTORY BLVD,BURBANK,CA ,91505,915051332,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,36,6,36,–,–,30,6,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,16.67,3,50.00,0,0.00,1,16.67,0,0.00,1,16.67,6.00,1.00 +ABC VILLAGE,CALIFORNIA,CALIFORNIA,06,ABC VILLAGE,A0500120,RIVERSIDE,06065,9514910940,40045 VILLAGE RD,TEMECULA,CA ,92591,925917502,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,300,25,300,–,–,275,25,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,8.33,3.00 +ABC'S FOR CHILDREN,PENNSYLVANIA,PENNSYLVANIA,42,ABC'S FOR CHILDREN,K9304728,ALLEGHENY,42003,4123444422,1630 GREENTREE RD,PITTSBURGH,PA ,15220,152201910,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,76,12,76,–,–,64,12,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,12,100.00,0,0.00,0,0.00,1.04,11.50 +ABCD DAYCARE CENTER,IDAHO,IDAHO,16,ABCD DAYCARE CENTER,A9901553,KOOTENAI,16055,2086645013,1124 N C ST,COEUR D'ALENE,ID ,83814,838142321,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,96,21,96,–,–,75,21,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,2,9.52,0,0.00,18,85.71,0,0.00,1,4.76,1.40,15.00 +ABERCROMBIE ACADEMY,TEXAS,TEXAS,48,ABERCROMBIE ACADEMY,BB943634,HARRIS,48201,2813700663,17102 THEISS MAIL ROUTE RD,SPRING,TX ,77379,773796203,Prekindergarten,5th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,137,97,65,72,–,40,25,20,15,10,16,11,–,–,–,–,–,–,–,–,0,0.00,0,0.00,7,7.22,7,7.22,83,85.57,0,0.00,0,0.00,8.22,11.80 +ABERDEEN CHRISTIAN SCHOOL INC,SOUTH DAKOTA,SOUTH DAKOTA,46,ABERDEEN CHRISTIAN SCHOOL ELEMENTARY CAMPUS,02058401,BROWN,46013,6052252053,1500 E MELGAARD RD,ABERDEEN,SD ,57401,574017714,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,3-Town (ulocale = 31 or 32 or 33),Christian (no specific denomination),67,58,21,46,–,9,12,8,6,11,7,8,6,–,–,–,–,–,–,–,0,0.00,1,1.72,0,0.00,0,0.00,57,98.28,0,0.00,0,0.00,5.58,10.40 +ABI CHRISTIAN ACADEMY,MINNESOTA,MINNESOTA,27,ABI CHRISTIAN ACADEMY,A0301888,WASHINGTON,27163,6517397686,6944 HUDSON BLVD,OAKDALE,MN ,55128,551287020,All Ungraded,All Ungraded,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Pentecostal,25,25,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,25,0,0.00,0,0.00,2,8.00,3,12.00,20,80.00,0,0.00,0,0.00,9.62,2.60 +ABIDING HOPE PRESCHOOL,COLORADO,COLORADO,08,ABIDING HOPE PRESCHOOL,A9705126,JEFFERSON,08059,3039329160,6337 S ROBB WAY,LITTLETON,CO ,80127,801272898,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Evangelical Lutheran Church in America (formerly AELC or ALC or LCA),67,15,67,–,–,52,15,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,1,6.67,14,93.33,0,0.00,0,0.00,3.13,4.80 +ABIDING SAVIOR LUTHERAN CHURCH,CALIFORNIA,CALIFORNIA,06,ABIDING SAVIOR LUTHERAN SCHOOL,00081272,ORANGE,06059,9498301461,23262 EL TORO RD,LAKE FOREST,CA ,92630,926304898,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Lutheran Church – Missouri Synod,364,239,160,204,–,125,35,26,20,17,30,19,26,28,38,–,–,–,–,–,0,0.00,19,7.95,34,14.23,4,1.67,179,74.90,0,0.00,3,1.26,17.07,14.00 +ABIDING SAVIOR LUTHERAN SCHOOL,MISSOURI,MISSOURI,29,ABIDING SAVIOR LUTHERAN SCHOOL,AA001609,ST. LOUIS,29189,3148924408,4353 BUTLER HILL RD,SAINT LOUIS,MO ,63128,63128,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Lutheran Church – Missouri Synod,251,167,110,141,–,84,26,24,22,21,15,17,12,10,20,–,–,–,–,–,1,0.60,1,0.60,4,2.40,0,0.00,160,95.81,0,0.00,1,0.60,16.06,10.40 +ABIDING SAVIOR SCHOOL,ARIZONA,ARIZONA,04,ABIDING SAVIOR SCHOOL,K9300079,MARICOPA,04013,4809499064,515 E CONTINENTAL DR,TEMPE,AZ ,85281,85281,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Other Lutheran,17,10,17,–,–,7,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,10.00,2,20.00,0,0.00,7,70.00,0,0.00,0,0.00,9.09,1.10 +ABIDING WORD LUTHERAN SCHOOL,TEXAS,TEXAS,48,ABIDING WORD LUTHERAN SCHOOL,01328969,HARRIS,48201,2818957048,17123 RED OAK DR,HOUSTON,TX ,77090,770902600,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Wisconsin Evangelical Lutheran Synod,126,93,48,78,–,33,15,13,9,12,14,6,14,4,6,–,–,–,–,–,0,0.00,5,5.38,14,15.05,9,9.68,65,69.89,0,0.00,0,0.00,13.29,7.00 +ABILENE BAPTIST ACADEMY,KANSAS,KANSAS,20,ABILENE BAPTIST ACADEMY,AA000007,DICKINSON,20041,7852631032,409 N VAN BUREN ST,ABILENE,KS ,67410,67410,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Baptist,36,36,2,24,10,–,2,2,6,2,3,2,3,2,4,3,–,5,2,–,0,0.00,0,0.00,1,2.78,0,0.00,35,97.22,0,0.00,0,0.00,5.45,6.60 +ABILENE CHRISTIAN SCHOOLS,TEXAS,TEXAS,48,ABILENE CHRISTIAN SCHOOLS,01328801,TAYLOR,48441,3256729200,2550 N JUDGE ELY BLVD,ABILENE,TX ,79601,79601,Prekindergarten,12th grade ,1-Coed (school has male and female students),3-Special Program Emphasis,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Church of Christ,323,272,71,166,86,51,20,19,14,21,21,15,27,25,24,21,15,22,28,–,1,0.37,16,5.88,13,4.78,19,6.99,222,81.62,0,0.00,1,0.37,11.06,24.60 +ABILITIES FIRST,NEW YORK,NEW YORK,36,ABILITIES FIRST,A0902285,DUTCHESS,36027,8455460774,230 NORTH RD,POUGHKEEPSIE,NY ,12601,12601,All Ungraded,All Ungraded,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,92,92,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,92,0,0.00,0,0.00,9,9.78,33,35.87,48,52.17,0,0.00,2,2.17,7.67,12.00 +ABILITY SCHOOL,NEW JERSEY,NEW JERSEY,34,ABILITY SCHOOL,A9104268,BERGEN,34003,2018718808,75 KNICKERBOCKER RD,ENGLEWOOD,NJ ,07631,07631,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,47,43,10,37,–,4,6,5,6,6,11,2,5,1,1,–,–,–,–,–,0,0.00,2,4.65,4,9.30,19,44.19,15,34.88,0,0.00,3,6.98,6.32,6.80 +ABINGDON MONTESSORI SCHOOL,MARYLAND,MARYLAND,24,ABINGDON MONTESSORI SCHOOL,A9103126,MONTGOMERY,24031,8018208646,5144 MASSACHUSETTS AVE,BETHESDA,MD ,20816,208162740,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,35,1,35,–,–,34,1,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,1,100.00,0,0.00,0,0.00,0.20,5.10 +ABINGTON FRIENDS SCHOOL,PENNSYLVANIA,PENNSYLVANIA,42,ABINGTON FRIENDS SCHOOL,01195835,MONTGOMERY,42091,2158864350,575 WASHINGTON LN,JENKINTOWN,PA ,19046,19046,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Friends,702,593,138,300,264,109,29,34,36,25,32,26,43,47,57,58,62,82,62,–,0,0.00,29,4.89,37,6.24,120,20.24,379,63.91,0,0.00,28,4.72,7.66,77.40 +ABINTRA MONTESSORI SCHOOL,TENNESSEE,TENNESSEE,47,ABINTRA MONTESSORI SCHOOL,AA000008,DAVIDSON,47037,6153524317,914 DAVIDSON DR,NASHVILLE,TN ,37205,37205,Prekindergarten,8th grade ,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,146,86,77,69,–,60,17,11,12,14,9,8,6,5,4,–,–,–,–,–,2,2.33,9,10.47,12,13.95,4,4.65,57,66.28,0,0.00,2,2.33,6.62,13.00 +ABIQUA ACADEMY,OREGON,OREGON,41,ABIQUA SCHOOL,A9503341,MARION,41047,5033999020,4985 BATTLE CREEK RD SE STE 107,SALEM,OR ,97302,973029684,Kindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,144,144,19,125,–,–,19,20,20,18,20,20,5,10,12,–,–,–,–,–,1,0.69,11,7.64,5,3.47,5,3.47,118,81.94,0,0.00,4,2.78,11.25,12.80 +ABLE ACADEMY,FLORIDA,FLORIDA,12,ABLE ACADEMY,A0700419,COLLIER,12021,2393527600,3227 HORSESHOE DR S # 111,NAPLES,FL ,34104,341046118,Prekindergarten,7th grade,1-Coed (school has male and female students),4-Special Education,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,25,21,8,17,–,4,4,2,2,2,4,4,1,2,–,–,–,–,–,–,0,0.00,0,0.00,2,9.52,1,4.76,18,85.71,0,0.00,0,0.00,3.00,7.00 +ABOITE CHRISTIAN SCHOOL,INDIANA,INDIANA,18,ABOITE CHRISTIAN SCHOOL,A0740052,ALLEN,18003,2606728544,14615 WINTERS RD,ROANOKE,IN ,46783,46783,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Seventh–Day Adventist,27,25,6,21,–,2,4,2,4,4,3,1,4,2,1,–,–,–,–,–,0,0.00,9,36.00,4,16.00,2,8.00,10,40.00,0,0.00,0,0.00,8.33,3.00 +ABRAHAM JOSHUA HESCHEL HIGH SCHOOL,NEW YORK,NEW YORK,36,ABRAHAM JOSHUA HESCHEL HIGH SCHOOL,A9104665,NEW YORK,36061,2122467717,20 W END AVE,NEW YORK,NY ,10023,100237809,9th grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Jewish,294,294,–,–,294,–,–,–,–,–,–,–,–,–,–,75,74,78,67,–,0,0.00,0,0.00,0,0.00,0,0.00,294,100.00,0,0.00,0,0.00,4.72,62.30 +ABRAMS HEBREW ACADEMY,PENNSYLVANIA,PENNSYLVANIA,42,ABRAMS HEBREW ACADEMY,01906396,BUCKS,42017,2154931800,31 W COLLEGE AVE,YARDLEY,PA ,19067,190671589,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Jewish,232,207,53,179,–,25,28,24,22,20,28,20,28,15,22,–,–,–,–,–,0,0.00,0,0.00,0,0.00,4,1.93,202,97.58,0,0.00,1,0.48,10.84,19.10 +ABRAXAS ACADEMY,PENNSYLVANIA,PENNSYLVANIA,42,CORNELL ABRAXAS ACADEMY,A0902806,BERKS,42011,8109138000,PO BOX 645,MORGANTOWN,PA ,19543,195430645,9th grade,12th grade ,3-All-male (school only has all-male students),3-Special Program Emphasis,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,58,58,–,–,58,–,–,–,–,–,–,–,–,–,–,24,16,13,5,–,0,0.00,0,0.00,8,13.79,30,51.72,20,34.48,0,0.00,0,0.00,4.14,14.00 +ABRAXAS I ARLENE LISSNER HIGH SCHOOL,PENNSYLVANIA,PENNSYLVANIA,42,CORNELL ABRAXAS I ARLENE LISSNER HIGH SCHOOL,01907265,FOREST,42053,8149276615,PO BOX 59,MARIENVILLE,PA ,16239,162390059,9th grade,12th grade ,3-All-male (school only has all-male students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,234,234,–,–,234,–,–,–,–,–,–,–,–,–,–,44,76,59,55,–,0,0.00,2,0.85,38,16.24,125,53.42,69,29.49,0,0.00,0,0.00,5.71,41.00 +ABRAXAS LEADERSHIP DEVELOPMENT PROGRAM,PENNSYLVANIA,PENNSYLVANIA,42,ABRAXAS LEADERSHIP DEVELOPMENT PROGRAM,A9503430,FRANKLIN,42055,7177497440,10058 S MOUNTAIN RD BLDG 6,SOUTH MOUNTAIN,PA ,17261,17261,6th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,115,115,–,22,93,–,–,–,–,–,–,–,4,6,12,30,27,21,15,–,0,0.00,0,0.00,7,6.09,55,47.83,53,46.09,0,0.00,0,0.00,7.19,16.00 +ABRAXAS LEARNING CENTER,PENNSYLVANIA,PENNSYLVANIA,42,ABRAXAS LEARNING CENTER,A0108773,ERIE,42049,8144567225,915 STATE ST,ERIE,PA ,16501,16501,8th grade ,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,44,44,–,4,40,–,–,–,–,–,–,–,–,–,4,8,11,11,10,–,0,0.00,0,0.00,6,13.64,15,34.09,23,52.27,0,0.00,0,0.00,4.00,11.00 +ABRAXAS PITTSBURGH SCHOOL,PENNSYLVANIA,PENNSYLVANIA,42,ABRAXAS PITTSBURGH SCHOOL,A9702795,ALLEGHENY,42003,4129540018,437 TURRETT ST,PITTSBURGH,PA ,15206,152063370,7th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,75,75,–,2,51,–,–,–,–,–,–,–,–,1,1,21,16,9,5,22,0,0.00,1,1.33,15,20.00,42,56.00,17,22.67,0,0.00,0,0.00,5.21,14.40 +ABRAXAS YOUTH CENTER,PENNSYLVANIA,PENNSYLVANIA,42,ABRAXAS YOUTH CENTER,A0902809,FRANKLIN,42055,7177493066,PO BOX 334,SOUTH MOUNTAIN,PA ,17261,17261,6th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,50,50,–,3,47,–,–,–,–,–,–,–,1,1,1,8,15,11,13,–,0,0.00,0,0.00,3,6.00,10,20.00,35,70.00,0,0.00,2,4.00,6.25,8.00 +ABSORBENT MINDS MONTESSORI SCHOOL,OHIO,OHIO,39,ABSORBENT MINDS MONTESSORI SCHOOL,A0990097,SUMMIT,39153,3304143068,130 BROAD BLVD,CUYAHOGA FALLS,OH ,44221,44221,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,65,5,65,–,–,60,5,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,5,100.00,0,0.00,0,0.00,1.92,2.60 +ABUNDANT LIFE ACADEMY,UTAH,UTAH,49,ABUNDANT LIFE ACADEMY,A0303162,KANE,49025,4352151555,220 W 300 N,KANAB,UT ,84741,847413238,7th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,2-Other religious,3-Town (ulocale = 31 or 32 or 33),Christian (no specific denomination),54,54,–,6,48,–,–,–,–,–,–,–,–,2,4,12,17,11,8,–,0,0.00,0,0.00,3,5.56,3,5.56,48,88.89,0,0.00,0,0.00,10.80,5.00 +ABUNDANT LIFE ACADEMY,VIRGINIA,†,51,†,A0303162,†,†,†,†,†,VA ,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,†,† +ABUNDANT LIFE ACADEMY,NEW JERSEY,NEW JERSEY,34,ABUNDANT LIFE ACADEMY,A9104404,ESSEX,34013,9736679700,390 WASHINGTON AVE,NUTLEY,NJ ,07110,071103603,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Pentecostal,356,282,103,223,30,74,29,36,34,32,38,20,25,21,17,9,6,6,9,–,0,0.00,16,5.67,135,47.87,73,25.89,47,16.67,1,0.35,10,3.55,10.93,25.80 +ABUNDANT LIFE ACADEMY,NEW YORK,NEW YORK,36,ABUNDANT LIFE ACADEMY,A0701576,ONONDAGA,36067,3157019244,7000 ALL NATIONS BLVD,EAST SYRACUSE,NY ,13057,13057,Prekindergarten,5th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),96,67,40,56,–,29,11,17,11,15,6,7,–,–,–,–,–,–,–,–,0,0.00,5,7.46,5,7.46,22,32.84,35,52.24,0,0.00,0,0.00,9.57,7.00 +ABUNDANT LIFE ACADEMY,SOUTH CAROLINA,SOUTH CAROLINA,45,ABUNDANT LIFE ACADEMY,A0503198,JASPER,45053,8437843171,PO BOX 310,HARDEEVILLE,SC ,29927,29927,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),148,141,15,84,39,7,8,10,11,9,9,12,10,13,10,13,11,2,13,10,0,0.00,3,2.13,47,33.33,35,24.82,50,35.46,0,0.00,6,4.26,12.82,11.00 +ABUNDANT LIFE ACADEMY,OREGON,OREGON,41,ABUNDANT LIFE ACADEMY,A0108720,LINCOLN,41041,5413364320,1154 NW A ST,TOLEDO,OR ,97391,973912242,Prekindergarten,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,3-Town (ulocale = 31 or 32 or 33),Assembly of God,25,17,11,12,2,8,3,2,2,3,–,1,3,1,–,–,–,1,1,–,0,0.00,0,0.00,2,11.76,0,0.00,15,88.24,0,0.00,0,0.00,8.50,2.00 +ABUNDANT LIFE ACADEMY,WISCONSIN,WISCONSIN,55,ABUNDANT LIFE ACADEMY,02067846,BARRON,55005,7154584077,1851 13 1/2 14TH AVE,CAMERON,WI ,54822,54822,3rd grade,10th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Pentecostal,6,6,–,4,2,–,–,–,–,1,–,1,2,–,–,1,1,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,6,100.00,0,0.00,0,0.00,6.00,1.00 +ABUNDANT LIFE CHRISTIAN ACADEMY,FLORIDA,FLORIDA,12,ABUNDANT LIFE CHRISTIAN ACADEMY,A0900758,PINELLAS,12103,7278316325,PO BOX 1696,LARGO,FL ,33779,337791696,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Assembly of God,70,70,5,44,21,–,5,6,5,10,4,5,3,5,6,5,6,4,6,–,0,0.00,0,0.00,59,84.29,3,4.29,5,7.14,0,0.00,3,4.29,–,– +ABUNDANT LIFE CHRISTIAN ACADEMY,TENNESSEE,TENNESSEE,47,ABUNDANT LIFE CHRISTIAN ACADEMY,A0503272,HARDEMAN,47069,7316584979,15774 HIGHWAY 64,BOLIVAR,TN ,38008,380083925,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),20,20,1,9,10,–,1,2,–,1,–,1,1,1,3,1,2,4,3,–,0,0.00,0,0.00,0,0.00,0,0.00,17,85.00,0,0.00,3,15.00,6.45,3.10 +ABUNDANT LIFE CHRISTIAN ACADEMY,FLORIDA,FLORIDA,12,ABUNDANT LIFE CHRISTIAN ACADEMY,A9101662,BROWARD,12011,9549792665,1494 BANKS RD,MARGATE,FL ,33063,330633920,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),343,260,112,231,–,83,29,28,33,29,26,33,31,36,15,–,–,–,–,–,0,0.00,11,4.23,34,13.08,128,49.23,64,24.62,0,0.00,23,8.85,11.50,22.60 +ABUNDANT LIFE CHRISTIAN ACADEMY,WISCONSIN,WISCONSIN,55,ABUNDANT LIFE CHRISTIAN ACADEMY,A9106874,WAUKESHA,55133,2629655177,995 S SAWYER RD,OCONOMOWOC,WI ,53066,530669243,Prekindergarten,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Pentecostal,32,30,5,15,12,2,3,1,1,6,1,1,2,2,1,3,4,3,2,–,0,0.00,0,0.00,3,10.00,1,3.33,25,83.33,0,0.00,1,3.33,5.00,6.00 +ABUNDANT LIFE CHRISTIAN ACADEMY,WISCONSIN,WISCONSIN,55,ABUNDANT LIFE CHRISTIAN ACADEMY,A9904469,CLARK,55019,7156695657,107 E HILL ST,THORP,WI ,54771,547717629,Kindergarten,11th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Pentecostal,34,34,4,22,8,–,4,7,4,3,2,1,2,2,1,4,–,4,–,–,0,0.00,0,0.00,0,0.00,0,0.00,34,100.00,0,0.00,0,0.00,11.33,3.00 +ABUNDANT LIFE CHRISTIAN LEARNING TREE HOUSE,KENTUCKY,KENTUCKY,21,ABUNDANT LIFE CHRISTIAN LEARNING TREE HOUSE,A0971147,ANDERSON,21005,5028399179,1439 BYPASS N,LAWRENCEBURG,KY ,40342,403429402,Kindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),4,4,4,–,–,–,4,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,4,100.00,0,0.00,0,0.00,3.64,1.10 +ABUNDANT LIFE CHRISTIAN SCHOOL,MASSACHUSETTS,MASSACHUSETTS,25,ABUNDANT LIFE CHRISTIAN SCHOOL,02161237,MIDDLESEX,25017,9786578710,173 CHURCH ST,WILMINGTON,MA ,01887,018872736,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),184,143,59,125,–,41,18,11,15,18,16,16,20,15,14,–,–,–,–,–,0,0.00,5,3.50,5,3.50,14,9.79,119,83.22,0,0.00,0,0.00,11.44,12.50 +ABUNDANT LIFE CHRISTIAN SCHOOL,NEW JERSEY,NEW JERSEY,34,ABUNDANT LIFE CHRISTIAN SCHOOL,BB100994,MORRIS,34027,9734639455,43 S JEFFERSON RD,WHIPPANY,NJ ,07981,07981,Kindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),85,85,19,47,19,–,19,8,9,7,5,4,5,5,4,5,5,5,4,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,11.18,7.60 +ABUNDANT LIFE CHRISTIAN SCHOOL,WEST VIRGINIA,WEST VIRGINIA,54,ABUNDANT LIFE CHRISTIAN SCHOOL,A9904455,OHIO,54069,3045474370,976 CHAPEL HILL RD,TRIADELPHIA,WV ,26059,26059,2nd grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Baptist,11,11,–,6,5,–,–,–,1,2,1,–,1,–,1,–,2,1,2,–,0,0.00,0,0.00,0,0.00,0,0.00,11,100.00,0,0.00,0,0.00,3.55,3.10 +ABUNDANT LIFE CHRISTIAN SCHOOL,NEW MEXICO,NEW MEXICO,35,ABUNDANT LIFE CHRISTIAN SCHOOL,A9104507,BERNALILLO,35001,5058777772,2851 ARENAL RD SW,ALBUQUERQUE,NM ,87121,871214327,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Mennonite,45,38,7,27,11,7,–,4,–,1,5,2,3,6,6,5,1,4,1,–,0,0.00,0,0.00,26,68.42,0,0.00,12,31.58,0,0.00,0,0.00,7.92,4.80 +ABUNDANT LIFE CHRISTIAN SCHOOL,WISCONSIN,WISCONSIN,55,ABUNDANT LIFE CHRISTIAN SCHOOL,01933863,DANE,55025,6082211520,4901 E BUCKEYE RD,MADISON,WI ,53716,537161864,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),257,251,19,154,84,6,13,14,20,17,27,17,21,18,20,19,20,24,21,–,1,0.40,10,3.98,12,4.78,7,2.79,206,82.07,0,0.00,15,5.98,12.68,19.80 +ABUNDANT LIFE CHRISTIAN SCHOOL,SOUTH CAROLINA,SOUTH CAROLINA,45,ABUNDANT LIFE CHRISTIAN SCHOOL,K9500531,GREENVILLE,45045,8642461055,630 FARRS BRIDGE RD,GREENVILLE,SC ,29611,296111861,Prekindergarten,9th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),93,80,26,65,2,13,13,10,14,11,6,5,10,7,2,2,–,–,–,–,0,0.00,0,0.00,1,1.25,5,6.25,66,82.50,0,0.00,8,10.00,8.08,9.90 +ABUNDANT LIFE OUTREACH MINISTRIES,SOUTH CAROLINA,SOUTH CAROLINA,45,ABUNDANT LIFE OUTREACH MINISTRIES,A0307925,LEXINGTON,45063,8037967303,1619 MIDDLETON ST,CAYCE,SC ,29033,290332443,Prekindergarten,3rd grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Christian (no specific denomination),33,25,18,15,–,8,10,6,6,3,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,25,100.00,0,0.00,0,0.00,0,0.00,4.31,5.80 +ABUNDANT LIFE SCHOOL,HAWAII,HAWAII,15,ABUNDANT LIFE SCHOOL,A0307448,HONOLULU,15003,8086215433,650 KILANI AVE,WAHIAWA,HI ,96786,967861904,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,2-Suburb (ulocale = 21 or 22 or 23),Pentecostal,74,25,55,19,–,49,6,8,3,3,2,2,1,–,–,–,–,–,–,–,0,0.00,3,12.00,4,16.00,10,40.00,2,8.00,6,24.00,0,0.00,2.69,9.30 +ACACIA ACADEMY,ILLINOIS,ILLINOIS,17,ACACIA ACADEMY,BB911554,COOK,17031,7085799040,6425 WILLOW SPRINGS RD,LA GRANGE HIGHLANDS,IL ,60525,605254468,3rd grade,12th grade ,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,108,108,–,31,71,–,–,–,–,2,3,5,4,7,10,16,17,14,24,6,0,0.00,2,1.85,10,9.26,32,29.63,63,58.33,1,0.93,0,0.00,9.82,11.00 +ACACIA MONTESSORI SCHOOL,CALIFORNIA,CALIFORNIA,06,ACACIA MONTESSORI CENTER,BB945908,LOS ANGELES,06037,6269669356,450 W ROWLAND ST,COVINA,CA ,91723,91723,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,56,10,56,–,–,46,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,10,100.00,0,0.00,0,0.00,0,0.00,0,0.00,10.00,1.00 +ACACIAWOOD SCHOOL,CALIFORNIA,CALIFORNIA,06,ACACIAWOOD SCHOOL,BB980189,ORANGE,06059,7149951800,2530 W LA PALMA AVE,ANAHEIM,CA ,92801,92801,1st grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,145,145,–,87,58,–,–,9,9,8,5,12,11,18,15,15,15,10,18,–,0,0.00,59,40.69,46,31.72,8,5.52,25,17.24,2,1.38,5,3.45,8.06,18.00 +ACADEME OF THE OAKS,GEORGIA,GEORGIA,13,ACADEME OF THE OAKS,A0700688,DEKALB,13089,4044052173,146 NEW ST,DECATUR,GA ,30030,300304132,9th grade,12th grade ,1-Coed (school has male and female students),3-Special Program Emphasis,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,49,49,–,–,49,–,–,–,–,–,–,–,–,–,–,16,15,8,10,–,0,0.00,2,4.08,2,4.08,8,16.33,37,75.51,0,0.00,0,0.00,6.28,7.80 +ACADEMIA DE LA RECTA PORTA ICDS,DISTRICT OF COLUMBIA,DISTRICT OF COLUMBIA,11,ACADEMIA DE LA RECTA PORTA ICDS,A0300737,DISTRICT OF COLUMBIA,11001,2027268737,7614 GEORGIA AVE NW,WASHINGTON,DC ,20012,200121610,3rd grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),41,41,–,21,20,–,–,–,–,2,2,5,5,3,4,5,6,6,3,–,0,0.00,1,2.44,1,2.44,37,90.24,0,0.00,0,0.00,2,4.88,5.26,7.80 +ACADEMIC ACHIEVEMENT CENTER,FLORIDA,FLORIDA,12,ACADEMIC ACHIEVEMENT CENTER,00259858,HILLSBOROUGH,12057,8136544198,313 PRUETT RD,SEFFNER,FL ,33584,335843116,4th grade,12th grade ,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,12,12,–,8,4,–,–,–,–,–,2,1,1,2,2,1,1,1,1,–,0,0.00,0,0.00,1,8.33,0,0.00,11,91.67,0,0.00,0,0.00,6.00,2.00 +ACADEMIC HIGH SCHOOL,FLORIDA,FLORIDA,12,ACADEMIC HIGH SCHOOL,A0304042,PALM BEACH,12099,5619290333,23114 SANDALFOOT PLAZA DR,BOCA RATON,FL ,33428,334286627,6th grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,49,49,–,9,40,–,–,–,–,–,–,–,2,1,6,10,8,10,12,–,0,0.00,0,0.00,13,26.53,15,30.61,21,42.86,0,0.00,0,0.00,8.31,5.90 +ACADEMIC ILLUMINATION DAY SCHOOL,NORTH CAROLINA,NORTH CAROLINA,37,ACADEMIC ILLUMINATION DAY SCHOOL,A0902447,MECKLENBURG,37119,7047792164,21325 CATAWBA AVE,CORNELIUS,NC ,28031,280318505,8th grade ,12th grade ,1-Coed (school has male and female students),2-Montessori,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,7,7,–,1,6,–,–,–,–,–,–,–,–,–,1,1,2,1,2,–,0,0.00,0,0.00,0,0.00,1,14.29,6,85.71,0,0.00,0,0.00,5.00,1.40 +ACADEMICS PLUS,GEORGIA,GEORGIA,13,ACADEMICS PLUS,A9501433,COLUMBIA,13073,7063643169,717 INDUSTRIAL PARK RD,EVANS,GA ,30809,308093680,Prekindergarten,4th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,15,10,8,7,–,5,3,4,1,1,1,–,–,–,–,–,–,–,–,–,0,0.00,1,10.00,1,10.00,4,40.00,4,40.00,0,0.00,0,0.00,5.00,2.00 +ACADEMIE CHRETIENNE HAITIENNE D'ORLANDO,FLORIDA,FLORIDA,12,ACADEMIE CHRETIENNE HAITIENNE D'ORLANDO,A0300748,ORANGE,12095,4075401800,2514 W COLONIAL DR,ORLANDO,FL ,32804,32804,Kindergarten,11th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),130,130,23,93,14,–,23,16,21,18,14,8,8,8,–,8,2,4,–,–,0,0.00,0,0.00,2,1.54,128,98.46,0,0.00,0,0.00,0,0.00,12.62,10.30 +ACADEMIE DE MONTESSORI,FLORIDA,FLORIDA,12,ACADEMIE DE MONTESSORI,A0101705,DUVAL,12031,9043983830,1216 LASALLE ST,JACKSONVILLE,FL ,32207,322073130,Prekindergarten,3rd grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,54,19,43,11,–,35,8,4,6,1,–,–,–,–,–,–,–,–,–,–,0,0.00,1,5.26,0,0.00,1,5.26,17,89.47,0,0.00,0,0.00,4.42,4.30 +ACADEMIR,FLORIDA,FLORIDA,12,ACADEMIR,A0900759,MIAMI-DADE,12086,3052259141,13911 SW 42ND ST # 108,MIAMI,FL ,33175,33175,Prekindergarten,5th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,174,80,124,50,–,94,30,10,10,10,10,10,–,–,–,–,–,–,–,–,0,0.00,1,1.25,69,86.25,1,1.25,9,11.25,0,0.00,0,0.00,8.33,9.60 +ACADEMIR PRESCHOOL LEARNING CENTER,FLORIDA,FLORIDA,12,ACADEMIR PRESCHOOL LEARNING CENTER,A0507315,MIAMI-DADE,12086,3052202205,11980 SW 8TH ST,MIAMI,FL ,33184,331841667,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,74,25,74,–,–,49,25,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,– +ACADEMY AT ST ROSE PHILIPPINE DUCHESNE,MISSOURI,MISSOURI,29,ACADEMY AT ST ROSE PHILIPPINE DUCHESNE,00752221,ST. LOUIS,29189,3148370369,1220 PADDOCK DR,FLORISSANT,MO ,63033,630333500,1st grade,8th grade ,1-Coed (school has male and female students),4-Special Education,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,1-Catholic,2-Suburb (ulocale = 21 or 22 or 23),Roman Catholic,82,82,–,41,–,–,–,2,2,3,1,6,7,10,10,–,–,–,–,41,41,50.00,3,3.66,1,1.22,11,13.41,26,31.71,0,0.00,0,0.00,14.64,5.60 +ACADEMY AT SWIFT RIVER,MASSACHUSETTS,MASSACHUSETTS,25,ACADEMY AT SWIFT RIVER,A0104077,HAMPSHIRE,25015,4136340307,151 SOUTH ST,CUMMINGTON,MA ,01026,010269501,9th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,57,57,–,–,57,–,–,–,–,–,–,–,–,–,–,5,6,22,24,–,0,0.00,0,0.00,2,3.51,0,0.00,54,94.74,0,0.00,1,1.75,5.18,11.00 +ACADEMY AT THE LAKES,FLORIDA,FLORIDA,12,ACADEMY AT THE LAKES,A9302732,PASCO,12101,8139487600,2220 COLLIER PKWY,LAND O LAKES,FL ,34639,346395284,Prekindergarten,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,355,331,43,202,110,24,19,30,19,24,22,25,28,27,27,33,19,29,29,–,4,1.21,29,8.76,60,18.13,29,8.76,180,54.38,0,0.00,29,8.76,6.95,47.60 +ACADEMY FOR ACADEMIC EXCELLENCE,TENNESSEE,TENNESSEE,47,ACADEMY FOR ACADEMIC EXCELLENCE,A9503777,MONTGOMERY,47125,9316479831,PO BOX 3906,CLARKSVILLE,TN ,37043,370430906,3rd grade,12th grade ,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,40,40,–,9,24,–,–,–,–,2,3,1,1,1,1,5,6,6,7,7,0,0.00,0,0.00,2,5.00,8,20.00,30,75.00,0,0.00,0,0.00,6.67,6.00 +ACADEMY FOR ADVANCEMENT OF CHILDREN WITH AUTISM,CALIFORNIA,CALIFORNIA,06,AUTISM ACADEMY,BB080157,LOS ANGELES,06037,8188820200,20040 PARTHENIA ST,NORTHRIDGE,CA ,91324,91324,4th grade,12th grade ,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,12,12,–,8,4,–,–,–,–,–,1,3,2,1,1,1,1,1,1,–,0,0.00,0,0.00,3,25.00,1,8.33,8,66.67,0,0.00,0,0.00,6.00,2.00 +ACADEMY FOR AUTISM,FLORIDA,FLORIDA,12,ACADEMY FOR AUTISM,A0700420,ORANGE,12095,4078522958,5232 S ORANGE AVE B,ORLANDO,FL ,32809,328093070,All Ungraded,All Ungraded,1-Coed (school has male and female students),4-Special Education,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,19,19,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,19,0,0.00,1,5.26,12,63.16,2,10.53,4,21.05,0,0.00,0,0.00,6.33,3.00 +ACADEMY FOR CHILDREN CHILDCARE,NORTH DAKOTA,NORTH DAKOTA,38,ACADEMY FOR CHILDREN CHILDCARE,AA000011,CASS,38017,7012800718,20 8TH ST S,FARGO,ND ,58103,581031805,Prekindergarten,Kindergarten,2-All-female (school only has all-female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,44,4,44,–,–,40,4,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,4,100.00,0,0.00,0,0.00,1.67,2.40 +ACADEMY FOR INDIVIDUAL EXCELLENCE,KENTUCKY,KENTUCKY,21,ACADEMY FOR INDIVIDUAL EXCELLENCE,00517072,JEFFERSON,21111,5022676187,3101 BLUEBIRD LN,LOUISVILLE,KY ,40299,402993803,Prekindergarten,12th grade ,1-Coed (school has male and female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,4-Rural (ulocale = 41 or 42 or 43),Nonsectarian,393,359,43,189,161,34,9,14,18,20,24,16,30,38,29,45,44,37,35,–,0,0.00,0,0.00,3,0.84,26,7.24,325,90.53,5,1.39,0,0.00,8.43,42.60 +ACADEMY FOR KEENER MINDS,TENNESSEE,TENNESSEE,47,ACADEMY FOR KEENER MINDS,A0903406,MONTGOMERY,47125,9312491600,420 MADISON ST D,CLARKSVILLE,TN ,37040,37040,2nd grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),102,102,–,29,73,–,–,–,3,1,4,2,5,6,8,20,16,19,18,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,1.23,83.00 +ACADEMY FOR KIDS,OREGON,OREGON,41,ACADEMY FOR KIDS INC,A0771477,CLACKAMAS,41005,5035588773,13698 SE 147TH AVE,CLACKAMAS,OR ,97015,970156405,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,60,20,60,–,–,40,20,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,2,10.00,1,5.00,1,5.00,16,80.00,0,0.00,0,0.00,22.22,0.90 +ACADEMY FOR LITTLE CHILDREN,RHODE ISLAND,RHODE ISLAND,44,ACADEMY FOR LITTLE CHILDREN,K9305530,KENT,44003,4018235000,10 JAMES P MURPHY IND HWY,WEST WARWICK,RI ,02893,02893,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,28,10,28,–,–,18,10,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,1,10.00,3,30.00,0,0.00,6,60.00,0,0.00,0,0.00,10.00,1.00 +ACADEMY FOR YOUNG CHILDREN TLC,OHIO,OHIO,39,ACADEMY FOR YOUNG CHILDREN TLC,A9702631,SUMMIT,39153,3306552797,187 RAVENNA ST,HUDSON,OH ,44236,442363466,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,63,16,63,–,–,47,16,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,16,100.00,0,0.00,0,0.00,14.55,1.10 +ACADEMY HILL SCHOOL,MASSACHUSETTS,MASSACHUSETTS,25,ACADEMY HILL SCHOOL,A0701268,HAMPDEN,25013,4137880300,1190 LIBERTY ST,SPRINGFIELD,MA ,01104,011041153,Kindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,108,108,9,99,–,–,9,14,11,14,14,17,12,10,7,–,–,–,–,–,0,0.00,12,11.11,4,3.70,6,5.56,86,79.63,0,0.00,0,0.00,7.66,14.10 +ACADEMY MONTESSORI INTERNATIONALE,MISSOURI,MISSOURI,29,ACADEMY MONTESSORI INTERNATIONALE,AA000010,JACKSON,29095,8169423307,12501 STATE LINE RD,KANSAS CITY,MO ,64145,641451149,Prekindergarten,5th grade,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,84,44,51,33,–,40,11,9,6,7,7,4,–,–,–,–,–,–,–,–,0,0.00,36,81.82,0,0.00,1,2.27,7,15.91,0,0.00,0,0.00,4.94,8.90 +ACADEMY MONTESSORI PRESCHOOL,NEW MEXICO,NEW MEXICO,35,ACADEMY MONTESSORI PRESCHOOL,K9303866,BERNALILLO,35001,5052992527,11216 PHOENIX AVE NE,ALBUQUERQUE,NM ,87112,871121861,Prekindergarten,Kindergarten,1-Coed (school has male and female students),2-Montessori,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,88,11,88,–,–,77,11,–,–,–,–,–,–,–,–,–,–,–,–,–,1,9.09,5,45.45,1,9.09,0,0.00,2,18.18,0,0.00,2,18.18,3.67,3.00 +ACADEMY OF ACADEMIC EXCELLENCE,VIRGINIA,VIRGINIA,51,ACADEMY OF ACADEMIC EXCELLENCE,A0303197,HENRICO,51087,8047406500,PO BOX 4232,GLEN ALLEN,VA ,23058,230584232,Prekindergarten,4th grade,1-Coed (school has male and female students),3-Special Program Emphasis,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,34,29,11,23,–,5,6,6,6,6,5,–,–,–,–,–,–,–,–,–,0,0.00,20,68.97,0,0.00,1,3.45,4,13.79,0,0.00,4,13.79,6.59,4.40 +ACADEMY OF AMHERST JR-SR HIGH SCHOOL,CALIFORNIA,CALIFORNIA,06,ACADEMY OF AMHERST JR-SR HIGH SCHOOL,BB100068,LOS ANGELES,06037,8185037869,CREWE ST,VAN NUYS,CA ,91405,91405,7th grade,12th grade ,1-Coed (school has male and female students),6-Alternative/other,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,14,14,–,5,9,–,–,–,–,–,–,–,–,2,3,1,4,2,2,–,0,0.00,3,21.43,5,35.71,2,14.29,4,28.57,0,0.00,0,0.00,4.67,3.00 +ACADEMY OF BASIC LEARNING,CALIFORNIA,CALIFORNIA,06,ACADEMY OF BASIC LEARNING,02007955,LOS ANGELES,06037,3237771769,10457 S FIGUEROA ST,LOS ANGELES,CA ,90003,900034453,Kindergarten,10th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,26,26,1,21,4,–,1,2,1,3,3,2,4,4,2,2,2,–,–,–,0,0.00,0,0.00,0,0.00,26,100.00,0,0.00,0,0.00,0,0.00,8.67,3.00 +ACADEMY OF CHRISTIAN EDUCATION,VIRGINIA,VIRGINIA,51,ACADEMY OF CHRISTIAN EDUCATION,A9708052,FAIRFAX,51059,7034715790,1808A MICHAEL FARADAY CT,RESTON,VA ,20190,20190,Prekindergarten,6th grade,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,1-City (ulocale = 11 or 12 or 13),Christian (no specific denomination),194,177,124,70,–,17,107,24,24,5,6,8,3,–,–,–,–,–,–,–,0,0.00,150,84.75,0,0.00,3,1.69,19,10.73,0,0.00,5,2.82,11.06,16.00 +ACADEMY OF COASTAL CAROLINA,NORTH CAROLINA,NORTH CAROLINA,37,ACADEMY OF COASTAL CAROLINA,A0902448,BRUNSWICK,37019,9107549637,PO BOX 1988,SHALLOTTE,NC ,28459,28459,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),46,42,9,37,–,4,5,9,6,5,–,1,5,3,8,–,–,–,–,–,0,0.00,0,0.00,0,0.00,0,0.00,41,97.62,0,0.00,1,2.38,5.60,7.50 +ACADEMY OF EARLY LEARNING,VIRGINIA,VIRGINIA,51,ACADEMY OF EARLY LEARNING,A9708053,VIRGINIA BEACH,51810,7573407228,3560 CHESTER ST,VIRGINIA BEACH,VA ,23452,234524305,Prekindergarten,Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,83,18,83,–,–,65,18,–,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,0,0.00,0,0.00,6,33.33,10,55.56,0,0.00,2,11.11,18.00,1.00 +ACADEMY OF EARLY LEARNING,MASSACHUSETTS,MASSACHUSETTS,25,ACADEMY OF EARLY LEARNING,A9706318,BARNSTABLE,25001,5087908104,465 FALMOUTH RD,HYANNIS,MA ,02601,02601,Prekindergarten,1st grade,1-Coed (school has male and female students),6-Alternative/other,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,1-City (ulocale = 11 or 12 or 13),Nonsectarian,61,19,54,7,–,42,12,7,–,–,–,–,–,–,–,–,–,–,–,–,0,0.00,3,15.79,0,0.00,0,0.00,16,84.21,0,0.00,0,0.00,3.80,5.00 +ACADEMY OF EXCELLENCE,NORTH CAROLINA,NORTH CAROLINA,37,ACADEMY OF EXCELLENCE,A0902450,IREDELL,37097,7045004220,612 S RACE ST,STATESVILLE,NC ,28677,286775748,2nd grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,3-Town (ulocale = 31 or 32 or 33),Christian (no specific denomination),18,18,–,7,11,–,–,–,2,1,1,1,–,1,1,4,2,–,5,–,0,0.00,0,0.00,0,0.00,18,100.00,0,0.00,0,0.00,0,0.00,2.95,6.10 +ACADEMY OF EXCELLENCE,ARKANSAS,ARKANSAS,05,THE ACADEMY OF EXCELLENCE,K9500748,CARROLL,05015,4792535400,PO BOX 427,EUREKA SPRINGS,AR ,72632,726320427,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),70,50,29,41,–,20,9,8,3,3,8,6,6,5,2,–,–,–,–,–,1,2.00,3,6.00,1,2.00,1,2.00,42,84.00,0,0.00,2,4.00,8.62,5.80 +ACADEMY OF HIGHER LEARNING MLS,ALASKA,ALASKA,02,ACADEMY OF HIGHER LEARNING MLS,A0100441,KENAI PENINSULA,02122,9072607741,32930 FAIR GAME AVE D,STERLING,AK ,99672,99672,1st grade,12th grade ,1-Coed (school has male and female students),3-Special Program Emphasis,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),17,17,–,9,8,–,–,3,–,1,–,–,–,2,3,2,2,1,3,–,1,5.88,0,0.00,0,0.00,0,0.00,16,94.12,0,0.00,0,0.00,8.50,2.00 +ACADEMY OF HOLY ANGELS,MINNESOTA,MINNESOTA,27,ACADEMY OF HOLY ANGELS,00699979,HENNEPIN,27053,6127982600,6600 NICOLLET AVE,RICHFIELD,MN ,55423,554232498,9th grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,1-Catholic,2-Suburb (ulocale = 21 or 22 or 23),Roman Catholic,764,764,–,–,764,–,–,–,–,–,–,–,–,–,–,200,191,191,182,–,1,0.13,29,3.80,27,3.53,18,2.36,660,86.39,5,0.65,24,3.14,12.63,60.50 +ACADEMY OF HOPE,NORTH CAROLINA,NORTH CAROLINA,37,ACADEMY OF HOPE,A9903306,JOHNSTON,37101,9195508181,408 COVERED BRIDGE RD,CLAYTON,NC ,27520,27520,6th grade,12th grade ,2-All-female (school only has all-female students),6-Alternative/other,3-Combined (school has one or more of grades K-6 and one or more of grades 9-12. Schools in which all students are ungraded are also classified as combined).,2-Other religious,4-Rural (ulocale = 41 or 42 or 43),Christian (no specific denomination),10,10,–,3,7,–,–,–,–,–,–,–,1,2,–,1,4,1,1,–,0,0.00,1,10.00,1,10.00,1,10.00,7,70.00,0,0.00,0,0.00,5.26,1.90 +ACADEMY OF LEARNING,FLORIDA,FLORIDA,12,ACADEMY OF LEARNING,A0900761,SEMINOLE,12117,4073287265,445 S ORANGE BLVD,SANFORD,FL ,32771,327719505,Prekindergarten,Transitional Kindergarten,1-Coed (school has male and female students),7-Early Childhood Program/child care center,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,3-Nonsectarian,2-Suburb (ulocale = 21 or 22 or 23),Nonsectarian,70,43,70,–,–,27,43,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,–,43.00,1.00 +ACADEMY OF MOUNT ST URSULA,NEW YORK,NEW YORK,36,ACADEMY OF MT ST URSULA,00920855,BRONX,36005,7183645353,330 BEDFORD PARK BLVD,BRONX,NY ,10458,10458,9th grade,12th grade ,2-All-female (school only has all-female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,1-Catholic,1-City (ulocale = 11 or 12 or 13),Roman Catholic,343,343,–,–,343,–,–,–,–,–,–,–,–,–,–,84,99,77,83,–,0,0.00,21,6.12,179,52.19,115,33.53,4,1.17,3,0.87,21,6.12,11.91,28.80 +ACADEMY OF NOTRE DAME,MASSACHUSETTS,MASSACHUSETTS,25,ACADEMY OF NOTRE DAME,00600234,MIDDLESEX,25017,9786497611,180 MIDDLESEX RD,TYNGSBORO,MA ,01879,018791598,9th grade,12th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,1-Catholic,4-Rural (ulocale = 41 or 42 or 43),Roman Catholic,173,173,–,–,173,–,–,–,–,–,–,–,–,–,–,52,32,32,57,–,0,0.00,24,13.87,0,0.00,10,5.78,138,79.77,–,–,–,–,6.92,25.00 +ACADEMY OF OUR LADY,ILLINOIS,ILLINOIS,17,ACADEMY OF OUR LADY,00341095,LAKE,17097,8476234110,510 GRAND AVE,WAUKEGAN,IL ,60085,600854251,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,1-Catholic,2-Suburb (ulocale = 21 or 22 or 23),Roman Catholic,335,303,72,263,–,32,40,36,31,23,30,31,43,30,39,–,–,–,–,–,0,0.00,1,0.33,252,83.17,24,7.92,11,3.63,0,0.00,15,4.95,16.03,18.90 +ACADEMY OF OUR LADY,LOUISIANA,LOUISIANA,22,ACADEMY OF OUR LADY,00537168,JEFFERSON,22051,5043416217,537 AVENUE D,MARRERO,LA ,70072,700722027,8th grade ,12th grade ,2-All-female (school only has all-female students),1-Regular Elementary or Secondary,2-Secondary (school has one or more of grades 7-12 and does not have any grade lower than 7th grade).,1-Catholic,2-Suburb (ulocale = 21 or 22 or 23),Roman Catholic,575,575,–,25,550,–,–,–,–,–,–,–,–,–,25,145,144,115,146,–,5,0.87,46,8.00,34,5.91,128,22.26,362,62.96,0,0.00,0,0.00,12.16,47.30 +ACADEMY OF OUR LADY AT ST CATHARINE,NEW JERSEY,NEW JERSEY,34,ACADEMY OF OUR LADY AT ST CATHARINE,00861365,BERGEN,34003,2014450622,180 RODNEY ST,GLEN ROCK,NJ ,07452,074522826,Prekindergarten,8th grade ,1-Coed (school has male and female students),1-Regular Elementary or Secondary,1-Elementary (school has one or more of grades K-6 and does not have any grade higher than the 8th grade).,1-Catholic,2-Suburb (ulocale = 21 or 22 or 23),Roman Catholic,436,349,129,307,–,87,42,29,28,30,42,42,43,47,46,–,–,–,–,–,0,0.00,9,2.58,28,8.02,4,1.15,299,85.67,0,0.00,9,2.58,13.53,25.80 diff --git a/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.csv b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.csv new file mode 100644 index 000000000..4877e01ab --- /dev/null +++ b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.csv @@ -0,0 +1,188 @@ +"school_state_code","ZIP","ZIP4","County_code","Private_School_Name","SchoolID","School_Type","SchoolGrade","School_Religion_Affliation","Lowest_Grade","Highest_Grade","Physical_Address","PhoneNumber","Coeducational","State_code","State_Abbr","City","School_Religion","year","ContainedInPlace" +"nces/02039659","zip/56716","56716","geoId/27119","Our Savior'S Lutheran Day School","02039659","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade7","PO Box 477 Crookston MN 56716","2182815191","dcs:Coeducational","geoId/27","MN","CROOKSTON","dcs:LutheranChurchMissouriSynod","2009","zip/56716,geoId/27119,geoId/27" +"nces/A0701576","zip/13057","13057","geoId/36067","Abundant Life Academy","A0701576","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade5","7000 All Nations Blvd East Syracuse NY 13057","3157019244","dcs:Coeducational","geoId/36","NY","EAST SYRACUSE","dcs:Christianity","2009","zip/13057,geoId/36067,geoId/36" +"nces/A0902806","zip/19543","19543-0645","geoId/42011","Abraxas Academy","A0902806","dcs:NCES_SpecialProgramEmphasis","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade9","dcs:SchoolGrade12","PO Box 645 Morgantown PA 19543-0645","8109138000","dcs:AllMale","geoId/42","PA","MORGANTOWN","dcs:Nonsectarian","2009","zip/19543,geoId/42011,geoId/42" +"nces/01907265","zip/16239","16239-0059","geoId/42053","Abraxas I Arlene Lissner High School","01907265","dcs:NCES_Regular","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade9","dcs:SchoolGrade12","PO Box 59 Marienville PA 16239-0059","8149276615","dcs:AllMale","geoId/42","PA","MARIENVILLE","dcs:Nonsectarian","2009","zip/16239,geoId/42053,geoId/42" +"nces/A9503430","zip/17261","17261","geoId/42055","Abraxas Leadership Development Program","A9503430","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade6","dcs:SchoolGrade12","10058 S Mountain Rd Bldg 6 South Mountain PA 17261","7177497440","dcs:Coeducational","geoId/42","PA","SOUTH MOUNTAIN","dcs:Nonsectarian","2009","zip/17261,geoId/42055,geoId/42" +"nces/A0108773","zip/16501","16501","geoId/42049","Abraxas Learning Center","A0108773","dcs:NCES_Regular","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade8","dcs:SchoolGrade12","915 State St Erie PA 16501","8144567225","dcs:Coeducational","geoId/42","PA","ERIE","dcs:Nonsectarian","2009","zip/16501,geoId/42049,geoId/42" +"nces/A9702795","zip/15206","15206-3370","geoId/42003","Abraxas Pittsburgh School","A9702795","dcs:NCES_AlternativeOrOther","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade7","dcs:SchoolGrade12","437 Turrett St Pittsburgh PA 15206-3370","4129540018","dcs:Coeducational","geoId/42","PA","PITTSBURGH","dcs:Nonsectarian","2009","zip/15206,geoId/42003,geoId/42" +"nces/A0902809","zip/17261","17261","geoId/42055","Abraxas Youth Center","A0902809","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade6","dcs:SchoolGrade12","PO Box 334 South Mountain PA 17261","7177493066","dcs:Coeducational","geoId/42","PA","SOUTH MOUNTAIN","dcs:Nonsectarian","2009","zip/17261,geoId/42055,geoId/42" +"nces/A0990097","zip/44221","44221","geoId/39153","Absorbent Minds Montessori School","A0990097","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","130 Broad Blvd Cuyahoga Falls OH 44221","3304143068","dcs:Coeducational","geoId/39","OH","CUYAHOGA FALLS","dcs:Nonsectarian","2009","zip/44221,geoId/39153,geoId/39" +"nces/A0303162","zip/84741","84741-3238","geoId/49025","Abundant Life Academy","A0303162","dcs:NCES_AlternativeOrOther","dcs:SecondarySchool","OtherReligious","dcs:SchoolGrade7","dcs:SchoolGrade12","220 W 300 N Kanab UT 84741-3238","4352151555","dcs:Coeducational","geoId/49","UT","KANAB","dcs:Christianity","2009","zip/84741,geoId/49025,geoId/49" +"nces/A9104404","zip/07110","07110-3603","geoId/34013","Abundant Life Academy","A9104404","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","390 Washington Ave Nutley NJ 07110-3603","9736679700","dcs:Coeducational","geoId/34","NJ","NUTLEY","dcs:Pentecostalism","2009","zip/07110,geoId/34013,geoId/34" +"nces/A0503198","zip/29927","29927","geoId/45053","Abundant Life Academy","A0503198","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","PO Box 310 Hardeeville SC 29927","8437843171","dcs:Coeducational","geoId/45","SC","HARDEEVILLE","dcs:Christianity","2009","zip/29927,geoId/45053,geoId/45" +"nces/A9904455","zip/26059","26059","geoId/54069","Abundant Life Christian School","A9904455","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade2","dcs:SchoolGrade12","976 Chapel Hill Rd Triadelphia WV 26059","3045474370","dcs:Coeducational","geoId/54","WV","TRIADELPHIA","dcs:Baptist","2009","zip/26059,geoId/54069,geoId/54" +"nces/A0108720","zip/97391","97391-2242","geoId/41041","Abundant Life Academy","A0108720","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","1154 Nw A St Toledo OR 97391-2242","5413364320","dcs:Coeducational","geoId/41","OR","TOLEDO","dcs:AssemblyOfGod","2009","zip/97391,geoId/41041,geoId/41" +"nces/02067846","zip/54822","54822","geoId/55005","Abundant Life Academy","02067846","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade3","dcs:SchoolGrade10","1851 13 1/2 14Th Ave Cameron WI 54822","7154584077","dcs:Coeducational","geoId/55","WI","CAMERON","dcs:Pentecostalism","2009","zip/54822,geoId/55005,geoId/55" +"nces/A0900758","zip/33779","33779-1696","geoId/12103","Abundant Life Christian Academy","A0900758","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","PO Box 1696 Largo FL 33779-1696","7278316325","dcs:Coeducational","geoId/12","FL","LARGO","dcs:AssemblyOfGod","2009","zip/33779,geoId/12103,geoId/12" +"nces/A0503272","zip/38008","38008-3925","geoId/47069","Abundant Life Christian Academy","A0503272","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","15774 Highway 64 Bolivar TN 38008-3925","7316584979","dcs:Coeducational","geoId/47","TN","BOLIVAR","dcs:Christianity","2009","zip/38008,geoId/47069,geoId/47" +"nces/A9101662","zip/33063","33063-3920","geoId/12011","Abundant Life Christian Academy","A9101662","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","1494 Banks Rd Margate FL 33063-3920","9549792665","dcs:Coeducational","geoId/12","FL","MARGATE","dcs:Christianity","2009","zip/33063,geoId/12011,geoId/12" +"nces/A9106874","zip/53066","53066-9243","geoId/55133","Abundant Life Christian Academy","A9106874","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","995 S Sawyer Rd Oconomowoc WI 53066-9243","2629655177","dcs:Coeducational","geoId/55","WI","OCONOMOWOC","dcs:Pentecostalism","2009","zip/53066,geoId/55133,geoId/55" +"nces/A9904469","zip/54771","54771-7629","geoId/55019","Abundant Life Christian Academy","A9904469","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade11","107 E Hill St Thorp WI 54771-7629","7156695657","dcs:Coeducational","geoId/55","WI","THORP","dcs:Pentecostalism","2009","zip/54771,geoId/55019,geoId/55" +"nces/A0971147","zip/40342","40342-9402","geoId/21005","Abundant Life Christian Learning Tree House","A0971147","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:Kindergarten","dcs:Kindergarten","1439 Bypass N Lawrenceburg KY 40342-9402","5028399179","dcs:Coeducational","geoId/21","KY","LAWRENCEBURG","dcs:Christianity","2009","zip/40342,geoId/21005,geoId/21" +"nces/02161237","zip/01887","01887-2736","geoId/25017","Abundant Life Christian School","02161237","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","173 Church St Wilmington MA 01887-2736","9786578710","dcs:Coeducational","geoId/25","MA","WILMINGTON","dcs:Christianity","2009","zip/01887,geoId/25017,geoId/25" +"nces/01906396","zip/19067","19067-1589","geoId/42017","Abrams Hebrew Academy","01906396","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","31 W College Ave Yardley PA 19067-1589","2154931800","dcs:Coeducational","geoId/42","PA","YARDLEY","dcs:Judaism","2009","zip/19067,geoId/42017,geoId/42" +"nces/A9104665","zip/10023","10023-7809","geoId/36061","Abraham Joshua Heschel High School","A9104665","dcs:NCES_Regular","dcs:SecondarySchool","OtherReligious","dcs:SchoolGrade9","dcs:SchoolGrade12","20 W End Ave New York NY 10023-7809","2122467717","dcs:Coeducational","geoId/36","NY","NEW YORK","dcs:Judaism","2009","zip/10023,geoId/36061,geoId/36" +"nces/A0740052","zip/46783","46783","geoId/18003","Aboite Christian School","A0740052","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","14615 Winters Rd Roanoke IN 46783","2606728544","dcs:Coeducational","geoId/18","IN","ROANOKE","dcs:SeventhDayAdventist","2009","zip/46783,geoId/18003,geoId/18" +"nces/A0700419","zip/34104","34104-6118","geoId/12021","Able Academy","A0700419","dcs:NCES_SpecialEducation","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade7","3227 Horseshoe Dr S # 111 Naples FL 34104-6118","2393527600","dcs:Coeducational","geoId/12","FL","NAPLES","dcs:Nonsectarian","2009","zip/34104,geoId/12021,geoId/12" +"nces/A0500120","zip/92591","92591-7502","geoId/06065","Abc Village","A0500120","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","40045 Village Rd Temecula CA 92591-7502","9514910940","dcs:Coeducational","geoId/06","CA","TEMECULA","dcs:Nonsectarian","2009","zip/92591,geoId/06065,geoId/06" +"nces/K9304728","zip/15220","15220-1910","geoId/42003","Abc'S For Children","K9304728","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1630 Greentree Rd Pittsburgh PA 15220-1910","4123444422","dcs:Coeducational","geoId/42","PA","PITTSBURGH","dcs:Nonsectarian","2009","zip/15220,geoId/42003,geoId/42" +"nces/A9901553","zip/83814","83814-2321","geoId/16055","Abcd Daycare Center","A9901553","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1124 N C St Coeur D'Alene ID 83814-2321","2086645013","dcs:Coeducational","geoId/16","ID","COEUR D'ALENE","dcs:Nonsectarian","2009","zip/83814,geoId/16055,geoId/16" +"nces/BB943634","zip/77379","77379-6203","geoId/48201","Abercrombie Academy","BB943634","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade5","17102 Theiss Mail Route Rd Spring TX 77379-6203","2813700663","dcs:Coeducational","geoId/48","TX","SPRING","dcs:Nonsectarian","2009","zip/77379,geoId/48201,geoId/48" +"nces/02058401","zip/57401","57401-7714","geoId/46013","Aberdeen Christian School Inc","02058401","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","1500 E Melgaard Rd Aberdeen SD 57401-7714","6052252053","dcs:Coeducational","geoId/46","SD","ABERDEEN","dcs:Christianity","2009","zip/57401,geoId/46013,geoId/46" +"nces/A0301888","zip/55128","55128-7020","geoId/27163","Abi Christian Academy","A0301888","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:NCESUngradedClasses","dcs:NCESUngradedClasses","6944 Hudson Blvd Oakdale MN 55128-7020","6517397686","dcs:Coeducational","geoId/27","MN","OAKDALE","dcs:Pentecostalism","2009","zip/55128,geoId/27163,geoId/27" +"nces/A9705126","zip/80127","80127-2898","geoId/08059","Abiding Hope Preschool","A9705126","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","6337 S Robb Way Littleton CO 80127-2898","3039329160","dcs:Coeducational","geoId/08","CO","LITTLETON","dcs:EvangelicalLutheranChurchInAmerica","2009","zip/80127,geoId/08059,geoId/08" +"nces/00081272","zip/92630","92630-4898","geoId/06059","Abiding Savior Lutheran Church","00081272","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","23262 El Toro Rd Lake Forest CA 92630-4898","9498301461","dcs:Coeducational","geoId/06","CA","LAKE FOREST","dcs:LutheranChurchMissouriSynod","2009","zip/92630,geoId/06059,geoId/06" +"nces/AA001609","zip/63128","63128","geoId/29189","Abiding Savior Lutheran School","AA001609","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","4353 Butler Hill Rd Saint Louis MO 63128","3148924408","dcs:Coeducational","geoId/29","MO","SAINT LOUIS","dcs:LutheranChurchMissouriSynod","2009","zip/63128,geoId/29189,geoId/29" +"nces/K9300079","zip/85281","85281","geoId/04013","Abiding Savior School","K9300079","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","515 E Continental Dr Tempe AZ 85281","4809499064","dcs:Coeducational","geoId/04","AZ","TEMPE","dcs:NCES_OtherLutheran","2009","zip/85281,geoId/04013,geoId/04" +"nces/01328969","zip/77090","77090-2600","geoId/48201","Abiding Word Lutheran School","01328969","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","17123 Red Oak Dr Houston TX 77090-2600","2818957048","dcs:Coeducational","geoId/48","TX","HOUSTON","dcs:WisconsinEvangelicalLutheranSynod","2009","zip/77090,geoId/48201,geoId/48" +"nces/AA000007","zip/67410","67410","geoId/20041","Abilene Baptist Academy","AA000007","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","409 N Van Buren St Abilene KS 67410","7852631032","dcs:Coeducational","geoId/20","KS","ABILENE","dcs:Baptist","2009","zip/67410,geoId/20041,geoId/20" +"nces/01328801","zip/79601","79601","geoId/48441","Abilene Christian Schools","01328801","dcs:NCES_SpecialProgramEmphasis","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","2550 N Judge Ely Blvd Abilene TX 79601","3256729200","dcs:Coeducational","geoId/48","TX","ABILENE","dcs:ChurchOfChrist","2009","zip/79601,geoId/48441,geoId/48" +"nces/A0902285","zip/12601","12601","geoId/36027","Abilities First","A0902285","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:NCESUngradedClasses","dcs:NCESUngradedClasses","230 North Rd Poughkeepsie NY 12601","8455460774","dcs:Coeducational","geoId/36","NY","POUGHKEEPSIE","dcs:Nonsectarian","2009","zip/12601,geoId/36027,geoId/36" +"nces/A9104268","zip/07631","07631","geoId/34003","Ability School","A9104268","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade8","75 Knickerbocker Rd Englewood NJ 07631","2018718808","dcs:Coeducational","geoId/34","NJ","ENGLEWOOD","dcs:Nonsectarian","2009","zip/07631,geoId/34003,geoId/34" +"nces/A9103126","zip/20816","20816-2740","geoId/24031","Abingdon Montessori School","A9103126","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","5144 Massachusetts Ave Bethesda MD 20816-2740","8018208646","dcs:Coeducational","geoId/24","MD","BETHESDA","dcs:Nonsectarian","2009","zip/20816,geoId/24031,geoId/24" +"nces/01195835","zip/19046","19046","geoId/42091","Abington Friends School","01195835","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","575 Washington Ln Jenkintown PA 19046","2158864350","dcs:Coeducational","geoId/42","PA","JENKINTOWN","dcs:FriendsChurch","2009","zip/19046,geoId/42091,geoId/42" +"nces/AA000008","zip/37205","37205","geoId/47037","Abintra Montessori School","AA000008","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade8","914 Davidson Dr Nashville TN 37205","6153524317","dcs:Coeducational","geoId/47","TN","NASHVILLE","dcs:Nonsectarian","2009","zip/37205,geoId/47037,geoId/47" +"nces/A9503341","zip/97302","97302-9684","geoId/41047","Abiqua Academy","A9503341","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:Kindergarten","dcs:SchoolGrade8","4985 Battle Creek Rd Se Ste 107 Salem OR 97302-9684","5033999020","dcs:Coeducational","geoId/41","OR","SALEM","dcs:Nonsectarian","2009","zip/97302,geoId/41047,geoId/41" +"nces/BB100994","zip/07981","07981","geoId/34027","Abundant Life Christian School","BB100994","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","43 S Jefferson Rd Whippany NJ 07981","9734639455","dcs:Coeducational","geoId/34","NJ","WHIPPANY","dcs:Christianity","2009","zip/07981,geoId/34027,geoId/34" +"nces/A9104507","zip/87121","87121-4327","geoId/35001","Abundant Life Christian School","A9104507","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","2851 Arenal Rd Sw Albuquerque NM 87121-4327","5058777772","dcs:Coeducational","geoId/35","NM","ALBUQUERQUE","dcs:Mennonite","2009","zip/87121,geoId/35001,geoId/35" +"nces/BB964100","zip/11377","11377","geoId/36081","Abc Preschool & Kindergarten Center","BB964100","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","6620 Laurel Hill Blvd Woodside NY 11377","7186722424","dcs:Coeducational","geoId/36","NY","WOODSIDE","dcs:Nonsectarian","2009","zip/11377,geoId/36081,geoId/36" +"nces/BB100068","zip/91405","91405","geoId/06037","Academy Of Amherst Jr-Sr High School","BB100068","dcs:NCES_AlternativeOrOther","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade7","dcs:SchoolGrade12","Crewe St Van Nuys CA 91405","8185037869","dcs:Coeducational","geoId/06","CA","VAN NUYS","dcs:Nonsectarian","2009","zip/91405,geoId/06037,geoId/06" +"nces/00517072","zip/40299","40299-3803","geoId/21111","Academy For Individual Excellence","00517072","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade12","3101 Bluebird Ln Louisville KY 40299-3803","5022676187","dcs:Coeducational","geoId/21","KY","LOUISVILLE","dcs:Nonsectarian","2009","zip/40299,geoId/21111,geoId/21" +"nces/A0903406","zip/37040","37040","geoId/47125","Academy For Keener Minds","A0903406","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade2","dcs:SchoolGrade12","420 Madison St D Clarksville TN 37040","9312491600","dcs:Coeducational","geoId/47","TN","CLARKSVILLE","dcs:Christianity","2009","zip/37040,geoId/47125,geoId/47" +"nces/A0771477","zip/97015","97015-6405","geoId/41005","Academy For Kids","A0771477","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","13698 Se 147Th Ave Clackamas OR 97015-6405","5035588773","dcs:Coeducational","geoId/41","OR","CLACKAMAS","dcs:Nonsectarian","2009","zip/97015,geoId/41005,geoId/41" +"nces/K9305530","zip/02893","02893","geoId/44003","Academy For Little Children","K9305530","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","10 James P Murphy Ind Hwy West Warwick RI 02893","4018235000","dcs:Coeducational","geoId/44","RI","WEST WARWICK","dcs:Nonsectarian","2009","zip/02893,geoId/44003,geoId/44" +"nces/A9702631","zip/44236","44236-3466","geoId/39153","Academy For Young Children Tlc","A9702631","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","187 Ravenna St Hudson OH 44236-3466","3306552797","dcs:Coeducational","geoId/39","OH","HUDSON","dcs:Nonsectarian","2009","zip/44236,geoId/39153,geoId/39" +"nces/A0701268","zip/01104","01104-1153","geoId/25013","Academy Hill School","A0701268","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:Kindergarten","dcs:SchoolGrade8","1190 Liberty St Springfield MA 01104-1153","4137880300","dcs:Coeducational","geoId/25","MA","SPRINGFIELD","dcs:Nonsectarian","2009","zip/01104,geoId/25013,geoId/25" +"nces/AA000010","zip/64145","64145-1149","geoId/29095","Academy Montessori Internationale","AA000010","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade5","12501 State Line Rd Kansas City MO 64145-1149","8169423307","dcs:Coeducational","geoId/29","MO","KANSAS CITY","dcs:Nonsectarian","2009","zip/64145,geoId/29095,geoId/29" +"nces/K9303866","zip/87112","87112-1861","geoId/35001","Academy Montessori Preschool","K9303866","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","11216 Phoenix Ave Ne Albuquerque NM 87112-1861","5052992527","dcs:Coeducational","geoId/35","NM","ALBUQUERQUE","dcs:Nonsectarian","2009","zip/87112,geoId/35001,geoId/35" +"nces/A0303197","","23058-4232","geoId/51087","Academy Of Academic Excellence","A0303197","dcs:NCES_SpecialProgramEmphasis","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade4","PO Box 4232 Glen Allen VA 23058-4232","8047406500","dcs:Coeducational","geoId/51","VA","GLEN ALLEN","dcs:Nonsectarian","2009","geoId/51087,geoId/51" +"nces/02007955","zip/90003","90003-4453","geoId/06037","Academy Of Basic Learning","02007955","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:Kindergarten","dcs:SchoolGrade10","10457 S Figueroa St Los Angeles CA 90003-4453","3237771769","dcs:Coeducational","geoId/06","CA","LOS ANGELES","dcs:Nonsectarian","2009","zip/90003,geoId/06037,geoId/06" +"nces/01933863","zip/53716","53716-1864","geoId/55025","Abundant Life Christian School","01933863","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","4901 E Buckeye Rd Madison WI 53716-1864","6082211520","dcs:Coeducational","geoId/55","WI","MADISON","dcs:Christianity","2009","zip/53716,geoId/55025,geoId/55" +"nces/A9708052","zip/20190","20190","geoId/51059","Academy Of Christian Education","A9708052","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","1808A Michael Faraday Ct Reston VA 20190","7034715790","dcs:Coeducational","geoId/51","VA","RESTON","dcs:Christianity","2009","zip/20190,geoId/51059,geoId/51" +"nces/A0902448","zip/28459","28459","geoId/37019","Academy Of Coastal Carolina","A0902448","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","PO Box 1988 Shallotte NC 28459","9107549637","dcs:Coeducational","geoId/37","NC","SHALLOTTE","dcs:Christianity","2009","zip/28459,geoId/37019,geoId/37" +"nces/A9708053","zip/23452","23452-4305","geoId/51810","Academy Of Early Learning","A9708053","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","3560 Chester St Virginia Beach VA 23452-4305","7573407228","dcs:Coeducational","geoId/51","VA","VIRGINIA BEACH","dcs:Nonsectarian","2009","zip/23452,geoId/51810,geoId/51" +"nces/A9706318","zip/02601","02601","geoId/25001","Academy Of Early Learning","A9706318","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade1","465 Falmouth Rd Hyannis MA 02601","5087908104","dcs:Coeducational","geoId/25","MA","HYANNIS","dcs:Nonsectarian","2009","zip/02601,geoId/25001,geoId/25" +"nces/A0902450","zip/28677","28677-5748","geoId/37097","Academy Of Excellence","A0902450","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade2","dcs:SchoolGrade12","612 S Race St Statesville NC 28677-5748","7045004220","dcs:Coeducational","geoId/37","NC","STATESVILLE","dcs:Christianity","2009","zip/28677,geoId/37097,geoId/37" +"nces/K9500748","zip/72632","72632-0427","geoId/05015","Academy Of Excellence","K9500748","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","PO Box 427 Eureka Springs AR 72632-0427","4792535400","dcs:Coeducational","geoId/05","AR","EUREKA SPRINGS","dcs:Christianity","2009","zip/72632,geoId/05015,geoId/05" +"nces/A0100441","zip/99672","99672","geoId/02122","Academy Of Higher Learning Mls","A0100441","dcs:NCES_SpecialProgramEmphasis","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade1","dcs:SchoolGrade12","32930 Fair Game Ave D Sterling AK 99672","9072607741","dcs:Coeducational","geoId/02","AK","STERLING","dcs:Christianity","2009","zip/99672,geoId/02122,geoId/02" +"nces/00699979","zip/55423","55423-2498","geoId/27053","Academy Of Holy Angels","00699979","dcs:NCES_Regular","dcs:SecondarySchool","Catholic","dcs:SchoolGrade9","dcs:SchoolGrade12","6600 Nicollet Ave Richfield MN 55423-2498","6127982600","dcs:Coeducational","geoId/27","MN","RICHFIELD","dcs:RomanCatholicism","2009","zip/55423,geoId/27053,geoId/27" +"nces/A9903306","zip/27520","27520","geoId/37101","Academy Of Hope","A9903306","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade6","dcs:SchoolGrade12","408 Covered Bridge Rd Clayton NC 27520","9195508181","dcs:AllFemale","geoId/37","NC","CLAYTON","dcs:Christianity","2009","zip/27520,geoId/37101,geoId/37" +"nces/AA000011","zip/58103","58103-1805","geoId/38017","Academy For Children Childcare","AA000011","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","20 8Th St S Fargo ND 58103-1805","7012800718","dcs:AllFemale","geoId/38","ND","FARGO","dcs:Nonsectarian","2009","zip/58103,geoId/38017,geoId/38" +"nces/A0700420","zip/32809","32809-3070","geoId/12095","Academy For Autism","A0700420","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:NCESUngradedClasses","dcs:NCESUngradedClasses","5232 S Orange Ave B Orlando FL 32809-3070","4078522958","dcs:Coeducational","geoId/12","FL","ORLANDO","dcs:Nonsectarian","2009","zip/32809,geoId/12095,geoId/12" +"nces/BB080157","zip/91324","91324","geoId/06037","Academy For Advancement Of Children With Autism","BB080157","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade4","dcs:SchoolGrade12","20040 Parthenia St Northridge CA 91324","8188820200","dcs:Coeducational","geoId/06","CA","NORTHRIDGE","dcs:Nonsectarian","2009","zip/91324,geoId/06037,geoId/06" +"nces/A9503777","zip/37043","37043-0906","geoId/47125","Academy For Academic Excellence","A9503777","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade3","dcs:SchoolGrade12","PO Box 3906 Clarksville TN 37043-0906","9316479831","dcs:Coeducational","geoId/47","TN","CLARKSVILLE","dcs:Nonsectarian","2009","zip/37043,geoId/47125,geoId/47" +"nces/K9500531","zip/29611","29611-1861","geoId/45045","Abundant Life Christian School","K9500531","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade9","630 Farrs Bridge Rd Greenville SC 29611-1861","8642461055","dcs:Coeducational","geoId/45","SC","GREENVILLE","dcs:Christianity","2009","zip/29611,geoId/45045,geoId/45" +"nces/A0307925","zip/29033","29033-2443","geoId/45063","Abundant Life Outreach Ministries","A0307925","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade3","1619 Middleton St Cayce SC 29033-2443","8037967303","dcs:Coeducational","geoId/45","SC","CAYCE","dcs:Christianity","2009","zip/29033,geoId/45063,geoId/45" +"nces/A0307448","zip/96786","96786-1904","geoId/15003","Abundant Life School","A0307448","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","650 Kilani Ave Wahiawa HI 96786-1904","8086215433","dcs:Coeducational","geoId/15","HI","WAHIAWA","dcs:Pentecostalism","2009","zip/96786,geoId/15003,geoId/15" +"nces/BB911554","zip/60525","60525-4468","geoId/17031","Acacia Academy","BB911554","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade3","dcs:SchoolGrade12","6425 Willow Springs Rd La Grange Highlands IL 60525-4468","7085799040","dcs:Coeducational","geoId/17","IL","LA GRANGE HIGHLANDS","dcs:Nonsectarian","2009","zip/60525,geoId/17031,geoId/17" +"nces/BB945908","zip/91723","91723","geoId/06037","Acacia Montessori School","BB945908","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","450 W Rowland St Covina CA 91723","6269669356","dcs:Coeducational","geoId/06","CA","COVINA","dcs:Nonsectarian","2009","zip/91723,geoId/06037,geoId/06" +"nces/BB980189","zip/92801","92801","geoId/06059","Acaciawood School","BB980189","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade1","dcs:SchoolGrade12","2530 W La Palma Ave Anaheim CA 92801","7149951800","dcs:Coeducational","geoId/06","CA","ANAHEIM","dcs:Nonsectarian","2009","zip/92801,geoId/06059,geoId/06" +"nces/A0700688","zip/30030","30030-4132","geoId/13089","Academe Of The Oaks","A0700688","dcs:NCES_SpecialProgramEmphasis","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade9","dcs:SchoolGrade12","146 New St Decatur GA 30030-4132","4044052173","dcs:Coeducational","geoId/13","GA","DECATUR","dcs:Nonsectarian","2009","zip/30030,geoId/13089,geoId/13" +"nces/A0300737","zip/20012","20012-1610","geoId/11001","Academia De La Recta Porta Icds","A0300737","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade3","dcs:SchoolGrade12","7614 Georgia Ave Nw Washington DC 20012-1610","2027268737","dcs:Coeducational","geoId/11","DC","WASHINGTON","dcs:Christianity","2009","zip/20012,geoId/11001,geoId/11" +"nces/00259858","zip/33584","33584-3116","geoId/12057","Academic Achievement Center","00259858","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade4","dcs:SchoolGrade12","313 Pruett Rd Seffner FL 33584-3116","8136544198","dcs:Coeducational","geoId/12","FL","SEFFNER","dcs:Nonsectarian","2009","zip/33584,geoId/12057,geoId/12" +"nces/A0304042","zip/33428","33428-6627","geoId/12099","Academic High School","A0304042","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade6","dcs:SchoolGrade12","23114 Sandalfoot Plaza Dr Boca Raton FL 33428-6627","5619290333","dcs:Coeducational","geoId/12","FL","BOCA RATON","dcs:Nonsectarian","2009","zip/33428,geoId/12099,geoId/12" +"nces/A0902447","zip/28031","28031-8505","geoId/37119","Academic Illumination Day School","A0902447","dcs:Montessori","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade8","dcs:SchoolGrade12","21325 Catawba Ave Cornelius NC 28031-8505","7047792164","dcs:Coeducational","geoId/37","NC","CORNELIUS","dcs:Nonsectarian","2009","zip/28031,geoId/37119,geoId/37" +"nces/A9501433","zip/30809","30809-3680","geoId/13073","Academics Plus","A9501433","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade4","717 Industrial Park Rd Evans GA 30809-3680","7063643169","dcs:Coeducational","geoId/13","GA","EVANS","dcs:Nonsectarian","2009","zip/30809,geoId/13073,geoId/13" +"nces/A0300748","zip/32804","32804","geoId/12095","Academie Chretienne Haitienne D'Orlando","A0300748","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade11","2514 W Colonial Dr Orlando FL 32804","4075401800","dcs:Coeducational","geoId/12","FL","ORLANDO","dcs:Christianity","2009","zip/32804,geoId/12095,geoId/12" +"nces/A0101705","zip/32207","32207-3130","geoId/12031","Academie De Montessori","A0101705","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade3","1216 Lasalle St Jacksonville FL 32207-3130","9043983830","dcs:Coeducational","geoId/12","FL","JACKSONVILLE","dcs:Nonsectarian","2009","zip/32207,geoId/12031,geoId/12" +"nces/A0900759","zip/33175","33175","geoId/12086","Academir","A0900759","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade5","13911 Sw 42Nd St # 108 Miami FL 33175","3052259141","dcs:Coeducational","geoId/12","FL","MIAMI","dcs:Nonsectarian","2009","zip/33175,geoId/12086,geoId/12" +"nces/A0507315","zip/33184","33184-1667","geoId/12086","Academir Preschool Learning Center","A0507315","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","11980 Sw 8Th St Miami FL 33184-1667","3052202205","dcs:Coeducational","geoId/12","FL","MIAMI","dcs:Nonsectarian","2009","zip/33184,geoId/12086,geoId/12" +"nces/00752221","zip/63033","63033-3500","geoId/29189","Academy At St Rose Philippine Duchesne","00752221","dcs:NCES_SpecialEducation","dcs:ElementarySchool","Catholic","dcs:SchoolGrade1","dcs:SchoolGrade8","1220 Paddock Dr Florissant MO 63033-3500","3148370369","dcs:Coeducational","geoId/29","MO","FLORISSANT","dcs:RomanCatholicism","2009","zip/63033,geoId/29189,geoId/29" +"nces/A0104077","zip/01026","01026-9501","geoId/25015","Academy At Swift River","A0104077","dcs:NCES_AlternativeOrOther","dcs:SecondarySchool","Nonsectarian","dcs:SchoolGrade9","dcs:SchoolGrade12","151 South St Cummington MA 01026-9501","4136340307","dcs:Coeducational","geoId/25","MA","CUMMINGTON","dcs:Nonsectarian","2009","zip/01026,geoId/25015,geoId/25" +"nces/A9302732","zip/34639","34639-5284","geoId/12101","Academy At The Lakes","A9302732","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade12","2220 Collier Pkwy Land O Lakes FL 34639-5284","8139487600","dcs:Coeducational","geoId/12","FL","LAND O LAKES","dcs:Nonsectarian","2009","zip/34639,geoId/12101,geoId/12" +"nces/A0770225","zip/91505","91505-1332","geoId/06037","Abc School House","A0770225","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","4102 W Victory Blvd Burbank CA 91505-1332","8188428466","dcs:Coeducational","geoId/06","CA","BURBANK","dcs:Nonsectarian","2009","zip/91505,geoId/06037,geoId/06" +"nces/00094237","zip/90504","90504-4830","geoId/06037","Abc Playhouse","00094237","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade1","18213 Prairie Ave Torrance CA 90504-4830","3103711231","dcs:Coeducational","geoId/06","CA","TORRANCE","dcs:Nonsectarian","2009","zip/90504,geoId/06037,geoId/06" +"nces/Y2162569","zip/44907","44907-2898","geoId/39139","Mansfield Christian School","Y2162569","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","500 Logan Rd Mansfield OH 44907-2898","4197565651","dcs:Coeducational","geoId/39","OH","MANSFIELD","dcs:Christianity","2009","zip/44907,geoId/39139,geoId/39" +"nces/A0108771","zip/19047","19047-3030","geoId/42017","A Child'S World","A0108771","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","183 Bristol Oxford Valley Rd Langhorne PA 19047-3030","2159498900","dcs:Coeducational","geoId/42","PA","LANGHORNE","dcs:Nonsectarian","2009","zip/19047,geoId/42017,geoId/42" +"nces/A0903479","zip/78250","78250","geoId/48029","A Child'S Dream Christian School","A0903479","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","6025 Teach Rd 104 San Antonio TX 78250","2103109240","dcs:Coeducational","geoId/48","TX","SAN ANTONIO","dcs:Christianity","2009","zip/78250,geoId/48029,geoId/48" +"nces/A0771471","zip/97701","97701","geoId/41017","A Child'S Garden","A0771471","dcs:NCES_SpecialProgramEmphasis","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","2150 Ne Studio Rd Ste 1 Bend OR 97701","5416170434","dcs:Coeducational","geoId/41","OR","BEND","dcs:Nonsectarian","2009","zip/97701,geoId/41017,geoId/41" +"nces/A0507274","zip/06484","06484-6402","geoId/09001","A Child'S Garden","A0507274","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:Kindergarten","dcs:TransitionalKindergarten","20 Ivy Brook Rd Shelton CT 06484-6402","2034020334","dcs:Coeducational","geoId/09","CT","SHELTON","dcs:Nonsectarian","2009","zip/06484,geoId/09001,geoId/09" +"nces/A9900904","zip/06378","06378-1722","geoId/09011","A Child'S Garden Montessori School","A9900904","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","28 Whittaker Dr Stonington CT 06378-1722","8605721283","dcs:Coeducational","geoId/09","CT","STONINGTON","dcs:Nonsectarian","2009","zip/06378,geoId/09011,geoId/09" +"nces/K9305325","zip/19333","19333-1716","geoId/42029","A Child'S Place","K9305325","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","524 Sugartown Rd Devon PA 19333-1716","6106874999","dcs:Coeducational","geoId/42","PA","DEVON","dcs:Nonsectarian","2009","zip/19333,geoId/42029,geoId/42" +"nces/A0771128","zip/08844","08844","geoId/34035","A Child'S Place","A0771128","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","302 S Branch Rd Hillsborough NJ 08844","9083698890","dcs:Coeducational","geoId/34","NJ","HILLSBOROUGH","dcs:Nonsectarian","2009","zip/08844,geoId/34035,geoId/34" +"nces/BB964072","zip/11369","11369-2524","geoId/36081","A Child'S Place Day School","BB964072","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade2","3220 108Th St East Elmhurst NY 11369-2524","7185652170","dcs:Coeducational","geoId/36","NY","EAST ELMHURST","dcs:Nonsectarian","2009","zip/11369,geoId/36081,geoId/36" +"nces/A9705218","zip/32223","32223-2646","geoId/12031","A Child'S Place Montessori School","A9705218","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade3","12601 San Jose Blvd Jacksonville FL 32223-2646","9042684050","dcs:Coeducational","geoId/12","FL","JACKSONVILLE","dcs:Nonsectarian","2009","zip/32223,geoId/12031,geoId/12" +"nces/A9101510","zip/80229","80229-4660","geoId/08001","A Child'S Touch","A9101510","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","9141 Poze Blvd Thornton CO 80229-4660","3032868460","dcs:Coeducational","geoId/08","CO","THORNTON","dcs:Christianity","2009","zip/80229,geoId/08001,geoId/08" +"nces/A0902553","zip/58102","58102","geoId/38017","A Child'S World","A0902553","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","3100 12Th Ave N Fargo ND 58102","7012988047","dcs:Coeducational","geoId/38","ND","FARGO","dcs:Nonsectarian","2009","zip/58102,geoId/38017,geoId/38" +"nces/A0507700","zip/60532","60532-1646","geoId/17043","A Generation Ahead Child Care/Learning Center","A0507700","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","2055 Burlington Ave Lisle IL 60532-1646","6302711025","dcs:Coeducational","geoId/17","IL","LISLE","dcs:Nonsectarian","2009","zip/60532,geoId/17043,geoId/17" +"nces/A0790077","zip/46260","46260-4150","geoId/18097","A Children'S Habitat Montessori School","A0790077","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","801 W 73Rd St Indianapolis IN 46260-4150","3177265584","dcs:Coeducational","geoId/18","IN","INDIANAPOLIS","dcs:Nonsectarian","2009","zip/46260,geoId/18097,geoId/18" +"nces/A0902783","zip/18109","18109-9564","geoId/42077","A Childrens Place Learning Center","A0902783","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","719 Roble Rd Allentown PA 18109-9564","6102640440","dcs:Coeducational","geoId/42","PA","ALLENTOWN","dcs:Nonsectarian","2009","zip/18109,geoId/42077,geoId/42" +"nces/AA000003","zip/75006","75006","geoId/48113","A Childs Garden Montessori School","AA000003","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1935 Old Denton Rd Carrollton TX 75006","9724462663","dcs:Coeducational","geoId/48","TX","CARROLLTON","dcs:Nonsectarian","2009","zip/75006,geoId/48113,geoId/48" +"nces/A9501079","zip/32216","32216-6112","geoId/12031","A Childs Place Montessori","A9501079","dcs:Montessori","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:NCESUngradedClasses","dcs:NCESUngradedClasses","3718 Salisbury Rd Jacksonville FL 32216-6112","9047335797","dcs:Coeducational","geoId/12","FL","JACKSONVILLE","dcs:Nonsectarian","2009","zip/32216,geoId/12031,geoId/12" +"nces/A0507124","zip/80227","80227-5017","geoId/08059","A Childs View Preschool","A0507124","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","3265 S Wadsworth Blvd Bldg 3 Lakewood CO 80227-5017","3039893961","dcs:Coeducational","geoId/08","CO","LAKEWOOD","dcs:Nonsectarian","2009","zip/80227,geoId/08059,geoId/08" +"nces/A0902693","zip/18901","18901-2723","geoId/42017","A Childs World","A0902693","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","2001 S Easton Rd Doylestown PA 18901-2723","2153487200","dcs:Coeducational","geoId/42","PA","DOYLESTOWN","dcs:Nonsectarian","2009","zip/18901,geoId/42017,geoId/42" +"nces/A9903610","zip/18940","18940-1575","geoId/42017","A Childs World","A9903610","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","2147 S Eagle Rd Newtown PA 18940-1575","2155048100","dcs:Coeducational","geoId/42","PA","NEWTOWN","dcs:Nonsectarian","2009","zip/18940,geoId/42017,geoId/42" +"nces/A0971821","zip/98022","98022","geoId/53033","A Country Garden Montessori","A0971821","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","38722 Black Diamond Rd Enumclaw WA 98022","3608258886","dcs:Coeducational","geoId/53","WA","ENUMCLAW","dcs:Nonsectarian","2009","zip/98022,geoId/53033,geoId/53" +"nces/A0901570","","70059-0788","geoId/22051","A Different World Academy","A0901570","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:SchoolGrade3","dcs:SchoolGrade12","PO Box 788 Harvey LA 70059-0788","5043944644","dcs:Coeducational","geoId/22","LA","HARVEY","dcs:Christianity","2009","geoId/22051,geoId/22" +"nces/A9502733","zip/07738","07738-1112","geoId/34025","A Child S Place School","A9502733","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1409 W Front St Lincroft NJ 07738-1112","7327470141","dcs:Coeducational","geoId/34","NJ","LINCROFT","dcs:Nonsectarian","2009","zip/07738,geoId/34025,geoId/34" +"nces/A9502014","zip/21210","21210-2404","geoId/24510","A Child S Place","A9502014","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Catholic","dcs:PreKindergarten","dcs:Kindergarten","4701 N Charles St Baltimore MD 21210-2404","4105325399","dcs:Coeducational","geoId/24","MD","BALTIMORE","dcs:RomanCatholicism","2009","zip/21210,geoId/24510,geoId/24" +"nces/A0900179","zip/93619","93619-9276","geoId/06019","A C E S","A0900179","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade4","dcs:SchoolGrade12","3001 Pico Ave Clovis CA 93619-9276","5592918101","dcs:Coeducational","geoId/06","CA","CLOVIS","dcs:Nonsectarian","2009","zip/93619,geoId/06019,geoId/06" +"nces/A0106324","zip/07059","07059-5126","geoId/34035","A Bright Start Child Development Center","A0106324","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","97 Mount Bethel Rd Warren NJ 07059-5126","9088220060","dcs:Coeducational","geoId/34","NJ","WARREN","dcs:Nonsectarian","2009","zip/07059,geoId/34035,geoId/34" +"nces/A0900001","zip/36610","36610-3862","geoId/01097","100 Blk Men Of Greater Mobile'S Phoenix Program","A0900001","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade6","dcs:SchoolGrade12","838 W Main St Prichard AL 36610-3862","2514579465","dcs:Coeducational","geoId/01","AL","PRICHARD","dcs:Nonsectarian","2009","zip/36610,geoId/01097,geoId/01" +"nces/A0103186","zip/61615","61615-2149","geoId/17143","123 You N Me Preschool","A0103186","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","809 W Detweiller Dr Peoria IL 61615-2149","3096923470","dcs:Coeducational","geoId/17","IL","PEORIA","dcs:Nonsectarian","2009","zip/61615,geoId/17143,geoId/17" +"nces/A9703331","zip/75087","75087-4602","geoId/48397","1408 S. Goliad St.","A9703331","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","1408 S Goliad St Rockwall TX 75087-4602","9727729788","dcs:Coeducational","geoId/48","TX","ROCKWALL","dcs:Christianity","2009","zip/75087,geoId/48397,geoId/48" +"nces/02043767","zip/07109","07109","geoId/34013","1St Cerebral Palsy Of Nj","02043767","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:PreKindergarten","dcs:PreKindergarten","7 Sanford Ave Belleville NJ 07109","9737510200","dcs:Coeducational","geoId/34","NJ","BELLEVILLE","dcs:Nonsectarian","2009","zip/07109,geoId/34013,geoId/34" +"nces/K9305911","zip/38104","38104-3500","geoId/47157","1St Class Montessori Preschool","K9305911","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1336 Peabody Ave Memphis TN 38104-3500","9012745622","dcs:Coeducational","geoId/47","TN","MEMPHIS","dcs:Nonsectarian","2009","zip/38104,geoId/47157,geoId/47" +"nces/A0108235","zip/27804","27804-5701","geoId/37127","1St United Methodist Preschool & Kindergarten","A0108235","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","100 S Church St Rocky Mount NC 27804-5701","2529770475","dcs:Coeducational","geoId/37","NC","ROCKY MOUNT","dcs:Methodism","2009","zip/27804,geoId/37127,geoId/37" +"nces/A0700925","zip/46322","46322-1822","geoId/18089","2450 Childcare Inc Dba Happy Days Childcare","A0700925","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","2450 Lincoln St Highland IN 46322-1822","2199231333","dcs:Coeducational","geoId/18","IN","HIGHLAND","dcs:Nonsectarian","2009","zip/46322,geoId/18089,geoId/18" +"nces/A0106240","zip/03062","03062","geoId/33011","2Nd Nature Academy","A0106240","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","10 Groton Rd Nashua NH 03062","6038814815","dcs:Coeducational","geoId/33","NH","NASHUA","dcs:Nonsectarian","2009","zip/03062,geoId/33011,geoId/33" +"nces/A0902047","zip/59050","59050-0003","geoId/30003","40 Mile Colony","A0902047","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade8","PO Box 3 Lodge Grass MT 59050-0003","4066392457","dcs:Coeducational","geoId/30","MT","LODGE GRASS","dcs:Brethren","2009","zip/59050,geoId/30003,geoId/30" +"nces/A9705123","zip/80513","80513-0722","geoId/08069","5Th Street College Of Berthoud","A9705123","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","PO Box 722 Berthoud CO 80513-0722","9705323653","dcs:Coeducational","geoId/08","CO","BERTHOUD","dcs:Nonsectarian","2009","zip/80513,geoId/08069,geoId/08" +"nces/K9305227","zip/19082","19082-1108","geoId/42045","9107 Little Friends Academy Inc","K9305227","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","9107 W Chester Pike Upper Darby PA 19082-1108","6104467171","dcs:Coeducational","geoId/42","PA","UPPER DARBY","dcs:Nonsectarian","2009","zip/19082,geoId/42045,geoId/42" +"nces/A9700074","zip/85042","85042-6906","geoId/04013","91St Psalm Christian School","A9700074","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","2020 E Baseline Rd Phoenix AZ 85042-6906","6022431900","dcs:Coeducational","geoId/04","AZ","PHOENIX","dcs:Christianity","2009","zip/85042,geoId/04013,geoId/04" +"nces/K9303952","zip/10128","10128-1612","geoId/36061","92Nd Street Ym&Ywha Nursery School","K9303952","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:TransitionalKindergarten","1395 Lexington Ave New York NY 10128-1612","2124155532","dcs:Coeducational","geoId/36","NY","NEW YORK","dcs:Judaism","2009","zip/10128,geoId/36061,geoId/36" +"nces/00928796","zip/13619","13619-1697","geoId/36045","A","00928796","dcs:NCES_Regular","dcs:ElementarySchool","Catholic","dcs:PreKindergarten","dcs:SchoolGrade8","317 West St Carthage NY 13619-1697","3154931301","dcs:Coeducational","geoId/36","NY","CARTHAGE","dcs:RomanCatholicism","2009","zip/13619,geoId/36045,geoId/36" +"nces/BB942865","zip/77017","77017-7127","geoId/48201","A & B Christian School","BB942865","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade2","3111 Forest Oaks Blvd Houston TX 77017-7127","7139446144","dcs:Coeducational","geoId/48","TX","HOUSTON","dcs:Christianity","2009","zip/77017,geoId/48201,geoId/48" +"nces/A0500119","zip/94806","94806-1941","geoId/06013","A Better Chance School/Cal Autism Foundation","A0500119","dcs:NCES_SpecialEducation","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:NCESUngradedClasses","dcs:NCESUngradedClasses","4138 Lakeside Dr Richmond CA 94806-1941","5102621500","dcs:Coeducational","geoId/06","CA","RICHMOND","dcs:Nonsectarian","2009","zip/94806,geoId/06013,geoId/06" +"nces/A9501078","zip/32703","32703-5554","geoId/12095","A Books Christian Academy","A9501078","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","1001 Roger Williams Rd Apopka FL 32703-5554","4078840031","dcs:Coeducational","geoId/12","FL","APOPKA","dcs:Christianity","2009","zip/32703,geoId/12095,geoId/12" +"nces/A0770215","zip/90301","90301","geoId/06037","A Bright Beginning Child Development Center","A0770215","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","712 E Manchester Blvd Inglewood CA 90301","3106734525","dcs:Coeducational","geoId/06","CA","INGLEWOOD","dcs:Nonsectarian","2009","zip/90301,geoId/06037,geoId/06" +"nces/A0106286","zip/08902","08902-4600","geoId/34023","A Bright Beginning Childcare","A0106286","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","1440 How Ln North Brunswick NJ 08902-4600","7324480400","dcs:Coeducational","geoId/34","NJ","NORTH BRUNSWICK","dcs:Nonsectarian","2009","zip/08902,geoId/34023,geoId/34" +"nces/BB061076","zip/11201","11201-5757","geoId/36047","A Fantis School","BB061076","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","195 State St Brooklyn NY 11201-5757","7186240501","dcs:Coeducational","geoId/36","NY","BROOKLYN","dcs:GreekOrthodox","2009","zip/11201,geoId/36047,geoId/36" +"nces/A9502589","zip/63105","63105","geoId/29189","A Growing Place Montessori School","A9502589","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","101 N Bemiston Ave Saint Louis MO 63105","3148639493","dcs:Coeducational","geoId/29","MO","SAINT LOUIS","dcs:Nonsectarian","2009","zip/63105,geoId/29189,geoId/29" +"nces/A0902446","zip/27104","27104-4740","geoId/37067","Abc Of Nc Child Development Center","A0902446","dcs:NCES_SpecialEducation","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade7","3904 Old Vineyard Rd Winston Salem NC 27104-4740","3362511180","dcs:Coeducational","geoId/37","NC","WINSTON SALEM","dcs:Nonsectarian","2009","zip/27104,geoId/37067,geoId/37" +"nces/A0106295","zip/08071","08071-1231","geoId/34015","Abc Express Preschool","A0106295","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","697 Delsea Dr Pitman NJ 08071-1231","8565890826","dcs:Coeducational","geoId/34","NJ","PITMAN","dcs:Nonsectarian","2009","zip/08071,geoId/34015,geoId/34" +"nces/A0103294","zip/46342","46342","geoId/18089","Abc Academy","A0103294","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","480 W 61St Ave Hobart IN 46342","2199450767","dcs:Coeducational","geoId/18","IN","HOBART","dcs:Nonsectarian","2009","zip/46342,geoId/18089,geoId/18" +"nces/BB021012","zip/60645","60645-4507","geoId/17031","Abc Academy","BB021012","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","2714 W Pratt Blvd Chicago IL 60645-4507","7733381033","dcs:Coeducational","geoId/17","IL","CHICAGO","dcs:Nonsectarian","2009","zip/60645,geoId/17031,geoId/17" +"nces/A0307071","zip/92591","92591-3611","geoId/06065","Abc Childcare Center","A0307071","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade5","29705 Solana Way Temecula CA 92591-3611","9516995251","dcs:Coeducational","geoId/06","CA","TEMECULA","dcs:Nonsectarian","2009","zip/92591,geoId/06065,geoId/06" +"nces/BB101572","zip/79927","79927","geoId/48141","Abc Childcare Learning Center","BB101572","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","901 Horizon Blvd El Paso TX 79927","9158597777","dcs:Coeducational","geoId/48","TX","EL PASO","dcs:Nonsectarian","2009","zip/79927,geoId/48141,geoId/48" +"nces/A9705232","zip/33406","33406-4097","geoId/12099","Abc Children'S Learning Academy","A9705232","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade1","4330 Summit Blvd West Palm Beach FL 33406-4097","5169642800","dcs:Coeducational","geoId/12","FL","WEST PALM BEACH","dcs:Nonsectarian","2009","zip/33406,geoId/12099,geoId/12" +"nces/K9301240","zip/32209","32209","geoId/12031","Abc Christian Academy & Preschool","K9301240","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","2360 Kings Rd Jacksonville FL 32209","9043530103","dcs:Coeducational","geoId/12","FL","JACKSONVILLE","dcs:Baptist","2009","zip/32209,geoId/12031,geoId/12" +"nces/A0970714","zip/30906","30906-9552","geoId/13245","Abc Daycare & Kindergarten","A0970714","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","3305 Pecan St Augusta GA 30906-9552","7067966455","dcs:Coeducational","geoId/13","GA","AUGUSTA","dcs:Nonsectarian","2009","zip/30906,geoId/13245,geoId/13" +"nces/A0307668","zip/08723","08723","geoId/34029","Abc Daycare Center","A0307668","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","12 Beaverson Blvd Brick NJ 08723","7329207410","dcs:Coeducational","geoId/34","NJ","BRICK","dcs:Nonsectarian","2009","zip/08723,geoId/34029,geoId/34" +"nces/A9104267","zip/07305","07305-3323","geoId/34017","Abc Elementary School","A9104267","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade8","228 Bidwell Ave Jersey City NJ 07305-3323","2014358326","dcs:Coeducational","geoId/34","NJ","JERSEY CITY","dcs:SeventhDayAdventist","2009","zip/07305,geoId/34017,geoId/34" +"nces/A0106296","zip/07803","07803","geoId/34027","Abc Growing Tree","A0106296","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","271 Us Highway 46 Mine Hill NJ 07803","9739894141","dcs:Coeducational","geoId/34","NJ","MINE HILL","dcs:Nonsectarian","2009","zip/07803,geoId/34027,geoId/34" +"nces/A0771713","zip/79606","79606-5603","geoId/48441","A Habitat For Learning","A0771713","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalGrade1","3242 Beltway S Abilene TX 79606-5603","3256922481","dcs:Coeducational","geoId/48","TX","ABILENE","dcs:Nonsectarian","2009","zip/79606,geoId/48441,geoId/48" +"nces/A0105209","zip/55437","55437-3122","geoId/27053","Abc International Montessori Academy","A0105209","dcs:Montessori","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade6","10801 Normandale Blvd Bloomington MN 55437-3122","9528811717","dcs:Coeducational","geoId/27","MN","BLOOMINGTON","dcs:Christianity","2009","zip/55437,geoId/27053,geoId/27" +"nces/A9902871","zip/03052","03052","geoId/33011","Abc Junction Llc","A9902871","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","259 Charles Bancroft Hwy Litchfield NH 03052","6034245620","dcs:Coeducational","geoId/33","NH","LITCHFIELD","dcs:Nonsectarian","2009","zip/03052,geoId/33011,geoId/33" +"nces/A9707907","zip/75501","75501-7913","geoId/48037","Abc Kindergarten","A9707907","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","3505 Beechwood Ln Texarkana TX 75501-7913","9037931453","dcs:Coeducational","geoId/48","TX","TEXARKANA","dcs:Christianity","2009","zip/75501,geoId/48037,geoId/48" +"nces/00425908","zip/47201","47201-5079","geoId/18005","Abc Learning Centre Inc (Dba Abc-Stewart School)","00425908","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade6","6691 W State Road 46 Columbus IN 47201-5079","8123423029","dcs:Coeducational","geoId/18","IN","COLUMBUS","dcs:Nonsectarian","2009","zip/47201,geoId/18005,geoId/18" +"nces/A9100483","zip/91401","91401-1603","geoId/06037","Abc Little School","A9100483","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade2","6447 Woodman Ave Van Nuys CA 91401-1603","8187865169","dcs:Coeducational","geoId/06","CA","VAN NUYS","dcs:Nonsectarian","2009","zip/91401,geoId/06037,geoId/06" +"nces/01898328","zip/91411","91411-3609","geoId/06037","Abc Little School","01898328","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","14926 Burbank Blvd Sherman Oaks CA 91411-3609","8187860310","dcs:Coeducational","geoId/06","CA","SHERMAN OAKS","dcs:Nonsectarian","2009","zip/91411,geoId/06037,geoId/06" +"nces/A0300103","zip/91604","91604-2111","geoId/06037","Abc Little School","A0300103","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","11728 Moorpark St Studio City CA 91604-2111","8187665557","dcs:Coeducational","geoId/06","CA","STUDIO CITY","dcs:Nonsectarian","2009","zip/91604,geoId/06037,geoId/06" +"nces/A9302116","zip/90046","90046-7203","geoId/06037","Abc Little Schools - West Hollywood","A9302116","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade1","927 N Fairfax Ave West Hollywood CA 90046-7203","3236549920","dcs:Coeducational","geoId/06","CA","WEST HOLLYWOOD","dcs:Nonsectarian","2009","zip/90046,geoId/06037,geoId/06" +"nces/A0700686","zip/30253","30253-7413","geoId/13151","Abc Montessori Academy For The Brilliant Child","A0700686","dcs:Montessori","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade12","483 Walker Dr Mcdonough GA 30253-7413","7709579998","dcs:Coeducational","geoId/13","GA","MCDONOUGH","dcs:Nonsectarian","2009","zip/30253,geoId/13151,geoId/13" +"nces/BB943172","zip/77047","77047-1154","geoId/48201","Abc 123 A Cat A Me","BB943172","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","10914 Cullen Blvd Houston TX 77047-1154","7137338365","dcs:Coeducational","geoId/48","TX","HOUSTON","dcs:Nonsectarian","2009","zip/77047,geoId/48201,geoId/48" +"nces/01283096","zip/57301","57301-4362","geoId/46035","Abbott House","01283096","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool__SecondarySchool__UngradedSchool","Nonsectarian","dcs:SchoolGrade3","dcs:SchoolGrade12","909 Court Merrill Mitchell SD 57301-4362","6059962486","dcs:AllFemale","geoId/46","SD","MITCHELL","dcs:Nonsectarian","2009","zip/57301,geoId/46035,geoId/46" +"nces/02068045","zip/54405","54405-9428","geoId/55073","Abbotsford Christian Academy","02068045","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:Kindergarten","dcs:SchoolGrade12","4868 Cemetary Ave Abbotsford WI 54405-9428","7152234445","dcs:Coeducational","geoId/55","WI","ABBOTSFORD","dcs:NCES_OtherReligion","2009","zip/54405,geoId/55073,geoId/55" +"nces/00001026","zip/36310","36310-0009","geoId/01067","Abbeville Christian Academy","00001026","dcs:NCES_Regular","dcs:ElementarySchool__SecondarySchool__UngradedSchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade12","PO Box 9 Abbeville AL 36310-0009","3345855100","dcs:Coeducational","geoId/01","AL","ABBEVILLE","dcs:Christianity","2009","zip/36310,geoId/01067,geoId/01" +"nces/BB100187","zip/94544","94544","geoId/06001","A Joyful Noise Learning Center","BB100187","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","26555 Gading Rd Hayward CA 94544","5107828593","dcs:Coeducational","geoId/06","CA","HAYWARD","dcs:Baptist","2009","zip/94544,geoId/06001,geoId/06" +"nces/A9708049","zip/20170","20170","geoId/51107","A Kid'S Place","A9708049","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","12215 Sugar Maple Dr Herndon VA 20170","7034041595","dcs:Coeducational","geoId/51","VA","HERNDON","dcs:Nonsectarian","2009","zip/20170,geoId/51107,geoId/51" +"nces/BB080442","zip/33016","33016-5804","geoId/12086","A Little College At Royal Oaks","BB080442","dcs:NCES_Regular","","Nonsectarian","dcs:NCES_GradeDataMissing","dcs:NCES_GradeDataMissing","PO Box 170363 Miami Lakes FL 33016-5804","3055109869","dcs:Coeducational","geoId/12","FL","MIAMI LAKES","dcs:Nonsectarian","2009","zip/33016,geoId/12086,geoId/12" +"nces/BB000456","zip/60004","60004","geoId/17031","A Mother'S Touch Creative Learning Center","BB000456","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","125 N Dryden Ave Arlington Heights IL 60004","8475777600","dcs:Coeducational","geoId/17","IL","ARLINGTON HEIGHTS","dcs:Nonsectarian","2009","zip/60004,geoId/17031,geoId/17" +"nces/A0107740","zip/11432","11432-5070","geoId/36081","A New Dawn Elementary School","A0107740","dcs:NCES_Regular","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade3","8914 163Rd St Jamaica NY 11432-5070","7182061500","dcs:Coeducational","geoId/36","NY","JAMAICA","dcs:Nonsectarian","2009","zip/11432,geoId/36081,geoId/36" +"nces/A9707442","zip/43017","43017","geoId/39049","A Place To Grow","A9707442","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","6760 Discovery Blvd Dublin OH 43017","6147931441","dcs:Coeducational","geoId/39","OH","DUBLIN","dcs:Nonsectarian","2009","zip/43017,geoId/39049,geoId/39" +"nces/A9502015","zip/21117","21117","geoId/24005","A Small World","A9502015","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","4506 Painters Mill Rd Owings Mills MD 21117","4103569290","dcs:Coeducational","geoId/24","MD","OWINGS MILLS","dcs:Nonsectarian","2009","zip/21117,geoId/24005,geoId/24" +"nces/BB100383","zip/33013","33013","geoId/12086","A Small World Learning Center Iv","BB100383","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","840 East 25Th St Hialeah FL 33013","7863182020","dcs:Coeducational","geoId/12","FL","HIALEAH","dcs:Nonsectarian","2009","zip/33013,geoId/12086,geoId/12" +"nces/A0106293","zip/07047","07047-4906","geoId/34017","A Step Ahead Preschool","A0106293","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:TransitionalKindergarten","610 76Th St North Bergen NJ 07047-4906","2018695335","dcs:Coeducational","geoId/34","NJ","NORTH BERGEN","dcs:Christianity","2009","zip/07047,geoId/34017,geoId/34" +"nces/K9305466","zip/02818","02818-1202","geoId/44003","A Step Up Inc.","K9305466","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","88 Crompton Rd East Greenwich RI 02818-1202","4018237837","dcs:Coeducational","geoId/44","RI","EAST GREENWICH","dcs:Christianity","2009","zip/02818,geoId/44003,geoId/44" +"nces/A0102857","zip/30058","30058-7608","geoId/13089","A Unique Learning Academy","A0102857","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade1","7290 Covington Hwy Lithonia GA 30058-7608","7704848226","dcs:Coeducational","geoId/13","GA","LITHONIA","dcs:Christianity","2009","zip/30058,geoId/13089,geoId/13" +"nces/A0900756","zip/33919","33919","geoId/12071","A Wee Promise Christian Preschool & School","A0900756","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:Kindergarten","8400 Cypress Lake Dr Fort Myers FL 33919","2394819951","dcs:Coeducational","geoId/12","FL","FORT MYERS","dcs:Baptist","2009","zip/33919,geoId/12071,geoId/12" +"nces/BB020971","zip/60617","60617-2001","geoId/17031","A Whizz Kids Preschool Inc Ii","BB020971","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","2600 E 83Rd St Chicago IL 60617-2001","7737680880","dcs:Coeducational","geoId/17","IL","CHICAGO","dcs:Nonsectarian","2009","zip/60617,geoId/17031,geoId/17" +"nces/A9708050","zip/23452","23452-4873","geoId/51810","A World Of Children","A9708050","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","3478 Holland Rd Virginia Beach VA 23452-4873","7574680452","dcs:Coeducational","geoId/51","VA","VIRGINIA BEACH","dcs:Nonsectarian","2009","zip/23452,geoId/51810,geoId/51" +"nces/A0109638","zip/23322","23322","geoId/51550","A World Of Children","A0109638","dcs:NCES_AlternativeOrOther","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade1","752 Cedar Rd Chesapeake VA 23322","7574366967","dcs:Coeducational","geoId/51","VA","CHESAPEAKE","dcs:Nonsectarian","2009","zip/23322,geoId/51550,geoId/51" +"nces/A0970996","zip/30813","30813-2224","geoId/13073","A World Of Hope Cc Learning Ctr","A0970996","dcs:NCES_Regular","dcs:ElementarySchool","OtherReligious","dcs:PreKindergarten","dcs:SchoolGrade2","671 E Robinson Ave Grovetown GA 30813-2224","7068688955","dcs:Coeducational","geoId/13","GA","GROVETOWN","dcs:Baptist","2009","zip/30813,geoId/13073,geoId/13" +"nces/A0102854","zip/33914","33914-4288","geoId/12071","A Young Childrens Montessori Academy","A0102854","dcs:Montessori","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:SchoolGrade3","3221 Chiquita Blvd S Cape Coral FL 33914-4288","2395409400","dcs:Coeducational","geoId/12","FL","CAPE CORAL","dcs:Nonsectarian","2009","zip/33914,geoId/12071,geoId/12" +"nces/A0902694","zip/19342","19342","geoId/42045","Aardvark Child Care & Learning Center","A0902694","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:Kindergarten","PO Box 469 335 Cheyney Rd Glen Mills PA 19342","6103588998","dcs:Coeducational","geoId/42","PA","GLEN MILLS","dcs:Nonsectarian","2009","zip/19342,geoId/42045,geoId/42" +"nces/A0502391","zip/10017","10017","geoId/36061","Aaron School","A0502391","dcs:NCES_SpecialEducation","dcs:ElementarySchool","Nonsectarian","dcs:Kindergarten","dcs:SchoolGrade5","309 E 45Th St New York NY 10017","2128679594","dcs:Coeducational","geoId/36","NY","NEW YORK","dcs:Nonsectarian","2009","zip/10017,geoId/36061,geoId/36" +"nces/A0900761","zip/32771","32771-9505","geoId/12117","Academy Of Learning","A0900761","dcs:NCES_EarlyChildhoodProgramOrChildCareCenter","dcs:ElementarySchool","Nonsectarian","dcs:PreKindergarten","dcs:TransitionalKindergarten","445 S Orange Blvd Sanford FL 32771-9505","4073287265","dcs:Coeducational","geoId/12","FL","SANFORD","dcs:Nonsectarian","2009","zip/32771,geoId/12117,geoId/12" diff --git a/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.tmcf b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.tmcf new file mode 100644 index 000000000..a0a20efc1 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_place.tmcf @@ -0,0 +1,14 @@ +Node: E:us_nces_demographics_private_place->E0 +dcid: C:us_nces_demographics_private_place->school_state_code +typeOf: dcs:PrivateSchool +address: C:us_nces_demographics_private_place->Physical_Address +name: C:us_nces_demographics_private_place->Private_School_Name +ncesId: C:us_nces_demographics_private_place->SchoolID +lowestGrade: C:us_nces_demographics_private_place->Lowest_Grade +highestGrade: C:us_nces_demographics_private_place->Highest_Grade +schoolGradeLevel: C:us_nces_demographics_private_place->SchoolGrade +containedInPlace: C:us_nces_demographics_private_place->ContainedInPlace +telephone: C:us_nces_demographics_private_place->PhoneNumber +educationalMethod: C:us_nces_demographics_private_place->School_Type +religiousOrientation: C:us_nces_demographics_private_place->School_Religion +coeducationStatus: C:us_nces_demographics_private_place->Coeducational \ No newline at end of file diff --git a/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.csv b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.csv new file mode 100644 index 000000000..9be53f389 --- /dev/null +++ b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.csv @@ -0,0 +1,4336 @@ +school_state_code,year,sv_name,observation,scaling_factor,unit +nces/00001026,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00081272,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00259858,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00425908,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00517072,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00699979,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/00752221,2009,Count_Student_AmericanIndianOrAlaskaNative,41.0,, +nces/00928796,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/01195835,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/01283096,2009,Count_Student_AmericanIndianOrAlaskaNative,15.0,, +nces/01328801,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/01328969,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/01898328,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/01906396,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/01907265,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/01933863,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/02007955,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02039659,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02043767,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02058401,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02067846,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02068045,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/02161237,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0100441,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/A0101705,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0102854,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0102857,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0103186,2009,Count_Student_AmericanIndianOrAlaskaNative,4.0,, +nces/A0103294,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0104077,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0106240,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0106286,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0106295,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0106324,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0107740,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0108235,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0108720,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0108771,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0108773,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0109638,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0300737,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0300748,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0301888,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0303162,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0303197,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0304042,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0307071,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0307448,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0307668,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0307925,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0500119,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0502391,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0503198,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0503272,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0507274,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0507700,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0700419,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0700420,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0700686,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0700688,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0700925,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0701268,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0701576,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0740052,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0770215,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0770225,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0771128,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0771477,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0771713,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0790077,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0900001,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0900179,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0900756,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0900758,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0900759,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0901570,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902047,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902285,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902446,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902447,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902448,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902450,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902553,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902693,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902694,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902783,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902806,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0902809,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0903479,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0970714,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0970996,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0971147,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0971821,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A0990097,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9100483,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9101510,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9101662,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9103126,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9104267,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9104268,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9104404,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9104507,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9104665,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9106874,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9302116,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9302732,2009,Count_Student_AmericanIndianOrAlaskaNative,4.0,, +nces/A9501079,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9501433,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9502014,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9502015,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9502589,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9502733,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9503341,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/A9503430,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9503777,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9700074,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9702631,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9702795,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9703331,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9705123,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9705126,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9705218,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9705232,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9706318,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9707442,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9707907,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9708049,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9708050,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9708052,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9708053,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9900904,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9901553,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9902871,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9903306,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9903610,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9904455,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/A9904469,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/AA000003,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/AA000007,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/AA000008,2009,Count_Student_AmericanIndianOrAlaskaNative,2.0,, +nces/AA000010,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/AA000011,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/AA001609,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/BB000456,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB020971,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB021012,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB061076,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB080157,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB080442,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB100068,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB100187,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB100383,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB101572,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/BB911554,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB942865,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB943172,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB943634,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB945908,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB964072,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB964100,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/BB980189,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9300079,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9301240,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9303866,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/K9304728,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9305227,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9305325,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9305530,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9305911,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9500531,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/K9500748,2009,Count_Student_AmericanIndianOrAlaskaNative,1.0,, +nces/Y2162569,2009,Count_Student_AmericanIndianOrAlaskaNative,0.0,, +nces/00001026,2009,Count_Student_Asian,3.0,, +nces/00081272,2009,Count_Student_Asian,19.0,, +nces/00259858,2009,Count_Student_Asian,0.0,, +nces/00425908,2009,Count_Student_Asian,18.0,, +nces/00517072,2009,Count_Student_Asian,0.0,, +nces/00699979,2009,Count_Student_Asian,29.0,, +nces/00752221,2009,Count_Student_Asian,3.0,, +nces/00928796,2009,Count_Student_Asian,5.0,, +nces/01195835,2009,Count_Student_Asian,29.0,, +nces/01283096,2009,Count_Student_Asian,0.0,, +nces/01328801,2009,Count_Student_Asian,16.0,, +nces/01328969,2009,Count_Student_Asian,5.0,, +nces/01898328,2009,Count_Student_Asian,0.0,, +nces/01906396,2009,Count_Student_Asian,0.0,, +nces/01907265,2009,Count_Student_Asian,2.0,, +nces/01933863,2009,Count_Student_Asian,10.0,, +nces/02007955,2009,Count_Student_Asian,0.0,, +nces/02039659,2009,Count_Student_Asian,0.0,, +nces/02043767,2009,Count_Student_Asian,1.0,, +nces/02058401,2009,Count_Student_Asian,1.0,, +nces/02067846,2009,Count_Student_Asian,0.0,, +nces/02068045,2009,Count_Student_Asian,0.0,, +nces/02161237,2009,Count_Student_Asian,5.0,, +nces/A0100441,2009,Count_Student_Asian,0.0,, +nces/A0101705,2009,Count_Student_Asian,1.0,, +nces/A0102854,2009,Count_Student_Asian,0.0,, +nces/A0102857,2009,Count_Student_Asian,0.0,, +nces/A0103186,2009,Count_Student_Asian,2.0,, +nces/A0103294,2009,Count_Student_Asian,0.0,, +nces/A0104077,2009,Count_Student_Asian,0.0,, +nces/A0106240,2009,Count_Student_Asian,1.0,, +nces/A0106286,2009,Count_Student_Asian,0.0,, +nces/A0106295,2009,Count_Student_Asian,0.0,, +nces/A0106324,2009,Count_Student_Asian,0.0,, +nces/A0107740,2009,Count_Student_Asian,0.0,, +nces/A0108235,2009,Count_Student_Asian,0.0,, +nces/A0108720,2009,Count_Student_Asian,0.0,, +nces/A0108771,2009,Count_Student_Asian,1.0,, +nces/A0108773,2009,Count_Student_Asian,0.0,, +nces/A0109638,2009,Count_Student_Asian,1.0,, +nces/A0300737,2009,Count_Student_Asian,1.0,, +nces/A0300748,2009,Count_Student_Asian,0.0,, +nces/A0301888,2009,Count_Student_Asian,0.0,, +nces/A0303162,2009,Count_Student_Asian,0.0,, +nces/A0303197,2009,Count_Student_Asian,20.0,, +nces/A0304042,2009,Count_Student_Asian,0.0,, +nces/A0307071,2009,Count_Student_Asian,4.0,, +nces/A0307448,2009,Count_Student_Asian,3.0,, +nces/A0307668,2009,Count_Student_Asian,0.0,, +nces/A0307925,2009,Count_Student_Asian,0.0,, +nces/A0500119,2009,Count_Student_Asian,3.0,, +nces/A0502391,2009,Count_Student_Asian,3.0,, +nces/A0503198,2009,Count_Student_Asian,3.0,, +nces/A0503272,2009,Count_Student_Asian,0.0,, +nces/A0507274,2009,Count_Student_Asian,4.0,, +nces/A0507700,2009,Count_Student_Asian,0.0,, +nces/A0700419,2009,Count_Student_Asian,0.0,, +nces/A0700420,2009,Count_Student_Asian,1.0,, +nces/A0700686,2009,Count_Student_Asian,9.0,, +nces/A0700688,2009,Count_Student_Asian,2.0,, +nces/A0700925,2009,Count_Student_Asian,0.0,, +nces/A0701268,2009,Count_Student_Asian,12.0,, +nces/A0701576,2009,Count_Student_Asian,5.0,, +nces/A0740052,2009,Count_Student_Asian,9.0,, +nces/A0770215,2009,Count_Student_Asian,0.0,, +nces/A0770225,2009,Count_Student_Asian,1.0,, +nces/A0771128,2009,Count_Student_Asian,2.0,, +nces/A0771477,2009,Count_Student_Asian,2.0,, +nces/A0771713,2009,Count_Student_Asian,2.0,, +nces/A0790077,2009,Count_Student_Asian,0.0,, +nces/A0900001,2009,Count_Student_Asian,0.0,, +nces/A0900179,2009,Count_Student_Asian,0.0,, +nces/A0900756,2009,Count_Student_Asian,0.0,, +nces/A0900758,2009,Count_Student_Asian,0.0,, +nces/A0900759,2009,Count_Student_Asian,1.0,, +nces/A0901570,2009,Count_Student_Asian,0.0,, +nces/A0902047,2009,Count_Student_Asian,0.0,, +nces/A0902285,2009,Count_Student_Asian,0.0,, +nces/A0902446,2009,Count_Student_Asian,0.0,, +nces/A0902447,2009,Count_Student_Asian,0.0,, +nces/A0902448,2009,Count_Student_Asian,0.0,, +nces/A0902450,2009,Count_Student_Asian,0.0,, +nces/A0902553,2009,Count_Student_Asian,0.0,, +nces/A0902693,2009,Count_Student_Asian,3.0,, +nces/A0902694,2009,Count_Student_Asian,0.0,, +nces/A0902783,2009,Count_Student_Asian,0.0,, +nces/A0902806,2009,Count_Student_Asian,0.0,, +nces/A0902809,2009,Count_Student_Asian,0.0,, +nces/A0903479,2009,Count_Student_Asian,0.0,, +nces/A0970714,2009,Count_Student_Asian,0.0,, +nces/A0970996,2009,Count_Student_Asian,0.0,, +nces/A0971147,2009,Count_Student_Asian,0.0,, +nces/A0971821,2009,Count_Student_Asian,0.0,, +nces/A0990097,2009,Count_Student_Asian,0.0,, +nces/A9100483,2009,Count_Student_Asian,3.0,, +nces/A9101510,2009,Count_Student_Asian,0.0,, +nces/A9101662,2009,Count_Student_Asian,11.0,, +nces/A9103126,2009,Count_Student_Asian,0.0,, +nces/A9104267,2009,Count_Student_Asian,0.0,, +nces/A9104268,2009,Count_Student_Asian,2.0,, +nces/A9104404,2009,Count_Student_Asian,16.0,, +nces/A9104507,2009,Count_Student_Asian,0.0,, +nces/A9104665,2009,Count_Student_Asian,0.0,, +nces/A9106874,2009,Count_Student_Asian,0.0,, +nces/A9302116,2009,Count_Student_Asian,3.0,, +nces/A9302732,2009,Count_Student_Asian,29.0,, +nces/A9501079,2009,Count_Student_Asian,15.0,, +nces/A9501433,2009,Count_Student_Asian,1.0,, +nces/A9502014,2009,Count_Student_Asian,1.0,, +nces/A9502015,2009,Count_Student_Asian,0.0,, +nces/A9502589,2009,Count_Student_Asian,0.0,, +nces/A9502733,2009,Count_Student_Asian,3.0,, +nces/A9503341,2009,Count_Student_Asian,11.0,, +nces/A9503430,2009,Count_Student_Asian,0.0,, +nces/A9503777,2009,Count_Student_Asian,0.0,, +nces/A9700074,2009,Count_Student_Asian,1.0,, +nces/A9702631,2009,Count_Student_Asian,0.0,, +nces/A9702795,2009,Count_Student_Asian,1.0,, +nces/A9703331,2009,Count_Student_Asian,0.0,, +nces/A9705123,2009,Count_Student_Asian,0.0,, +nces/A9705126,2009,Count_Student_Asian,0.0,, +nces/A9705218,2009,Count_Student_Asian,0.0,, +nces/A9705232,2009,Count_Student_Asian,1.0,, +nces/A9706318,2009,Count_Student_Asian,3.0,, +nces/A9707442,2009,Count_Student_Asian,1.0,, +nces/A9707907,2009,Count_Student_Asian,0.0,, +nces/A9708049,2009,Count_Student_Asian,0.0,, +nces/A9708050,2009,Count_Student_Asian,0.0,, +nces/A9708052,2009,Count_Student_Asian,150.0,, +nces/A9708053,2009,Count_Student_Asian,0.0,, +nces/A9900904,2009,Count_Student_Asian,0.0,, +nces/A9901553,2009,Count_Student_Asian,0.0,, +nces/A9902871,2009,Count_Student_Asian,1.0,, +nces/A9903306,2009,Count_Student_Asian,1.0,, +nces/A9903610,2009,Count_Student_Asian,0.0,, +nces/A9904455,2009,Count_Student_Asian,0.0,, +nces/A9904469,2009,Count_Student_Asian,0.0,, +nces/AA000003,2009,Count_Student_Asian,2.0,, +nces/AA000007,2009,Count_Student_Asian,0.0,, +nces/AA000008,2009,Count_Student_Asian,9.0,, +nces/AA000010,2009,Count_Student_Asian,36.0,, +nces/AA000011,2009,Count_Student_Asian,0.0,, +nces/AA001609,2009,Count_Student_Asian,1.0,, +nces/BB000456,2009,Count_Student_Asian,0.0,, +nces/BB020971,2009,Count_Student_Asian,0.0,, +nces/BB021012,2009,Count_Student_Asian,0.0,, +nces/BB061076,2009,Count_Student_Asian,1.0,, +nces/BB080157,2009,Count_Student_Asian,0.0,, +nces/BB080442,2009,Count_Student_Asian,7.0,, +nces/BB100068,2009,Count_Student_Asian,3.0,, +nces/BB100187,2009,Count_Student_Asian,0.0,, +nces/BB100383,2009,Count_Student_Asian,0.0,, +nces/BB101572,2009,Count_Student_Asian,0.0,, +nces/BB911554,2009,Count_Student_Asian,2.0,, +nces/BB942865,2009,Count_Student_Asian,2.0,, +nces/BB943172,2009,Count_Student_Asian,0.0,, +nces/BB943634,2009,Count_Student_Asian,0.0,, +nces/BB945908,2009,Count_Student_Asian,0.0,, +nces/BB964072,2009,Count_Student_Asian,2.0,, +nces/BB964100,2009,Count_Student_Asian,0.0,, +nces/BB980189,2009,Count_Student_Asian,59.0,, +nces/K9300079,2009,Count_Student_Asian,1.0,, +nces/K9301240,2009,Count_Student_Asian,0.0,, +nces/K9303866,2009,Count_Student_Asian,5.0,, +nces/K9304728,2009,Count_Student_Asian,0.0,, +nces/K9305227,2009,Count_Student_Asian,0.0,, +nces/K9305325,2009,Count_Student_Asian,0.0,, +nces/K9305530,2009,Count_Student_Asian,1.0,, +nces/K9305911,2009,Count_Student_Asian,0.0,, +nces/K9500531,2009,Count_Student_Asian,0.0,, +nces/K9500748,2009,Count_Student_Asian,3.0,, +nces/Y2162569,2009,Count_Student_Asian,7.0,, +nces/00001026,2009,Count_Student_Black,1.0,, +nces/00081272,2009,Count_Student_Black,4.0,, +nces/00259858,2009,Count_Student_Black,0.0,, +nces/00425908,2009,Count_Student_Black,2.0,, +nces/00517072,2009,Count_Student_Black,26.0,, +nces/00699979,2009,Count_Student_Black,18.0,, +nces/00752221,2009,Count_Student_Black,11.0,, +nces/00928796,2009,Count_Student_Black,4.0,, +nces/01195835,2009,Count_Student_Black,120.0,, +nces/01283096,2009,Count_Student_Black,3.0,, +nces/01328801,2009,Count_Student_Black,19.0,, +nces/01328969,2009,Count_Student_Black,9.0,, +nces/01898328,2009,Count_Student_Black,4.0,, +nces/01906396,2009,Count_Student_Black,4.0,, +nces/01907265,2009,Count_Student_Black,125.0,, +nces/01933863,2009,Count_Student_Black,7.0,, +nces/02007955,2009,Count_Student_Black,26.0,, +nces/02039659,2009,Count_Student_Black,0.0,, +nces/02043767,2009,Count_Student_Black,23.0,, +nces/02058401,2009,Count_Student_Black,0.0,, +nces/02067846,2009,Count_Student_Black,0.0,, +nces/02068045,2009,Count_Student_Black,0.0,, +nces/02161237,2009,Count_Student_Black,14.0,, +nces/A0100441,2009,Count_Student_Black,0.0,, +nces/A0101705,2009,Count_Student_Black,1.0,, +nces/A0102854,2009,Count_Student_Black,1.0,, +nces/A0102857,2009,Count_Student_Black,8.0,, +nces/A0103186,2009,Count_Student_Black,2.0,, +nces/A0103294,2009,Count_Student_Black,5.0,, +nces/A0104077,2009,Count_Student_Black,0.0,, +nces/A0106240,2009,Count_Student_Black,0.0,, +nces/A0106286,2009,Count_Student_Black,2.0,, +nces/A0106295,2009,Count_Student_Black,0.0,, +nces/A0106324,2009,Count_Student_Black,0.0,, +nces/A0107740,2009,Count_Student_Black,7.0,, +nces/A0108235,2009,Count_Student_Black,0.0,, +nces/A0108720,2009,Count_Student_Black,0.0,, +nces/A0108771,2009,Count_Student_Black,4.0,, +nces/A0108773,2009,Count_Student_Black,15.0,, +nces/A0109638,2009,Count_Student_Black,7.0,, +nces/A0300737,2009,Count_Student_Black,37.0,, +nces/A0300748,2009,Count_Student_Black,128.0,, +nces/A0301888,2009,Count_Student_Black,3.0,, +nces/A0303162,2009,Count_Student_Black,3.0,, +nces/A0303197,2009,Count_Student_Black,1.0,, +nces/A0304042,2009,Count_Student_Black,15.0,, +nces/A0307071,2009,Count_Student_Black,8.0,, +nces/A0307448,2009,Count_Student_Black,10.0,, +nces/A0307668,2009,Count_Student_Black,3.0,, +nces/A0307925,2009,Count_Student_Black,25.0,, +nces/A0500119,2009,Count_Student_Black,4.0,, +nces/A0502391,2009,Count_Student_Black,3.0,, +nces/A0503198,2009,Count_Student_Black,35.0,, +nces/A0503272,2009,Count_Student_Black,0.0,, +nces/A0507274,2009,Count_Student_Black,0.0,, +nces/A0507700,2009,Count_Student_Black,1.0,, +nces/A0700419,2009,Count_Student_Black,1.0,, +nces/A0700420,2009,Count_Student_Black,2.0,, +nces/A0700686,2009,Count_Student_Black,19.0,, +nces/A0700688,2009,Count_Student_Black,8.0,, +nces/A0700925,2009,Count_Student_Black,5.0,, +nces/A0701268,2009,Count_Student_Black,6.0,, +nces/A0701576,2009,Count_Student_Black,22.0,, +nces/A0740052,2009,Count_Student_Black,2.0,, +nces/A0770215,2009,Count_Student_Black,17.0,, +nces/A0770225,2009,Count_Student_Black,0.0,, +nces/A0771128,2009,Count_Student_Black,0.0,, +nces/A0771477,2009,Count_Student_Black,1.0,, +nces/A0771713,2009,Count_Student_Black,16.0,, +nces/A0790077,2009,Count_Student_Black,0.0,, +nces/A0900001,2009,Count_Student_Black,123.0,, +nces/A0900179,2009,Count_Student_Black,0.0,, +nces/A0900756,2009,Count_Student_Black,1.0,, +nces/A0900758,2009,Count_Student_Black,3.0,, +nces/A0900759,2009,Count_Student_Black,1.0,, +nces/A0901570,2009,Count_Student_Black,18.0,, +nces/A0902047,2009,Count_Student_Black,0.0,, +nces/A0902285,2009,Count_Student_Black,33.0,, +nces/A0902446,2009,Count_Student_Black,1.0,, +nces/A0902447,2009,Count_Student_Black,1.0,, +nces/A0902448,2009,Count_Student_Black,0.0,, +nces/A0902450,2009,Count_Student_Black,18.0,, +nces/A0902553,2009,Count_Student_Black,0.0,, +nces/A0902693,2009,Count_Student_Black,1.0,, +nces/A0902694,2009,Count_Student_Black,0.0,, +nces/A0902783,2009,Count_Student_Black,0.0,, +nces/A0902806,2009,Count_Student_Black,30.0,, +nces/A0902809,2009,Count_Student_Black,10.0,, +nces/A0903479,2009,Count_Student_Black,0.0,, +nces/A0970714,2009,Count_Student_Black,9.0,, +nces/A0970996,2009,Count_Student_Black,7.0,, +nces/A0971147,2009,Count_Student_Black,0.0,, +nces/A0971821,2009,Count_Student_Black,0.0,, +nces/A0990097,2009,Count_Student_Black,0.0,, +nces/A9100483,2009,Count_Student_Black,3.0,, +nces/A9101510,2009,Count_Student_Black,0.0,, +nces/A9101662,2009,Count_Student_Black,128.0,, +nces/A9103126,2009,Count_Student_Black,0.0,, +nces/A9104267,2009,Count_Student_Black,14.0,, +nces/A9104268,2009,Count_Student_Black,19.0,, +nces/A9104404,2009,Count_Student_Black,73.0,, +nces/A9104507,2009,Count_Student_Black,0.0,, +nces/A9104665,2009,Count_Student_Black,0.0,, +nces/A9106874,2009,Count_Student_Black,1.0,, +nces/A9302116,2009,Count_Student_Black,0.0,, +nces/A9302732,2009,Count_Student_Black,29.0,, +nces/A9501079,2009,Count_Student_Black,0.0,, +nces/A9501433,2009,Count_Student_Black,4.0,, +nces/A9502014,2009,Count_Student_Black,1.0,, +nces/A9502015,2009,Count_Student_Black,52.0,, +nces/A9502589,2009,Count_Student_Black,0.0,, +nces/A9502733,2009,Count_Student_Black,1.0,, +nces/A9503341,2009,Count_Student_Black,5.0,, +nces/A9503430,2009,Count_Student_Black,55.0,, +nces/A9503777,2009,Count_Student_Black,8.0,, +nces/A9700074,2009,Count_Student_Black,37.0,, +nces/A9702631,2009,Count_Student_Black,0.0,, +nces/A9702795,2009,Count_Student_Black,42.0,, +nces/A9703331,2009,Count_Student_Black,7.0,, +nces/A9705123,2009,Count_Student_Black,0.0,, +nces/A9705126,2009,Count_Student_Black,1.0,, +nces/A9705218,2009,Count_Student_Black,1.0,, +nces/A9705232,2009,Count_Student_Black,3.0,, +nces/A9706318,2009,Count_Student_Black,0.0,, +nces/A9707442,2009,Count_Student_Black,0.0,, +nces/A9707907,2009,Count_Student_Black,1.0,, +nces/A9708049,2009,Count_Student_Black,0.0,, +nces/A9708050,2009,Count_Student_Black,5.0,, +nces/A9708052,2009,Count_Student_Black,3.0,, +nces/A9708053,2009,Count_Student_Black,6.0,, +nces/A9900904,2009,Count_Student_Black,0.0,, +nces/A9901553,2009,Count_Student_Black,0.0,, +nces/A9902871,2009,Count_Student_Black,0.0,, +nces/A9903306,2009,Count_Student_Black,1.0,, +nces/A9903610,2009,Count_Student_Black,0.0,, +nces/A9904455,2009,Count_Student_Black,0.0,, +nces/A9904469,2009,Count_Student_Black,0.0,, +nces/AA000003,2009,Count_Student_Black,0.0,, +nces/AA000007,2009,Count_Student_Black,0.0,, +nces/AA000008,2009,Count_Student_Black,4.0,, +nces/AA000010,2009,Count_Student_Black,1.0,, +nces/AA000011,2009,Count_Student_Black,0.0,, +nces/AA001609,2009,Count_Student_Black,0.0,, +nces/BB000456,2009,Count_Student_Black,2.0,, +nces/BB020971,2009,Count_Student_Black,5.0,, +nces/BB021012,2009,Count_Student_Black,0.0,, +nces/BB061076,2009,Count_Student_Black,11.0,, +nces/BB080157,2009,Count_Student_Black,1.0,, +nces/BB080442,2009,Count_Student_Black,8.0,, +nces/BB100068,2009,Count_Student_Black,2.0,, +nces/BB100187,2009,Count_Student_Black,2.0,, +nces/BB100383,2009,Count_Student_Black,2.0,, +nces/BB101572,2009,Count_Student_Black,2.0,, +nces/BB911554,2009,Count_Student_Black,32.0,, +nces/BB942865,2009,Count_Student_Black,3.0,, +nces/BB943172,2009,Count_Student_Black,25.0,, +nces/BB943634,2009,Count_Student_Black,7.0,, +nces/BB945908,2009,Count_Student_Black,0.0,, +nces/BB964072,2009,Count_Student_Black,24.0,, +nces/BB964100,2009,Count_Student_Black,0.0,, +nces/BB980189,2009,Count_Student_Black,8.0,, +nces/K9300079,2009,Count_Student_Black,0.0,, +nces/K9301240,2009,Count_Student_Black,56.0,, +nces/K9303866,2009,Count_Student_Black,0.0,, +nces/K9304728,2009,Count_Student_Black,0.0,, +nces/K9305227,2009,Count_Student_Black,8.0,, +nces/K9305325,2009,Count_Student_Black,0.0,, +nces/K9305530,2009,Count_Student_Black,0.0,, +nces/K9305911,2009,Count_Student_Black,9.0,, +nces/K9500531,2009,Count_Student_Black,5.0,, +nces/K9500748,2009,Count_Student_Black,1.0,, +nces/Y2162569,2009,Count_Student_Black,54.0,, +nces/00001026,2009,Count_Teacher,16.6,, +nces/00081272,2009,Count_Teacher,14.0,, +nces/00094237,2009,Count_Teacher,2.0,, +nces/00259858,2009,Count_Teacher,2.0,, +nces/00425908,2009,Count_Teacher,17.4,, +nces/00517072,2009,Count_Teacher,42.6,, +nces/00699979,2009,Count_Teacher,60.5,, +nces/00752221,2009,Count_Teacher,5.6,, +nces/00928796,2009,Count_Teacher,9.0,, +nces/01195835,2009,Count_Teacher,77.4,, +nces/01283096,2009,Count_Teacher,4.0,, +nces/01328801,2009,Count_Teacher,24.6,, +nces/01328969,2009,Count_Teacher,7.0,, +nces/01898328,2009,Count_Teacher,1.0,, +nces/01906396,2009,Count_Teacher,19.1,, +nces/01907265,2009,Count_Teacher,41.0,, +nces/01933863,2009,Count_Teacher,19.8,, +nces/02007955,2009,Count_Teacher,3.0,, +nces/02039659,2009,Count_Teacher,4.6,, +nces/02043767,2009,Count_Teacher,12.4,, +nces/02058401,2009,Count_Teacher,10.4,, +nces/02067846,2009,Count_Teacher,1.0,, +nces/02068045,2009,Count_Teacher,5.8,, +nces/02161237,2009,Count_Teacher,12.5,, +nces/A0100441,2009,Count_Teacher,2.0,, +nces/A0101705,2009,Count_Teacher,4.3,, +nces/A0102854,2009,Count_Teacher,8.0,, +nces/A0102857,2009,Count_Teacher,1.9,, +nces/A0103186,2009,Count_Teacher,2.0,, +nces/A0103294,2009,Count_Teacher,1.0,, +nces/A0104077,2009,Count_Teacher,11.0,, +nces/A0105209,2009,Count_Teacher,12.8,, +nces/A0106240,2009,Count_Teacher,1.4,, +nces/A0106286,2009,Count_Teacher,1.0,, +nces/A0106293,2009,Count_Teacher,1.0,, +nces/A0106295,2009,Count_Teacher,2.0,, +nces/A0106296,2009,Count_Teacher,4.5,, +nces/A0106324,2009,Count_Teacher,1.0,, +nces/A0107740,2009,Count_Teacher,4.0,, +nces/A0108235,2009,Count_Teacher,2.0,, +nces/A0108720,2009,Count_Teacher,2.0,, +nces/A0108771,2009,Count_Teacher,3.0,, +nces/A0108773,2009,Count_Teacher,11.0,, +nces/A0109638,2009,Count_Teacher,2.0,, +nces/A0300103,2009,Count_Teacher,1.0,, +nces/A0300737,2009,Count_Teacher,7.8,, +nces/A0300748,2009,Count_Teacher,10.3,, +nces/A0301888,2009,Count_Teacher,2.6,, +nces/A0303162,2009,Count_Teacher,5.0,, +nces/A0303197,2009,Count_Teacher,4.4,, +nces/A0304042,2009,Count_Teacher,5.9,, +nces/A0307071,2009,Count_Teacher,6.0,, +nces/A0307448,2009,Count_Teacher,9.3,, +nces/A0307668,2009,Count_Teacher,2.0,, +nces/A0307925,2009,Count_Teacher,5.8,, +nces/A0500119,2009,Count_Teacher,4.0,, +nces/A0500120,2009,Count_Teacher,3.0,, +nces/A0502391,2009,Count_Teacher,27.9,, +nces/A0503198,2009,Count_Teacher,11.0,, +nces/A0503272,2009,Count_Teacher,3.1,, +nces/A0507124,2009,Count_Teacher,3.0,, +nces/A0507274,2009,Count_Teacher,1.9,, +nces/A0507700,2009,Count_Teacher,1.1,, +nces/A0700419,2009,Count_Teacher,7.0,, +nces/A0700420,2009,Count_Teacher,3.0,, +nces/A0700686,2009,Count_Teacher,10.5,, +nces/A0700688,2009,Count_Teacher,7.8,, +nces/A0700925,2009,Count_Teacher,1.0,, +nces/A0701268,2009,Count_Teacher,14.1,, +nces/A0701576,2009,Count_Teacher,7.0,, +nces/A0740052,2009,Count_Teacher,3.0,, +nces/A0770215,2009,Count_Teacher,2.0,, +nces/A0770225,2009,Count_Teacher,1.0,, +nces/A0771128,2009,Count_Teacher,1.0,, +nces/A0771471,2009,Count_Teacher,1.9,, +nces/A0771477,2009,Count_Teacher,0.9,, +nces/A0771713,2009,Count_Teacher,2.0,, +nces/A0790077,2009,Count_Teacher,0.4,, +nces/A0900001,2009,Count_Teacher,11.6,, +nces/A0900179,2009,Count_Teacher,1.0,, +nces/A0900756,2009,Count_Teacher,1.0,, +nces/A0900759,2009,Count_Teacher,9.6,, +nces/A0900761,2009,Count_Teacher,1.0,, +nces/A0901570,2009,Count_Teacher,1.9,, +nces/A0902047,2009,Count_Teacher,1.9,, +nces/A0902285,2009,Count_Teacher,12.0,, +nces/A0902446,2009,Count_Teacher,4.3,, +nces/A0902447,2009,Count_Teacher,1.4,, +nces/A0902448,2009,Count_Teacher,7.5,, +nces/A0902450,2009,Count_Teacher,6.1,, +nces/A0902553,2009,Count_Teacher,1.1,, +nces/A0902693,2009,Count_Teacher,1.0,, +nces/A0902694,2009,Count_Teacher,1.4,, +nces/A0902783,2009,Count_Teacher,1.0,, +nces/A0902806,2009,Count_Teacher,14.0,, +nces/A0902809,2009,Count_Teacher,8.0,, +nces/A0903406,2009,Count_Teacher,83.0,, +nces/A0903479,2009,Count_Teacher,1.1,, +nces/A0970714,2009,Count_Teacher,1.0,, +nces/A0970996,2009,Count_Teacher,2.6,, +nces/A0971147,2009,Count_Teacher,1.1,, +nces/A0971821,2009,Count_Teacher,1.0,, +nces/A0990097,2009,Count_Teacher,2.6,, +nces/A9100483,2009,Count_Teacher,1.0,, +nces/A9101510,2009,Count_Teacher,3.4,, +nces/A9101662,2009,Count_Teacher,22.6,, +nces/A9103126,2009,Count_Teacher,5.1,, +nces/A9104267,2009,Count_Teacher,3.9,, +nces/A9104268,2009,Count_Teacher,6.8,, +nces/A9104404,2009,Count_Teacher,25.8,, +nces/A9104507,2009,Count_Teacher,4.8,, +nces/A9104665,2009,Count_Teacher,62.3,, +nces/A9106874,2009,Count_Teacher,6.0,, +nces/A9302116,2009,Count_Teacher,1.0,, +nces/A9302732,2009,Count_Teacher,47.6,, +nces/A9501078,2009,Count_Teacher,6.8,, +nces/A9501079,2009,Count_Teacher,6.6,, +nces/A9501433,2009,Count_Teacher,2.0,, +nces/A9502014,2009,Count_Teacher,4.0,, +nces/A9502015,2009,Count_Teacher,5.0,, +nces/A9502589,2009,Count_Teacher,2.5,, +nces/A9502733,2009,Count_Teacher,4.0,, +nces/A9503341,2009,Count_Teacher,12.8,, +nces/A9503430,2009,Count_Teacher,16.0,, +nces/A9503777,2009,Count_Teacher,6.0,, +nces/A9700074,2009,Count_Teacher,17.0,, +nces/A9702631,2009,Count_Teacher,1.1,, +nces/A9702795,2009,Count_Teacher,14.4,, +nces/A9703331,2009,Count_Teacher,26.6,, +nces/A9705123,2009,Count_Teacher,1.0,, +nces/A9705126,2009,Count_Teacher,4.8,, +nces/A9705218,2009,Count_Teacher,4.0,, +nces/A9705232,2009,Count_Teacher,2.0,, +nces/A9706318,2009,Count_Teacher,5.0,, +nces/A9707442,2009,Count_Teacher,2.8,, +nces/A9707907,2009,Count_Teacher,1.0,, +nces/A9708049,2009,Count_Teacher,3.0,, +nces/A9708050,2009,Count_Teacher,2.0,, +nces/A9708052,2009,Count_Teacher,16.0,, +nces/A9708053,2009,Count_Teacher,1.0,, +nces/A9900904,2009,Count_Teacher,3.6,, +nces/A9901553,2009,Count_Teacher,15.0,, +nces/A9902871,2009,Count_Teacher,2.0,, +nces/A9903306,2009,Count_Teacher,1.9,, +nces/A9903610,2009,Count_Teacher,1.0,, +nces/A9904455,2009,Count_Teacher,3.1,, +nces/A9904469,2009,Count_Teacher,3.0,, +nces/AA000003,2009,Count_Teacher,5.0,, +nces/AA000007,2009,Count_Teacher,6.6,, +nces/AA000008,2009,Count_Teacher,13.0,, +nces/AA000010,2009,Count_Teacher,8.9,, +nces/AA000011,2009,Count_Teacher,2.4,, +nces/AA001609,2009,Count_Teacher,10.4,, +nces/BB000456,2009,Count_Teacher,1.4,, +nces/BB020971,2009,Count_Teacher,1.0,, +nces/BB021012,2009,Count_Teacher,3.0,, +nces/BB061076,2009,Count_Teacher,21.9,, +nces/BB080157,2009,Count_Teacher,2.0,, +nces/BB080442,2009,Count_Teacher,6.0,, +nces/BB100068,2009,Count_Teacher,3.0,, +nces/BB100187,2009,Count_Teacher,1.0,, +nces/BB100383,2009,Count_Teacher,2.0,, +nces/BB100994,2009,Count_Teacher,7.6,, +nces/BB101572,2009,Count_Teacher,1.9,, +nces/BB911554,2009,Count_Teacher,11.0,, +nces/BB942865,2009,Count_Teacher,9.0,, +nces/BB943172,2009,Count_Teacher,1.0,, +nces/BB943634,2009,Count_Teacher,11.8,, +nces/BB945908,2009,Count_Teacher,1.0,, +nces/BB964072,2009,Count_Teacher,6.0,, +nces/BB964100,2009,Count_Teacher,1.0,, +nces/BB980189,2009,Count_Teacher,18.0,, +nces/K9300079,2009,Count_Teacher,1.1,, +nces/K9301240,2009,Count_Teacher,4.0,, +nces/K9303866,2009,Count_Teacher,3.0,, +nces/K9304728,2009,Count_Teacher,11.5,, +nces/K9305227,2009,Count_Teacher,1.0,, +nces/K9305325,2009,Count_Teacher,1.0,, +nces/K9305466,2009,Count_Teacher,0.6,, +nces/K9305530,2009,Count_Teacher,1.0,, +nces/K9305911,2009,Count_Teacher,1.0,, +nces/K9500531,2009,Count_Teacher,9.9,, +nces/K9500748,2009,Count_Teacher,5.8,, +nces/Y2162569,2009,Count_Teacher,42.3,, +nces/00001026,2009,Count_Student_SchoolGrade1,11.0,, +nces/00081272,2009,Count_Student_SchoolGrade1,26.0,, +nces/00094237,2009,Count_Student_SchoolGrade1,6.0,, +nces/00425908,2009,Count_Student_SchoolGrade1,15.0,, +nces/00517072,2009,Count_Student_SchoolGrade1,14.0,, +nces/00752221,2009,Count_Student_SchoolGrade1,2.0,, +nces/00928796,2009,Count_Student_SchoolGrade1,17.0,, +nces/01195835,2009,Count_Student_SchoolGrade1,34.0,, +nces/01328801,2009,Count_Student_SchoolGrade1,19.0,, +nces/01328969,2009,Count_Student_SchoolGrade1,13.0,, +nces/01906396,2009,Count_Student_SchoolGrade1,24.0,, +nces/01933863,2009,Count_Student_SchoolGrade1,14.0,, +nces/02007955,2009,Count_Student_SchoolGrade1,2.0,, +nces/02039659,2009,Count_Student_SchoolGrade1,5.0,, +nces/02058401,2009,Count_Student_SchoolGrade1,8.0,, +nces/02068045,2009,Count_Student_SchoolGrade1,2.0,, +nces/02161237,2009,Count_Student_SchoolGrade1,11.0,, +nces/A0100441,2009,Count_Student_SchoolGrade1,3.0,, +nces/A0101705,2009,Count_Student_SchoolGrade1,4.0,, +nces/A0102854,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0102857,2009,Count_Student_SchoolGrade1,8.0,, +nces/A0105209,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0108720,2009,Count_Student_SchoolGrade1,2.0,, +nces/A0109638,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0300748,2009,Count_Student_SchoolGrade1,16.0,, +nces/A0303197,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0307071,2009,Count_Student_SchoolGrade1,10.0,, +nces/A0307448,2009,Count_Student_SchoolGrade1,8.0,, +nces/A0307925,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0502391,2009,Count_Student_SchoolGrade1,19.0,, +nces/A0503198,2009,Count_Student_SchoolGrade1,10.0,, +nces/A0503272,2009,Count_Student_SchoolGrade1,2.0,, +nces/A0700419,2009,Count_Student_SchoolGrade1,2.0,, +nces/A0700686,2009,Count_Student_SchoolGrade1,12.0,, +nces/A0701268,2009,Count_Student_SchoolGrade1,14.0,, +nces/A0701576,2009,Count_Student_SchoolGrade1,17.0,, +nces/A0740052,2009,Count_Student_SchoolGrade1,2.0,, +nces/A0900758,2009,Count_Student_SchoolGrade1,6.0,, +nces/A0900759,2009,Count_Student_SchoolGrade1,10.0,, +nces/A0902047,2009,Count_Student_SchoolGrade1,1.0,, +nces/A0902446,2009,Count_Student_SchoolGrade1,3.0,, +nces/A0902448,2009,Count_Student_SchoolGrade1,9.0,, +nces/A0970996,2009,Count_Student_SchoolGrade1,4.0,, +nces/A9100483,2009,Count_Student_SchoolGrade1,1.0,, +nces/A9101662,2009,Count_Student_SchoolGrade1,28.0,, +nces/A9104267,2009,Count_Student_SchoolGrade1,1.0,, +nces/A9104268,2009,Count_Student_SchoolGrade1,5.0,, +nces/A9104404,2009,Count_Student_SchoolGrade1,36.0,, +nces/A9104507,2009,Count_Student_SchoolGrade1,4.0,, +nces/A9106874,2009,Count_Student_SchoolGrade1,1.0,, +nces/A9302116,2009,Count_Student_SchoolGrade1,2.0,, +nces/A9302732,2009,Count_Student_SchoolGrade1,30.0,, +nces/A9501078,2009,Count_Student_SchoolGrade1,13.0,, +nces/A9501433,2009,Count_Student_SchoolGrade1,4.0,, +nces/A9503341,2009,Count_Student_SchoolGrade1,20.0,, +nces/A9700074,2009,Count_Student_SchoolGrade1,16.0,, +nces/A9703331,2009,Count_Student_SchoolGrade1,25.0,, +nces/A9705218,2009,Count_Student_SchoolGrade1,4.0,, +nces/A9705232,2009,Count_Student_SchoolGrade1,8.0,, +nces/A9706318,2009,Count_Student_SchoolGrade1,7.0,, +nces/A9708052,2009,Count_Student_SchoolGrade1,24.0,, +nces/A9904469,2009,Count_Student_SchoolGrade1,7.0,, +nces/AA000007,2009,Count_Student_SchoolGrade1,2.0,, +nces/AA000008,2009,Count_Student_SchoolGrade1,11.0,, +nces/AA000010,2009,Count_Student_SchoolGrade1,9.0,, +nces/AA001609,2009,Count_Student_SchoolGrade1,24.0,, +nces/BB061076,2009,Count_Student_SchoolGrade1,8.0,, +nces/BB080442,2009,Count_Student_SchoolGrade1,11.0,, +nces/BB100994,2009,Count_Student_SchoolGrade1,8.0,, +nces/BB942865,2009,Count_Student_SchoolGrade1,2.0,, +nces/BB943634,2009,Count_Student_SchoolGrade1,20.0,, +nces/BB964072,2009,Count_Student_SchoolGrade1,16.0,, +nces/BB980189,2009,Count_Student_SchoolGrade1,9.0,, +nces/K9301240,2009,Count_Student_SchoolGrade1,8.0,, +nces/K9500531,2009,Count_Student_SchoolGrade1,10.0,, +nces/K9500748,2009,Count_Student_SchoolGrade1,8.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade1,47.0,, +nces/00001026,2009,Count_Student_SchoolGrade10,18.0,, +nces/00259858,2009,Count_Student_SchoolGrade10,1.0,, +nces/00517072,2009,Count_Student_SchoolGrade10,44.0,, +nces/00699979,2009,Count_Student_SchoolGrade10,191.0,, +nces/01195835,2009,Count_Student_SchoolGrade10,62.0,, +nces/01283096,2009,Count_Student_SchoolGrade10,3.0,, +nces/01328801,2009,Count_Student_SchoolGrade10,15.0,, +nces/01907265,2009,Count_Student_SchoolGrade10,76.0,, +nces/01933863,2009,Count_Student_SchoolGrade10,20.0,, +nces/02007955,2009,Count_Student_SchoolGrade10,2.0,, +nces/02067846,2009,Count_Student_SchoolGrade10,1.0,, +nces/02068045,2009,Count_Student_SchoolGrade10,3.0,, +nces/A0100441,2009,Count_Student_SchoolGrade10,2.0,, +nces/A0104077,2009,Count_Student_SchoolGrade10,6.0,, +nces/A0108773,2009,Count_Student_SchoolGrade10,11.0,, +nces/A0300737,2009,Count_Student_SchoolGrade10,6.0,, +nces/A0300748,2009,Count_Student_SchoolGrade10,2.0,, +nces/A0303162,2009,Count_Student_SchoolGrade10,17.0,, +nces/A0304042,2009,Count_Student_SchoolGrade10,8.0,, +nces/A0503198,2009,Count_Student_SchoolGrade10,11.0,, +nces/A0503272,2009,Count_Student_SchoolGrade10,2.0,, +nces/A0700688,2009,Count_Student_SchoolGrade10,15.0,, +nces/A0900001,2009,Count_Student_SchoolGrade10,20.0,, +nces/A0900758,2009,Count_Student_SchoolGrade10,6.0,, +nces/A0902447,2009,Count_Student_SchoolGrade10,2.0,, +nces/A0902450,2009,Count_Student_SchoolGrade10,2.0,, +nces/A0902806,2009,Count_Student_SchoolGrade10,16.0,, +nces/A0902809,2009,Count_Student_SchoolGrade10,15.0,, +nces/A0903406,2009,Count_Student_SchoolGrade10,16.0,, +nces/A9104404,2009,Count_Student_SchoolGrade10,6.0,, +nces/A9104507,2009,Count_Student_SchoolGrade10,1.0,, +nces/A9104665,2009,Count_Student_SchoolGrade10,74.0,, +nces/A9106874,2009,Count_Student_SchoolGrade10,4.0,, +nces/A9302732,2009,Count_Student_SchoolGrade10,19.0,, +nces/A9503430,2009,Count_Student_SchoolGrade10,27.0,, +nces/A9503777,2009,Count_Student_SchoolGrade10,6.0,, +nces/A9700074,2009,Count_Student_SchoolGrade10,6.0,, +nces/A9702795,2009,Count_Student_SchoolGrade10,16.0,, +nces/A9703331,2009,Count_Student_SchoolGrade10,13.0,, +nces/A9903306,2009,Count_Student_SchoolGrade10,4.0,, +nces/A9904455,2009,Count_Student_SchoolGrade10,2.0,, +nces/BB080157,2009,Count_Student_SchoolGrade10,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade10,4.0,, +nces/BB100994,2009,Count_Student_SchoolGrade10,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade10,17.0,, +nces/BB980189,2009,Count_Student_SchoolGrade10,15.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade10,46.0,, +nces/00001026,2009,Count_Student_SchoolGrade11,15.0,, +nces/00259858,2009,Count_Student_SchoolGrade11,1.0,, +nces/00517072,2009,Count_Student_SchoolGrade11,37.0,, +nces/00699979,2009,Count_Student_SchoolGrade11,191.0,, +nces/01195835,2009,Count_Student_SchoolGrade11,82.0,, +nces/01283096,2009,Count_Student_SchoolGrade11,3.0,, +nces/01328801,2009,Count_Student_SchoolGrade11,22.0,, +nces/01907265,2009,Count_Student_SchoolGrade11,59.0,, +nces/01933863,2009,Count_Student_SchoolGrade11,24.0,, +nces/02068045,2009,Count_Student_SchoolGrade11,3.0,, +nces/A0100441,2009,Count_Student_SchoolGrade11,1.0,, +nces/A0104077,2009,Count_Student_SchoolGrade11,22.0,, +nces/A0108720,2009,Count_Student_SchoolGrade11,1.0,, +nces/A0108773,2009,Count_Student_SchoolGrade11,11.0,, +nces/A0300737,2009,Count_Student_SchoolGrade11,6.0,, +nces/A0300748,2009,Count_Student_SchoolGrade11,4.0,, +nces/A0303162,2009,Count_Student_SchoolGrade11,11.0,, +nces/A0304042,2009,Count_Student_SchoolGrade11,10.0,, +nces/A0503198,2009,Count_Student_SchoolGrade11,2.0,, +nces/A0503272,2009,Count_Student_SchoolGrade11,4.0,, +nces/A0700686,2009,Count_Student_SchoolGrade11,1.0,, +nces/A0700688,2009,Count_Student_SchoolGrade11,8.0,, +nces/A0900001,2009,Count_Student_SchoolGrade11,20.0,, +nces/A0900758,2009,Count_Student_SchoolGrade11,4.0,, +nces/A0902447,2009,Count_Student_SchoolGrade11,1.0,, +nces/A0902806,2009,Count_Student_SchoolGrade11,13.0,, +nces/A0902809,2009,Count_Student_SchoolGrade11,11.0,, +nces/A0903406,2009,Count_Student_SchoolGrade11,19.0,, +nces/A9104404,2009,Count_Student_SchoolGrade11,6.0,, +nces/A9104507,2009,Count_Student_SchoolGrade11,4.0,, +nces/A9104665,2009,Count_Student_SchoolGrade11,78.0,, +nces/A9106874,2009,Count_Student_SchoolGrade11,3.0,, +nces/A9302732,2009,Count_Student_SchoolGrade11,29.0,, +nces/A9503430,2009,Count_Student_SchoolGrade11,21.0,, +nces/A9503777,2009,Count_Student_SchoolGrade11,6.0,, +nces/A9700074,2009,Count_Student_SchoolGrade11,6.0,, +nces/A9702795,2009,Count_Student_SchoolGrade11,9.0,, +nces/A9703331,2009,Count_Student_SchoolGrade11,14.0,, +nces/A9903306,2009,Count_Student_SchoolGrade11,1.0,, +nces/A9904455,2009,Count_Student_SchoolGrade11,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade11,4.0,, +nces/AA000007,2009,Count_Student_SchoolGrade11,5.0,, +nces/BB080157,2009,Count_Student_SchoolGrade11,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade11,2.0,, +nces/BB100994,2009,Count_Student_SchoolGrade11,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade11,14.0,, +nces/BB980189,2009,Count_Student_SchoolGrade11,10.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade11,46.0,, +nces/00001026,2009,Count_Student_SchoolGrade12,15.0,, +nces/00259858,2009,Count_Student_SchoolGrade12,1.0,, +nces/00517072,2009,Count_Student_SchoolGrade12,35.0,, +nces/00699979,2009,Count_Student_SchoolGrade12,182.0,, +nces/01195835,2009,Count_Student_SchoolGrade12,62.0,, +nces/01283096,2009,Count_Student_SchoolGrade12,2.0,, +nces/01328801,2009,Count_Student_SchoolGrade12,28.0,, +nces/01907265,2009,Count_Student_SchoolGrade12,55.0,, +nces/01933863,2009,Count_Student_SchoolGrade12,21.0,, +nces/02068045,2009,Count_Student_SchoolGrade12,5.0,, +nces/A0100441,2009,Count_Student_SchoolGrade12,3.0,, +nces/A0104077,2009,Count_Student_SchoolGrade12,24.0,, +nces/A0108720,2009,Count_Student_SchoolGrade12,1.0,, +nces/A0108773,2009,Count_Student_SchoolGrade12,10.0,, +nces/A0300737,2009,Count_Student_SchoolGrade12,3.0,, +nces/A0303162,2009,Count_Student_SchoolGrade12,8.0,, +nces/A0304042,2009,Count_Student_SchoolGrade12,12.0,, +nces/A0503198,2009,Count_Student_SchoolGrade12,13.0,, +nces/A0503272,2009,Count_Student_SchoolGrade12,3.0,, +nces/A0700686,2009,Count_Student_SchoolGrade12,2.0,, +nces/A0700688,2009,Count_Student_SchoolGrade12,10.0,, +nces/A0900001,2009,Count_Student_SchoolGrade12,15.0,, +nces/A0900179,2009,Count_Student_SchoolGrade12,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade12,6.0,, +nces/A0901570,2009,Count_Student_SchoolGrade12,3.0,, +nces/A0902447,2009,Count_Student_SchoolGrade12,2.0,, +nces/A0902450,2009,Count_Student_SchoolGrade12,5.0,, +nces/A0902806,2009,Count_Student_SchoolGrade12,5.0,, +nces/A0902809,2009,Count_Student_SchoolGrade12,13.0,, +nces/A0903406,2009,Count_Student_SchoolGrade12,18.0,, +nces/A9104404,2009,Count_Student_SchoolGrade12,9.0,, +nces/A9104507,2009,Count_Student_SchoolGrade12,1.0,, +nces/A9104665,2009,Count_Student_SchoolGrade12,67.0,, +nces/A9106874,2009,Count_Student_SchoolGrade12,2.0,, +nces/A9302732,2009,Count_Student_SchoolGrade12,29.0,, +nces/A9503430,2009,Count_Student_SchoolGrade12,15.0,, +nces/A9503777,2009,Count_Student_SchoolGrade12,7.0,, +nces/A9700074,2009,Count_Student_SchoolGrade12,5.0,, +nces/A9702795,2009,Count_Student_SchoolGrade12,5.0,, +nces/A9703331,2009,Count_Student_SchoolGrade12,15.0,, +nces/A9903306,2009,Count_Student_SchoolGrade12,1.0,, +nces/A9904455,2009,Count_Student_SchoolGrade12,2.0,, +nces/AA000007,2009,Count_Student_SchoolGrade12,2.0,, +nces/BB080157,2009,Count_Student_SchoolGrade12,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade12,2.0,, +nces/BB100994,2009,Count_Student_SchoolGrade12,4.0,, +nces/BB911554,2009,Count_Student_SchoolGrade12,24.0,, +nces/BB980189,2009,Count_Student_SchoolGrade12,18.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade12,36.0,, +nces/00001026,2009,Count_Student_SchoolGrade2,13.0,, +nces/00081272,2009,Count_Student_SchoolGrade2,20.0,, +nces/00425908,2009,Count_Student_SchoolGrade2,16.0,, +nces/00517072,2009,Count_Student_SchoolGrade2,18.0,, +nces/00752221,2009,Count_Student_SchoolGrade2,2.0,, +nces/00928796,2009,Count_Student_SchoolGrade2,21.0,, +nces/01195835,2009,Count_Student_SchoolGrade2,36.0,, +nces/01328801,2009,Count_Student_SchoolGrade2,14.0,, +nces/01328969,2009,Count_Student_SchoolGrade2,9.0,, +nces/01906396,2009,Count_Student_SchoolGrade2,22.0,, +nces/01933863,2009,Count_Student_SchoolGrade2,20.0,, +nces/02007955,2009,Count_Student_SchoolGrade2,1.0,, +nces/02039659,2009,Count_Student_SchoolGrade2,2.0,, +nces/02058401,2009,Count_Student_SchoolGrade2,6.0,, +nces/02068045,2009,Count_Student_SchoolGrade2,1.0,, +nces/02161237,2009,Count_Student_SchoolGrade2,15.0,, +nces/A0101705,2009,Count_Student_SchoolGrade2,6.0,, +nces/A0102854,2009,Count_Student_SchoolGrade2,6.0,, +nces/A0108720,2009,Count_Student_SchoolGrade2,2.0,, +nces/A0300748,2009,Count_Student_SchoolGrade2,21.0,, +nces/A0303197,2009,Count_Student_SchoolGrade2,6.0,, +nces/A0307071,2009,Count_Student_SchoolGrade2,13.0,, +nces/A0307448,2009,Count_Student_SchoolGrade2,3.0,, +nces/A0307925,2009,Count_Student_SchoolGrade2,6.0,, +nces/A0502391,2009,Count_Student_SchoolGrade2,10.0,, +nces/A0503198,2009,Count_Student_SchoolGrade2,11.0,, +nces/A0700419,2009,Count_Student_SchoolGrade2,2.0,, +nces/A0700686,2009,Count_Student_SchoolGrade2,4.0,, +nces/A0701268,2009,Count_Student_SchoolGrade2,11.0,, +nces/A0701576,2009,Count_Student_SchoolGrade2,11.0,, +nces/A0740052,2009,Count_Student_SchoolGrade2,4.0,, +nces/A0900758,2009,Count_Student_SchoolGrade2,5.0,, +nces/A0900759,2009,Count_Student_SchoolGrade2,10.0,, +nces/A0902047,2009,Count_Student_SchoolGrade2,1.0,, +nces/A0902446,2009,Count_Student_SchoolGrade2,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade2,6.0,, +nces/A0902450,2009,Count_Student_SchoolGrade2,2.0,, +nces/A0903406,2009,Count_Student_SchoolGrade2,3.0,, +nces/A0903479,2009,Count_Student_SchoolGrade2,3.0,, +nces/A0970996,2009,Count_Student_SchoolGrade2,2.0,, +nces/A9100483,2009,Count_Student_SchoolGrade2,4.0,, +nces/A9101662,2009,Count_Student_SchoolGrade2,33.0,, +nces/A9104267,2009,Count_Student_SchoolGrade2,3.0,, +nces/A9104268,2009,Count_Student_SchoolGrade2,6.0,, +nces/A9104404,2009,Count_Student_SchoolGrade2,34.0,, +nces/A9106874,2009,Count_Student_SchoolGrade2,1.0,, +nces/A9302732,2009,Count_Student_SchoolGrade2,19.0,, +nces/A9501078,2009,Count_Student_SchoolGrade2,7.0,, +nces/A9501433,2009,Count_Student_SchoolGrade2,1.0,, +nces/A9503341,2009,Count_Student_SchoolGrade2,20.0,, +nces/A9700074,2009,Count_Student_SchoolGrade2,20.0,, +nces/A9703331,2009,Count_Student_SchoolGrade2,14.0,, +nces/A9705218,2009,Count_Student_SchoolGrade2,4.0,, +nces/A9708052,2009,Count_Student_SchoolGrade2,24.0,, +nces/A9904455,2009,Count_Student_SchoolGrade2,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade2,4.0,, +nces/AA000007,2009,Count_Student_SchoolGrade2,6.0,, +nces/AA000008,2009,Count_Student_SchoolGrade2,12.0,, +nces/AA000010,2009,Count_Student_SchoolGrade2,6.0,, +nces/AA001609,2009,Count_Student_SchoolGrade2,22.0,, +nces/BB061076,2009,Count_Student_SchoolGrade2,11.0,, +nces/BB080442,2009,Count_Student_SchoolGrade2,9.0,, +nces/BB100994,2009,Count_Student_SchoolGrade2,9.0,, +nces/BB942865,2009,Count_Student_SchoolGrade2,1.0,, +nces/BB943634,2009,Count_Student_SchoolGrade2,15.0,, +nces/BB964072,2009,Count_Student_SchoolGrade2,7.0,, +nces/BB980189,2009,Count_Student_SchoolGrade2,9.0,, +nces/K9301240,2009,Count_Student_SchoolGrade2,5.0,, +nces/K9500531,2009,Count_Student_SchoolGrade2,14.0,, +nces/K9500748,2009,Count_Student_SchoolGrade2,3.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade2,37.0,, +nces/00001026,2009,Count_Student_SchoolGrade3,8.0,, +nces/00081272,2009,Count_Student_SchoolGrade3,17.0,, +nces/00425908,2009,Count_Student_SchoolGrade3,15.0,, +nces/00517072,2009,Count_Student_SchoolGrade3,20.0,, +nces/00752221,2009,Count_Student_SchoolGrade3,3.0,, +nces/00928796,2009,Count_Student_SchoolGrade3,19.0,, +nces/01195835,2009,Count_Student_SchoolGrade3,25.0,, +nces/01283096,2009,Count_Student_SchoolGrade3,1.0,, +nces/01328801,2009,Count_Student_SchoolGrade3,21.0,, +nces/01328969,2009,Count_Student_SchoolGrade3,12.0,, +nces/01906396,2009,Count_Student_SchoolGrade3,20.0,, +nces/01933863,2009,Count_Student_SchoolGrade3,17.0,, +nces/02007955,2009,Count_Student_SchoolGrade3,3.0,, +nces/02039659,2009,Count_Student_SchoolGrade3,5.0,, +nces/02058401,2009,Count_Student_SchoolGrade3,11.0,, +nces/02067846,2009,Count_Student_SchoolGrade3,1.0,, +nces/02068045,2009,Count_Student_SchoolGrade3,3.0,, +nces/02161237,2009,Count_Student_SchoolGrade3,18.0,, +nces/A0100441,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0101705,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0102854,2009,Count_Student_SchoolGrade3,2.0,, +nces/A0105209,2009,Count_Student_SchoolGrade3,3.0,, +nces/A0107740,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0108720,2009,Count_Student_SchoolGrade3,3.0,, +nces/A0300737,2009,Count_Student_SchoolGrade3,2.0,, +nces/A0300748,2009,Count_Student_SchoolGrade3,18.0,, +nces/A0303197,2009,Count_Student_SchoolGrade3,6.0,, +nces/A0307071,2009,Count_Student_SchoolGrade3,2.0,, +nces/A0307448,2009,Count_Student_SchoolGrade3,3.0,, +nces/A0307925,2009,Count_Student_SchoolGrade3,3.0,, +nces/A0502391,2009,Count_Student_SchoolGrade3,23.0,, +nces/A0503198,2009,Count_Student_SchoolGrade3,9.0,, +nces/A0503272,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0700419,2009,Count_Student_SchoolGrade3,2.0,, +nces/A0700686,2009,Count_Student_SchoolGrade3,4.0,, +nces/A0701268,2009,Count_Student_SchoolGrade3,14.0,, +nces/A0701576,2009,Count_Student_SchoolGrade3,15.0,, +nces/A0740052,2009,Count_Student_SchoolGrade3,4.0,, +nces/A0900758,2009,Count_Student_SchoolGrade3,10.0,, +nces/A0900759,2009,Count_Student_SchoolGrade3,10.0,, +nces/A0901570,2009,Count_Student_SchoolGrade3,3.0,, +nces/A0902446,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade3,5.0,, +nces/A0902450,2009,Count_Student_SchoolGrade3,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade3,1.0,, +nces/A9101662,2009,Count_Student_SchoolGrade3,29.0,, +nces/A9104267,2009,Count_Student_SchoolGrade3,1.0,, +nces/A9104268,2009,Count_Student_SchoolGrade3,6.0,, +nces/A9104404,2009,Count_Student_SchoolGrade3,32.0,, +nces/A9104507,2009,Count_Student_SchoolGrade3,1.0,, +nces/A9106874,2009,Count_Student_SchoolGrade3,6.0,, +nces/A9302732,2009,Count_Student_SchoolGrade3,24.0,, +nces/A9501078,2009,Count_Student_SchoolGrade3,5.0,, +nces/A9501433,2009,Count_Student_SchoolGrade3,1.0,, +nces/A9503341,2009,Count_Student_SchoolGrade3,18.0,, +nces/A9503777,2009,Count_Student_SchoolGrade3,2.0,, +nces/A9700074,2009,Count_Student_SchoolGrade3,13.0,, +nces/A9703331,2009,Count_Student_SchoolGrade3,12.0,, +nces/A9705218,2009,Count_Student_SchoolGrade3,3.0,, +nces/A9708052,2009,Count_Student_SchoolGrade3,5.0,, +nces/A9904455,2009,Count_Student_SchoolGrade3,2.0,, +nces/A9904469,2009,Count_Student_SchoolGrade3,3.0,, +nces/AA000007,2009,Count_Student_SchoolGrade3,2.0,, +nces/AA000008,2009,Count_Student_SchoolGrade3,14.0,, +nces/AA000010,2009,Count_Student_SchoolGrade3,7.0,, +nces/AA001609,2009,Count_Student_SchoolGrade3,21.0,, +nces/BB061076,2009,Count_Student_SchoolGrade3,8.0,, +nces/BB100994,2009,Count_Student_SchoolGrade3,7.0,, +nces/BB911554,2009,Count_Student_SchoolGrade3,2.0,, +nces/BB943634,2009,Count_Student_SchoolGrade3,10.0,, +nces/BB980189,2009,Count_Student_SchoolGrade3,8.0,, +nces/K9301240,2009,Count_Student_SchoolGrade3,12.0,, +nces/K9500531,2009,Count_Student_SchoolGrade3,11.0,, +nces/K9500748,2009,Count_Student_SchoolGrade3,3.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade3,42.0,, +nces/00001026,2009,Count_Student_SchoolGrade4,7.0,, +nces/00081272,2009,Count_Student_SchoolGrade4,30.0,, +nces/00259858,2009,Count_Student_SchoolGrade4,2.0,, +nces/00425908,2009,Count_Student_SchoolGrade4,9.0,, +nces/00517072,2009,Count_Student_SchoolGrade4,24.0,, +nces/00752221,2009,Count_Student_SchoolGrade4,1.0,, +nces/00928796,2009,Count_Student_SchoolGrade4,11.0,, +nces/01195835,2009,Count_Student_SchoolGrade4,32.0,, +nces/01328801,2009,Count_Student_SchoolGrade4,21.0,, +nces/01328969,2009,Count_Student_SchoolGrade4,14.0,, +nces/01906396,2009,Count_Student_SchoolGrade4,28.0,, +nces/01933863,2009,Count_Student_SchoolGrade4,27.0,, +nces/02007955,2009,Count_Student_SchoolGrade4,3.0,, +nces/02039659,2009,Count_Student_SchoolGrade4,8.0,, +nces/02058401,2009,Count_Student_SchoolGrade4,7.0,, +nces/02161237,2009,Count_Student_SchoolGrade4,16.0,, +nces/A0105209,2009,Count_Student_SchoolGrade4,2.0,, +nces/A0300737,2009,Count_Student_SchoolGrade4,2.0,, +nces/A0300748,2009,Count_Student_SchoolGrade4,14.0,, +nces/A0303197,2009,Count_Student_SchoolGrade4,5.0,, +nces/A0307071,2009,Count_Student_SchoolGrade4,2.0,, +nces/A0307448,2009,Count_Student_SchoolGrade4,2.0,, +nces/A0502391,2009,Count_Student_SchoolGrade4,22.0,, +nces/A0503198,2009,Count_Student_SchoolGrade4,9.0,, +nces/A0700419,2009,Count_Student_SchoolGrade4,4.0,, +nces/A0700686,2009,Count_Student_SchoolGrade4,4.0,, +nces/A0701268,2009,Count_Student_SchoolGrade4,14.0,, +nces/A0701576,2009,Count_Student_SchoolGrade4,6.0,, +nces/A0740052,2009,Count_Student_SchoolGrade4,3.0,, +nces/A0900179,2009,Count_Student_SchoolGrade4,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade4,4.0,, +nces/A0900759,2009,Count_Student_SchoolGrade4,10.0,, +nces/A0902047,2009,Count_Student_SchoolGrade4,1.0,, +nces/A0902450,2009,Count_Student_SchoolGrade4,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade4,4.0,, +nces/A0903479,2009,Count_Student_SchoolGrade4,2.0,, +nces/A9101662,2009,Count_Student_SchoolGrade4,26.0,, +nces/A9104268,2009,Count_Student_SchoolGrade4,11.0,, +nces/A9104404,2009,Count_Student_SchoolGrade4,38.0,, +nces/A9104507,2009,Count_Student_SchoolGrade4,5.0,, +nces/A9106874,2009,Count_Student_SchoolGrade4,1.0,, +nces/A9302732,2009,Count_Student_SchoolGrade4,22.0,, +nces/A9501078,2009,Count_Student_SchoolGrade4,5.0,, +nces/A9501433,2009,Count_Student_SchoolGrade4,1.0,, +nces/A9503341,2009,Count_Student_SchoolGrade4,20.0,, +nces/A9503777,2009,Count_Student_SchoolGrade4,3.0,, +nces/A9700074,2009,Count_Student_SchoolGrade4,13.0,, +nces/A9703331,2009,Count_Student_SchoolGrade4,19.0,, +nces/A9708052,2009,Count_Student_SchoolGrade4,6.0,, +nces/A9904455,2009,Count_Student_SchoolGrade4,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade4,2.0,, +nces/AA000007,2009,Count_Student_SchoolGrade4,3.0,, +nces/AA000008,2009,Count_Student_SchoolGrade4,9.0,, +nces/AA000010,2009,Count_Student_SchoolGrade4,7.0,, +nces/AA001609,2009,Count_Student_SchoolGrade4,15.0,, +nces/BB061076,2009,Count_Student_SchoolGrade4,7.0,, +nces/BB080157,2009,Count_Student_SchoolGrade4,1.0,, +nces/BB100994,2009,Count_Student_SchoolGrade4,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade4,3.0,, +nces/BB943634,2009,Count_Student_SchoolGrade4,16.0,, +nces/BB980189,2009,Count_Student_SchoolGrade4,5.0,, +nces/K9301240,2009,Count_Student_SchoolGrade4,9.0,, +nces/K9500531,2009,Count_Student_SchoolGrade4,6.0,, +nces/K9500748,2009,Count_Student_SchoolGrade4,8.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade4,37.0,, +nces/00001026,2009,Count_Student_SchoolGrade5,9.0,, +nces/00081272,2009,Count_Student_SchoolGrade5,19.0,, +nces/00259858,2009,Count_Student_SchoolGrade5,1.0,, +nces/00425908,2009,Count_Student_SchoolGrade5,9.0,, +nces/00517072,2009,Count_Student_SchoolGrade5,16.0,, +nces/00752221,2009,Count_Student_SchoolGrade5,6.0,, +nces/00928796,2009,Count_Student_SchoolGrade5,14.0,, +nces/01195835,2009,Count_Student_SchoolGrade5,26.0,, +nces/01283096,2009,Count_Student_SchoolGrade5,1.0,, +nces/01328801,2009,Count_Student_SchoolGrade5,15.0,, +nces/01328969,2009,Count_Student_SchoolGrade5,6.0,, +nces/01906396,2009,Count_Student_SchoolGrade5,20.0,, +nces/01933863,2009,Count_Student_SchoolGrade5,17.0,, +nces/02007955,2009,Count_Student_SchoolGrade5,2.0,, +nces/02039659,2009,Count_Student_SchoolGrade5,2.0,, +nces/02058401,2009,Count_Student_SchoolGrade5,8.0,, +nces/02067846,2009,Count_Student_SchoolGrade5,1.0,, +nces/02068045,2009,Count_Student_SchoolGrade5,3.0,, +nces/02161237,2009,Count_Student_SchoolGrade5,16.0,, +nces/A0105209,2009,Count_Student_SchoolGrade5,2.0,, +nces/A0108720,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0300737,2009,Count_Student_SchoolGrade5,5.0,, +nces/A0300748,2009,Count_Student_SchoolGrade5,8.0,, +nces/A0307071,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0307448,2009,Count_Student_SchoolGrade5,2.0,, +nces/A0502391,2009,Count_Student_SchoolGrade5,24.0,, +nces/A0503198,2009,Count_Student_SchoolGrade5,12.0,, +nces/A0503272,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0700419,2009,Count_Student_SchoolGrade5,4.0,, +nces/A0700686,2009,Count_Student_SchoolGrade5,3.0,, +nces/A0701268,2009,Count_Student_SchoolGrade5,17.0,, +nces/A0701576,2009,Count_Student_SchoolGrade5,7.0,, +nces/A0740052,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0900179,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade5,5.0,, +nces/A0900759,2009,Count_Student_SchoolGrade5,10.0,, +nces/A0901570,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0902450,2009,Count_Student_SchoolGrade5,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade5,2.0,, +nces/A0903479,2009,Count_Student_SchoolGrade5,1.0,, +nces/A9101662,2009,Count_Student_SchoolGrade5,33.0,, +nces/A9104268,2009,Count_Student_SchoolGrade5,2.0,, +nces/A9104404,2009,Count_Student_SchoolGrade5,20.0,, +nces/A9104507,2009,Count_Student_SchoolGrade5,2.0,, +nces/A9106874,2009,Count_Student_SchoolGrade5,1.0,, +nces/A9302732,2009,Count_Student_SchoolGrade5,25.0,, +nces/A9501078,2009,Count_Student_SchoolGrade5,6.0,, +nces/A9503341,2009,Count_Student_SchoolGrade5,20.0,, +nces/A9503777,2009,Count_Student_SchoolGrade5,1.0,, +nces/A9700074,2009,Count_Student_SchoolGrade5,6.0,, +nces/A9703331,2009,Count_Student_SchoolGrade5,17.0,, +nces/A9708052,2009,Count_Student_SchoolGrade5,8.0,, +nces/A9904469,2009,Count_Student_SchoolGrade5,1.0,, +nces/AA000007,2009,Count_Student_SchoolGrade5,2.0,, +nces/AA000008,2009,Count_Student_SchoolGrade5,8.0,, +nces/AA000010,2009,Count_Student_SchoolGrade5,4.0,, +nces/AA001609,2009,Count_Student_SchoolGrade5,17.0,, +nces/BB061076,2009,Count_Student_SchoolGrade5,9.0,, +nces/BB080157,2009,Count_Student_SchoolGrade5,3.0,, +nces/BB100994,2009,Count_Student_SchoolGrade5,4.0,, +nces/BB911554,2009,Count_Student_SchoolGrade5,5.0,, +nces/BB943634,2009,Count_Student_SchoolGrade5,11.0,, +nces/BB980189,2009,Count_Student_SchoolGrade5,12.0,, +nces/K9301240,2009,Count_Student_SchoolGrade5,3.0,, +nces/K9500531,2009,Count_Student_SchoolGrade5,5.0,, +nces/K9500748,2009,Count_Student_SchoolGrade5,6.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade5,50.0,, +nces/00001026,2009,Count_Student_SchoolGrade6,13.0,, +nces/00081272,2009,Count_Student_SchoolGrade6,26.0,, +nces/00259858,2009,Count_Student_SchoolGrade6,1.0,, +nces/00425908,2009,Count_Student_SchoolGrade6,11.0,, +nces/00517072,2009,Count_Student_SchoolGrade6,30.0,, +nces/00752221,2009,Count_Student_SchoolGrade6,7.0,, +nces/00928796,2009,Count_Student_SchoolGrade6,12.0,, +nces/01195835,2009,Count_Student_SchoolGrade6,43.0,, +nces/01283096,2009,Count_Student_SchoolGrade6,5.0,, +nces/01328801,2009,Count_Student_SchoolGrade6,27.0,, +nces/01328969,2009,Count_Student_SchoolGrade6,14.0,, +nces/01906396,2009,Count_Student_SchoolGrade6,28.0,, +nces/01933863,2009,Count_Student_SchoolGrade6,21.0,, +nces/02007955,2009,Count_Student_SchoolGrade6,4.0,, +nces/02039659,2009,Count_Student_SchoolGrade6,5.0,, +nces/02058401,2009,Count_Student_SchoolGrade6,6.0,, +nces/02067846,2009,Count_Student_SchoolGrade6,2.0,, +nces/02068045,2009,Count_Student_SchoolGrade6,1.0,, +nces/02161237,2009,Count_Student_SchoolGrade6,20.0,, +nces/A0105209,2009,Count_Student_SchoolGrade6,2.0,, +nces/A0108720,2009,Count_Student_SchoolGrade6,3.0,, +nces/A0300737,2009,Count_Student_SchoolGrade6,5.0,, +nces/A0300748,2009,Count_Student_SchoolGrade6,8.0,, +nces/A0304042,2009,Count_Student_SchoolGrade6,2.0,, +nces/A0307448,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0503198,2009,Count_Student_SchoolGrade6,10.0,, +nces/A0503272,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0700419,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0700686,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0701268,2009,Count_Student_SchoolGrade6,12.0,, +nces/A0740052,2009,Count_Student_SchoolGrade6,4.0,, +nces/A0900001,2009,Count_Student_SchoolGrade6,25.0,, +nces/A0900758,2009,Count_Student_SchoolGrade6,3.0,, +nces/A0901570,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0902446,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade6,5.0,, +nces/A0902809,2009,Count_Student_SchoolGrade6,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade6,5.0,, +nces/A0903479,2009,Count_Student_SchoolGrade6,2.0,, +nces/A9101662,2009,Count_Student_SchoolGrade6,31.0,, +nces/A9104267,2009,Count_Student_SchoolGrade6,2.0,, +nces/A9104268,2009,Count_Student_SchoolGrade6,5.0,, +nces/A9104404,2009,Count_Student_SchoolGrade6,25.0,, +nces/A9104507,2009,Count_Student_SchoolGrade6,3.0,, +nces/A9106874,2009,Count_Student_SchoolGrade6,2.0,, +nces/A9302732,2009,Count_Student_SchoolGrade6,28.0,, +nces/A9501078,2009,Count_Student_SchoolGrade6,5.0,, +nces/A9503341,2009,Count_Student_SchoolGrade6,5.0,, +nces/A9503430,2009,Count_Student_SchoolGrade6,4.0,, +nces/A9503777,2009,Count_Student_SchoolGrade6,1.0,, +nces/A9700074,2009,Count_Student_SchoolGrade6,12.0,, +nces/A9703331,2009,Count_Student_SchoolGrade6,19.0,, +nces/A9708052,2009,Count_Student_SchoolGrade6,3.0,, +nces/A9903306,2009,Count_Student_SchoolGrade6,1.0,, +nces/A9904455,2009,Count_Student_SchoolGrade6,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade6,2.0,, +nces/AA000007,2009,Count_Student_SchoolGrade6,3.0,, +nces/AA000008,2009,Count_Student_SchoolGrade6,6.0,, +nces/AA001609,2009,Count_Student_SchoolGrade6,12.0,, +nces/BB061076,2009,Count_Student_SchoolGrade6,9.0,, +nces/BB080157,2009,Count_Student_SchoolGrade6,2.0,, +nces/BB100994,2009,Count_Student_SchoolGrade6,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade6,4.0,, +nces/BB980189,2009,Count_Student_SchoolGrade6,11.0,, +nces/K9301240,2009,Count_Student_SchoolGrade6,5.0,, +nces/K9500531,2009,Count_Student_SchoolGrade6,10.0,, +nces/K9500748,2009,Count_Student_SchoolGrade6,6.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade6,57.0,, +nces/00001026,2009,Count_Student_SchoolGrade7,10.0,, +nces/00081272,2009,Count_Student_SchoolGrade7,28.0,, +nces/00259858,2009,Count_Student_SchoolGrade7,2.0,, +nces/00517072,2009,Count_Student_SchoolGrade7,38.0,, +nces/00752221,2009,Count_Student_SchoolGrade7,10.0,, +nces/00928796,2009,Count_Student_SchoolGrade7,12.0,, +nces/01195835,2009,Count_Student_SchoolGrade7,47.0,, +nces/01283096,2009,Count_Student_SchoolGrade7,6.0,, +nces/01328801,2009,Count_Student_SchoolGrade7,25.0,, +nces/01328969,2009,Count_Student_SchoolGrade7,4.0,, +nces/01906396,2009,Count_Student_SchoolGrade7,15.0,, +nces/01933863,2009,Count_Student_SchoolGrade7,18.0,, +nces/02007955,2009,Count_Student_SchoolGrade7,4.0,, +nces/02039659,2009,Count_Student_SchoolGrade7,1.0,, +nces/02068045,2009,Count_Student_SchoolGrade7,3.0,, +nces/02161237,2009,Count_Student_SchoolGrade7,15.0,, +nces/A0100441,2009,Count_Student_SchoolGrade7,2.0,, +nces/A0108720,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0300737,2009,Count_Student_SchoolGrade7,3.0,, +nces/A0300748,2009,Count_Student_SchoolGrade7,8.0,, +nces/A0303162,2009,Count_Student_SchoolGrade7,2.0,, +nces/A0304042,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0503198,2009,Count_Student_SchoolGrade7,13.0,, +nces/A0503272,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0700419,2009,Count_Student_SchoolGrade7,2.0,, +nces/A0700686,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0701268,2009,Count_Student_SchoolGrade7,10.0,, +nces/A0740052,2009,Count_Student_SchoolGrade7,2.0,, +nces/A0900001,2009,Count_Student_SchoolGrade7,26.0,, +nces/A0900179,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade7,5.0,, +nces/A0901570,2009,Count_Student_SchoolGrade7,3.0,, +nces/A0902446,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade7,3.0,, +nces/A0902450,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0902809,2009,Count_Student_SchoolGrade7,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade7,6.0,, +nces/A9101662,2009,Count_Student_SchoolGrade7,36.0,, +nces/A9104267,2009,Count_Student_SchoolGrade7,3.0,, +nces/A9104268,2009,Count_Student_SchoolGrade7,1.0,, +nces/A9104404,2009,Count_Student_SchoolGrade7,21.0,, +nces/A9104507,2009,Count_Student_SchoolGrade7,6.0,, +nces/A9106874,2009,Count_Student_SchoolGrade7,2.0,, +nces/A9302732,2009,Count_Student_SchoolGrade7,27.0,, +nces/A9503341,2009,Count_Student_SchoolGrade7,10.0,, +nces/A9503430,2009,Count_Student_SchoolGrade7,6.0,, +nces/A9503777,2009,Count_Student_SchoolGrade7,1.0,, +nces/A9700074,2009,Count_Student_SchoolGrade7,6.0,, +nces/A9702795,2009,Count_Student_SchoolGrade7,1.0,, +nces/A9703331,2009,Count_Student_SchoolGrade7,21.0,, +nces/A9903306,2009,Count_Student_SchoolGrade7,2.0,, +nces/A9904469,2009,Count_Student_SchoolGrade7,2.0,, +nces/AA000007,2009,Count_Student_SchoolGrade7,2.0,, +nces/AA000008,2009,Count_Student_SchoolGrade7,5.0,, +nces/AA001609,2009,Count_Student_SchoolGrade7,10.0,, +nces/BB061076,2009,Count_Student_SchoolGrade7,8.0,, +nces/BB080157,2009,Count_Student_SchoolGrade7,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade7,2.0,, +nces/BB100994,2009,Count_Student_SchoolGrade7,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade7,7.0,, +nces/BB980189,2009,Count_Student_SchoolGrade7,18.0,, +nces/K9500531,2009,Count_Student_SchoolGrade7,7.0,, +nces/K9500748,2009,Count_Student_SchoolGrade7,5.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade7,53.0,, +nces/00001026,2009,Count_Student_SchoolGrade8,16.0,, +nces/00081272,2009,Count_Student_SchoolGrade8,38.0,, +nces/00259858,2009,Count_Student_SchoolGrade8,2.0,, +nces/00517072,2009,Count_Student_SchoolGrade8,29.0,, +nces/00752221,2009,Count_Student_SchoolGrade8,10.0,, +nces/00928796,2009,Count_Student_SchoolGrade8,11.0,, +nces/01195835,2009,Count_Student_SchoolGrade8,57.0,, +nces/01283096,2009,Count_Student_SchoolGrade8,6.0,, +nces/01328801,2009,Count_Student_SchoolGrade8,24.0,, +nces/01328969,2009,Count_Student_SchoolGrade8,6.0,, +nces/01906396,2009,Count_Student_SchoolGrade8,22.0,, +nces/01933863,2009,Count_Student_SchoolGrade8,20.0,, +nces/02007955,2009,Count_Student_SchoolGrade8,2.0,, +nces/02068045,2009,Count_Student_SchoolGrade8,2.0,, +nces/02161237,2009,Count_Student_SchoolGrade8,14.0,, +nces/A0100441,2009,Count_Student_SchoolGrade8,3.0,, +nces/A0108773,2009,Count_Student_SchoolGrade8,4.0,, +nces/A0300737,2009,Count_Student_SchoolGrade8,4.0,, +nces/A0303162,2009,Count_Student_SchoolGrade8,4.0,, +nces/A0304042,2009,Count_Student_SchoolGrade8,6.0,, +nces/A0503198,2009,Count_Student_SchoolGrade8,10.0,, +nces/A0503272,2009,Count_Student_SchoolGrade8,3.0,, +nces/A0700686,2009,Count_Student_SchoolGrade8,3.0,, +nces/A0701268,2009,Count_Student_SchoolGrade8,7.0,, +nces/A0740052,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0900001,2009,Count_Student_SchoolGrade8,35.0,, +nces/A0900179,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade8,6.0,, +nces/A0901570,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0902047,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0902447,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade8,8.0,, +nces/A0902450,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0902809,2009,Count_Student_SchoolGrade8,1.0,, +nces/A0903406,2009,Count_Student_SchoolGrade8,8.0,, +nces/A9101662,2009,Count_Student_SchoolGrade8,15.0,, +nces/A9104267,2009,Count_Student_SchoolGrade8,4.0,, +nces/A9104268,2009,Count_Student_SchoolGrade8,1.0,, +nces/A9104404,2009,Count_Student_SchoolGrade8,17.0,, +nces/A9104507,2009,Count_Student_SchoolGrade8,6.0,, +nces/A9106874,2009,Count_Student_SchoolGrade8,1.0,, +nces/A9302732,2009,Count_Student_SchoolGrade8,27.0,, +nces/A9503341,2009,Count_Student_SchoolGrade8,12.0,, +nces/A9503430,2009,Count_Student_SchoolGrade8,12.0,, +nces/A9503777,2009,Count_Student_SchoolGrade8,1.0,, +nces/A9700074,2009,Count_Student_SchoolGrade8,12.0,, +nces/A9702795,2009,Count_Student_SchoolGrade8,1.0,, +nces/A9703331,2009,Count_Student_SchoolGrade8,23.0,, +nces/A9904455,2009,Count_Student_SchoolGrade8,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade8,1.0,, +nces/AA000007,2009,Count_Student_SchoolGrade8,4.0,, +nces/AA000008,2009,Count_Student_SchoolGrade8,4.0,, +nces/AA001609,2009,Count_Student_SchoolGrade8,20.0,, +nces/BB061076,2009,Count_Student_SchoolGrade8,14.0,, +nces/BB080157,2009,Count_Student_SchoolGrade8,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade8,3.0,, +nces/BB100994,2009,Count_Student_SchoolGrade8,4.0,, +nces/BB911554,2009,Count_Student_SchoolGrade8,10.0,, +nces/BB980189,2009,Count_Student_SchoolGrade8,15.0,, +nces/K9500531,2009,Count_Student_SchoolGrade8,2.0,, +nces/K9500748,2009,Count_Student_SchoolGrade8,2.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade8,59.0,, +nces/00001026,2009,Count_Student_SchoolGrade9,7.0,, +nces/00259858,2009,Count_Student_SchoolGrade9,1.0,, +nces/00517072,2009,Count_Student_SchoolGrade9,45.0,, +nces/00699979,2009,Count_Student_SchoolGrade9,200.0,, +nces/01195835,2009,Count_Student_SchoolGrade9,58.0,, +nces/01283096,2009,Count_Student_SchoolGrade9,7.0,, +nces/01328801,2009,Count_Student_SchoolGrade9,21.0,, +nces/01907265,2009,Count_Student_SchoolGrade9,44.0,, +nces/01933863,2009,Count_Student_SchoolGrade9,19.0,, +nces/02007955,2009,Count_Student_SchoolGrade9,2.0,, +nces/02067846,2009,Count_Student_SchoolGrade9,1.0,, +nces/02068045,2009,Count_Student_SchoolGrade9,4.0,, +nces/A0100441,2009,Count_Student_SchoolGrade9,2.0,, +nces/A0104077,2009,Count_Student_SchoolGrade9,5.0,, +nces/A0108773,2009,Count_Student_SchoolGrade9,8.0,, +nces/A0300737,2009,Count_Student_SchoolGrade9,5.0,, +nces/A0300748,2009,Count_Student_SchoolGrade9,8.0,, +nces/A0303162,2009,Count_Student_SchoolGrade9,12.0,, +nces/A0304042,2009,Count_Student_SchoolGrade9,10.0,, +nces/A0503198,2009,Count_Student_SchoolGrade9,13.0,, +nces/A0503272,2009,Count_Student_SchoolGrade9,1.0,, +nces/A0700686,2009,Count_Student_SchoolGrade9,3.0,, +nces/A0700688,2009,Count_Student_SchoolGrade9,16.0,, +nces/A0900001,2009,Count_Student_SchoolGrade9,15.0,, +nces/A0900758,2009,Count_Student_SchoolGrade9,5.0,, +nces/A0901570,2009,Count_Student_SchoolGrade9,6.0,, +nces/A0902447,2009,Count_Student_SchoolGrade9,1.0,, +nces/A0902450,2009,Count_Student_SchoolGrade9,4.0,, +nces/A0902806,2009,Count_Student_SchoolGrade9,24.0,, +nces/A0902809,2009,Count_Student_SchoolGrade9,8.0,, +nces/A0903406,2009,Count_Student_SchoolGrade9,20.0,, +nces/A9104404,2009,Count_Student_SchoolGrade9,9.0,, +nces/A9104507,2009,Count_Student_SchoolGrade9,5.0,, +nces/A9104665,2009,Count_Student_SchoolGrade9,75.0,, +nces/A9106874,2009,Count_Student_SchoolGrade9,3.0,, +nces/A9302732,2009,Count_Student_SchoolGrade9,33.0,, +nces/A9503430,2009,Count_Student_SchoolGrade9,30.0,, +nces/A9503777,2009,Count_Student_SchoolGrade9,5.0,, +nces/A9700074,2009,Count_Student_SchoolGrade9,6.0,, +nces/A9702795,2009,Count_Student_SchoolGrade9,21.0,, +nces/A9703331,2009,Count_Student_SchoolGrade9,24.0,, +nces/A9903306,2009,Count_Student_SchoolGrade9,1.0,, +nces/A9904469,2009,Count_Student_SchoolGrade9,4.0,, +nces/AA000007,2009,Count_Student_SchoolGrade9,3.0,, +nces/BB080157,2009,Count_Student_SchoolGrade9,1.0,, +nces/BB100068,2009,Count_Student_SchoolGrade9,1.0,, +nces/BB100994,2009,Count_Student_SchoolGrade9,5.0,, +nces/BB911554,2009,Count_Student_SchoolGrade9,16.0,, +nces/BB980189,2009,Count_Student_SchoolGrade9,15.0,, +nces/K9500531,2009,Count_Student_SchoolGrade9,2.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade9,53.0,, +nces/00001026,2009,Count_Student_SchoolGrade1To8,87.0,, +nces/00081272,2009,Count_Student_SchoolGrade1To8,204.0,, +nces/00094237,2009,Count_Student_SchoolGrade1To8,6.0,, +nces/00259858,2009,Count_Student_SchoolGrade1To8,8.0,, +nces/00425908,2009,Count_Student_SchoolGrade1To8,75.0,, +nces/00517072,2009,Count_Student_SchoolGrade1To8,189.0,, +nces/00752221,2009,Count_Student_SchoolGrade1To8,41.0,, +nces/00928796,2009,Count_Student_SchoolGrade1To8,117.0,, +nces/01195835,2009,Count_Student_SchoolGrade1To8,300.0,, +nces/01283096,2009,Count_Student_SchoolGrade1To8,19.0,, +nces/01328801,2009,Count_Student_SchoolGrade1To8,166.0,, +nces/01328969,2009,Count_Student_SchoolGrade1To8,78.0,, +nces/01906396,2009,Count_Student_SchoolGrade1To8,179.0,, +nces/01933863,2009,Count_Student_SchoolGrade1To8,154.0,, +nces/02007955,2009,Count_Student_SchoolGrade1To8,21.0,, +nces/02039659,2009,Count_Student_SchoolGrade1To8,28.0,, +nces/02058401,2009,Count_Student_SchoolGrade1To8,46.0,, +nces/02067846,2009,Count_Student_SchoolGrade1To8,4.0,, +nces/02068045,2009,Count_Student_SchoolGrade1To8,15.0,, +nces/02161237,2009,Count_Student_SchoolGrade1To8,125.0,, +nces/A0100441,2009,Count_Student_SchoolGrade1To8,9.0,, +nces/A0101705,2009,Count_Student_SchoolGrade1To8,11.0,, +nces/A0102854,2009,Count_Student_SchoolGrade1To8,14.0,, +nces/A0102857,2009,Count_Student_SchoolGrade1To8,8.0,, +nces/A0105209,2009,Count_Student_SchoolGrade1To8,15.0,, +nces/A0107740,2009,Count_Student_SchoolGrade1To8,1.0,, +nces/A0108720,2009,Count_Student_SchoolGrade1To8,12.0,, +nces/A0108773,2009,Count_Student_SchoolGrade1To8,4.0,, +nces/A0109638,2009,Count_Student_SchoolGrade1To8,6.0,, +nces/A0300737,2009,Count_Student_SchoolGrade1To8,21.0,, +nces/A0300748,2009,Count_Student_SchoolGrade1To8,93.0,, +nces/A0303162,2009,Count_Student_SchoolGrade1To8,6.0,, +nces/A0303197,2009,Count_Student_SchoolGrade1To8,23.0,, +nces/A0304042,2009,Count_Student_SchoolGrade1To8,9.0,, +nces/A0307071,2009,Count_Student_SchoolGrade1To8,28.0,, +nces/A0307448,2009,Count_Student_SchoolGrade1To8,19.0,, +nces/A0307925,2009,Count_Student_SchoolGrade1To8,15.0,, +nces/A0502391,2009,Count_Student_SchoolGrade1To8,98.0,, +nces/A0503198,2009,Count_Student_SchoolGrade1To8,84.0,, +nces/A0503272,2009,Count_Student_SchoolGrade1To8,9.0,, +nces/A0700419,2009,Count_Student_SchoolGrade1To8,17.0,, +nces/A0700686,2009,Count_Student_SchoolGrade1To8,32.0,, +nces/A0701268,2009,Count_Student_SchoolGrade1To8,99.0,, +nces/A0701576,2009,Count_Student_SchoolGrade1To8,56.0,, +nces/A0740052,2009,Count_Student_SchoolGrade1To8,21.0,, +nces/A0900001,2009,Count_Student_SchoolGrade1To8,86.0,, +nces/A0900179,2009,Count_Student_SchoolGrade1To8,4.0,, +nces/A0900758,2009,Count_Student_SchoolGrade1To8,44.0,, +nces/A0900759,2009,Count_Student_SchoolGrade1To8,50.0,, +nces/A0901570,2009,Count_Student_SchoolGrade1To8,9.0,, +nces/A0902047,2009,Count_Student_SchoolGrade1To8,4.0,, +nces/A0902446,2009,Count_Student_SchoolGrade1To8,7.0,, +nces/A0902447,2009,Count_Student_SchoolGrade1To8,1.0,, +nces/A0902448,2009,Count_Student_SchoolGrade1To8,37.0,, +nces/A0902450,2009,Count_Student_SchoolGrade1To8,7.0,, +nces/A0902809,2009,Count_Student_SchoolGrade1To8,3.0,, +nces/A0903406,2009,Count_Student_SchoolGrade1To8,29.0,, +nces/A0903479,2009,Count_Student_SchoolGrade1To8,8.0,, +nces/A0970996,2009,Count_Student_SchoolGrade1To8,6.0,, +nces/A9100483,2009,Count_Student_SchoolGrade1To8,5.0,, +nces/A9101662,2009,Count_Student_SchoolGrade1To8,231.0,, +nces/A9104267,2009,Count_Student_SchoolGrade1To8,14.0,, +nces/A9104268,2009,Count_Student_SchoolGrade1To8,37.0,, +nces/A9104404,2009,Count_Student_SchoolGrade1To8,223.0,, +nces/A9104507,2009,Count_Student_SchoolGrade1To8,27.0,, +nces/A9106874,2009,Count_Student_SchoolGrade1To8,15.0,, +nces/A9302116,2009,Count_Student_SchoolGrade1To8,2.0,, +nces/A9302732,2009,Count_Student_SchoolGrade1To8,202.0,, +nces/A9501078,2009,Count_Student_SchoolGrade1To8,41.0,, +nces/A9501433,2009,Count_Student_SchoolGrade1To8,7.0,, +nces/A9503341,2009,Count_Student_SchoolGrade1To8,125.0,, +nces/A9503430,2009,Count_Student_SchoolGrade1To8,22.0,, +nces/A9503777,2009,Count_Student_SchoolGrade1To8,9.0,, +nces/A9700074,2009,Count_Student_SchoolGrade1To8,98.0,, +nces/A9702795,2009,Count_Student_SchoolGrade1To8,2.0,, +nces/A9703331,2009,Count_Student_SchoolGrade1To8,150.0,, +nces/A9705218,2009,Count_Student_SchoolGrade1To8,11.0,, +nces/A9705232,2009,Count_Student_SchoolGrade1To8,8.0,, +nces/A9706318,2009,Count_Student_SchoolGrade1To8,7.0,, +nces/A9708052,2009,Count_Student_SchoolGrade1To8,70.0,, +nces/A9903306,2009,Count_Student_SchoolGrade1To8,3.0,, +nces/A9904455,2009,Count_Student_SchoolGrade1To8,6.0,, +nces/A9904469,2009,Count_Student_SchoolGrade1To8,22.0,, +nces/AA000007,2009,Count_Student_SchoolGrade1To8,24.0,, +nces/AA000008,2009,Count_Student_SchoolGrade1To8,69.0,, +nces/AA000010,2009,Count_Student_SchoolGrade1To8,33.0,, +nces/AA001609,2009,Count_Student_SchoolGrade1To8,141.0,, +nces/BB061076,2009,Count_Student_SchoolGrade1To8,74.0,, +nces/BB080157,2009,Count_Student_SchoolGrade1To8,8.0,, +nces/BB080442,2009,Count_Student_SchoolGrade1To8,20.0,, +nces/BB100068,2009,Count_Student_SchoolGrade1To8,5.0,, +nces/BB100994,2009,Count_Student_SchoolGrade1To8,47.0,, +nces/BB911554,2009,Count_Student_SchoolGrade1To8,31.0,, +nces/BB942865,2009,Count_Student_SchoolGrade1To8,3.0,, +nces/BB943634,2009,Count_Student_SchoolGrade1To8,72.0,, +nces/BB964072,2009,Count_Student_SchoolGrade1To8,23.0,, +nces/BB980189,2009,Count_Student_SchoolGrade1To8,87.0,, +nces/K9301240,2009,Count_Student_SchoolGrade1To8,42.0,, +nces/K9500531,2009,Count_Student_SchoolGrade1To8,65.0,, +nces/K9500748,2009,Count_Student_SchoolGrade1To8,41.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade1To8,382.0,, +nces/00001026,2009,Count_Student_SchoolGrade9To12,55.0,, +nces/00259858,2009,Count_Student_SchoolGrade9To12,4.0,, +nces/00517072,2009,Count_Student_SchoolGrade9To12,161.0,, +nces/00699979,2009,Count_Student_SchoolGrade9To12,764.0,, +nces/01195835,2009,Count_Student_SchoolGrade9To12,264.0,, +nces/01283096,2009,Count_Student_SchoolGrade9To12,15.0,, +nces/01328801,2009,Count_Student_SchoolGrade9To12,86.0,, +nces/01907265,2009,Count_Student_SchoolGrade9To12,234.0,, +nces/01933863,2009,Count_Student_SchoolGrade9To12,84.0,, +nces/02007955,2009,Count_Student_SchoolGrade9To12,4.0,, +nces/02067846,2009,Count_Student_SchoolGrade9To12,2.0,, +nces/02068045,2009,Count_Student_SchoolGrade9To12,15.0,, +nces/A0100441,2009,Count_Student_SchoolGrade9To12,8.0,, +nces/A0104077,2009,Count_Student_SchoolGrade9To12,57.0,, +nces/A0108720,2009,Count_Student_SchoolGrade9To12,2.0,, +nces/A0108773,2009,Count_Student_SchoolGrade9To12,40.0,, +nces/A0300737,2009,Count_Student_SchoolGrade9To12,20.0,, +nces/A0300748,2009,Count_Student_SchoolGrade9To12,14.0,, +nces/A0303162,2009,Count_Student_SchoolGrade9To12,48.0,, +nces/A0304042,2009,Count_Student_SchoolGrade9To12,40.0,, +nces/A0503198,2009,Count_Student_SchoolGrade9To12,39.0,, +nces/A0503272,2009,Count_Student_SchoolGrade9To12,10.0,, +nces/A0700686,2009,Count_Student_SchoolGrade9To12,6.0,, +nces/A0700688,2009,Count_Student_SchoolGrade9To12,49.0,, +nces/A0900001,2009,Count_Student_SchoolGrade9To12,70.0,, +nces/A0900179,2009,Count_Student_SchoolGrade9To12,1.0,, +nces/A0900758,2009,Count_Student_SchoolGrade9To12,21.0,, +nces/A0901570,2009,Count_Student_SchoolGrade9To12,9.0,, +nces/A0902447,2009,Count_Student_SchoolGrade9To12,6.0,, +nces/A0902450,2009,Count_Student_SchoolGrade9To12,11.0,, +nces/A0902806,2009,Count_Student_SchoolGrade9To12,58.0,, +nces/A0902809,2009,Count_Student_SchoolGrade9To12,47.0,, +nces/A0903406,2009,Count_Student_SchoolGrade9To12,73.0,, +nces/A9104404,2009,Count_Student_SchoolGrade9To12,30.0,, +nces/A9104507,2009,Count_Student_SchoolGrade9To12,11.0,, +nces/A9104665,2009,Count_Student_SchoolGrade9To12,294.0,, +nces/A9106874,2009,Count_Student_SchoolGrade9To12,12.0,, +nces/A9302732,2009,Count_Student_SchoolGrade9To12,110.0,, +nces/A9503430,2009,Count_Student_SchoolGrade9To12,93.0,, +nces/A9503777,2009,Count_Student_SchoolGrade9To12,24.0,, +nces/A9700074,2009,Count_Student_SchoolGrade9To12,23.0,, +nces/A9702795,2009,Count_Student_SchoolGrade9To12,51.0,, +nces/A9703331,2009,Count_Student_SchoolGrade9To12,66.0,, +nces/A9903306,2009,Count_Student_SchoolGrade9To12,7.0,, +nces/A9904455,2009,Count_Student_SchoolGrade9To12,5.0,, +nces/A9904469,2009,Count_Student_SchoolGrade9To12,8.0,, +nces/AA000007,2009,Count_Student_SchoolGrade9To12,10.0,, +nces/BB080157,2009,Count_Student_SchoolGrade9To12,4.0,, +nces/BB100068,2009,Count_Student_SchoolGrade9To12,9.0,, +nces/BB100994,2009,Count_Student_SchoolGrade9To12,19.0,, +nces/BB911554,2009,Count_Student_SchoolGrade9To12,71.0,, +nces/BB980189,2009,Count_Student_SchoolGrade9To12,58.0,, +nces/K9500531,2009,Count_Student_SchoolGrade9To12,2.0,, +nces/Y2162569,2009,Count_Student_SchoolGrade9To12,181.0,, +nces/00001026,2009,Count_Student_HispanicOrLatino,2.0,, +nces/00081272,2009,Count_Student_HispanicOrLatino,34.0,, +nces/00259858,2009,Count_Student_HispanicOrLatino,1.0,, +nces/00425908,2009,Count_Student_HispanicOrLatino,3.0,, +nces/00517072,2009,Count_Student_HispanicOrLatino,3.0,, +nces/00699979,2009,Count_Student_HispanicOrLatino,27.0,, +nces/00752221,2009,Count_Student_HispanicOrLatino,1.0,, +nces/00928796,2009,Count_Student_HispanicOrLatino,6.0,, +nces/01195835,2009,Count_Student_HispanicOrLatino,37.0,, +nces/01283096,2009,Count_Student_HispanicOrLatino,1.0,, +nces/01328801,2009,Count_Student_HispanicOrLatino,13.0,, +nces/01328969,2009,Count_Student_HispanicOrLatino,14.0,, +nces/01898328,2009,Count_Student_HispanicOrLatino,4.0,, +nces/01906396,2009,Count_Student_HispanicOrLatino,0.0,, +nces/01907265,2009,Count_Student_HispanicOrLatino,38.0,, +nces/01933863,2009,Count_Student_HispanicOrLatino,12.0,, +nces/02007955,2009,Count_Student_HispanicOrLatino,0.0,, +nces/02039659,2009,Count_Student_HispanicOrLatino,1.0,, +nces/02043767,2009,Count_Student_HispanicOrLatino,24.0,, +nces/02058401,2009,Count_Student_HispanicOrLatino,0.0,, +nces/02067846,2009,Count_Student_HispanicOrLatino,0.0,, +nces/02068045,2009,Count_Student_HispanicOrLatino,0.0,, +nces/02161237,2009,Count_Student_HispanicOrLatino,5.0,, +nces/A0100441,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0101705,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0102854,2009,Count_Student_HispanicOrLatino,13.0,, +nces/A0102857,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0103186,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0103294,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A0104077,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0106240,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0106286,2009,Count_Student_HispanicOrLatino,4.0,, +nces/A0106295,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0106324,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0107740,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0108235,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0108720,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0108771,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0108773,2009,Count_Student_HispanicOrLatino,6.0,, +nces/A0109638,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0300737,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0300748,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0301888,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0303162,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A0303197,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0304042,2009,Count_Student_HispanicOrLatino,13.0,, +nces/A0307071,2009,Count_Student_HispanicOrLatino,12.0,, +nces/A0307448,2009,Count_Student_HispanicOrLatino,4.0,, +nces/A0307668,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0307925,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0500119,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A0502391,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0503198,2009,Count_Student_HispanicOrLatino,47.0,, +nces/A0503272,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0507274,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0507700,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0700419,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0700420,2009,Count_Student_HispanicOrLatino,12.0,, +nces/A0700686,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0700688,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A0700925,2009,Count_Student_HispanicOrLatino,7.0,, +nces/A0701268,2009,Count_Student_HispanicOrLatino,4.0,, +nces/A0701576,2009,Count_Student_HispanicOrLatino,5.0,, +nces/A0740052,2009,Count_Student_HispanicOrLatino,4.0,, +nces/A0770215,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0770225,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A0771128,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0771471,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0771477,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0771713,2009,Count_Student_HispanicOrLatino,17.0,, +nces/A0790077,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0900001,2009,Count_Student_HispanicOrLatino,8.0,, +nces/A0900179,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0900756,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0900758,2009,Count_Student_HispanicOrLatino,59.0,, +nces/A0900759,2009,Count_Student_HispanicOrLatino,69.0,, +nces/A0901570,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902047,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902285,2009,Count_Student_HispanicOrLatino,9.0,, +nces/A0902446,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902447,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902448,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902450,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902553,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902693,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902694,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0902783,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0902806,2009,Count_Student_HispanicOrLatino,8.0,, +nces/A0902809,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A0903479,2009,Count_Student_HispanicOrLatino,6.0,, +nces/A0970714,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0970996,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A0971147,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0971821,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A0990097,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9100483,2009,Count_Student_HispanicOrLatino,8.0,, +nces/A9101510,2009,Count_Student_HispanicOrLatino,7.0,, +nces/A9101662,2009,Count_Student_HispanicOrLatino,34.0,, +nces/A9103126,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9104267,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A9104268,2009,Count_Student_HispanicOrLatino,4.0,, +nces/A9104404,2009,Count_Student_HispanicOrLatino,135.0,, +nces/A9104507,2009,Count_Student_HispanicOrLatino,26.0,, +nces/A9104665,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9106874,2009,Count_Student_HispanicOrLatino,3.0,, +nces/A9302116,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A9302732,2009,Count_Student_HispanicOrLatino,60.0,, +nces/A9501079,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9501433,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9502014,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9502015,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9502589,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9502733,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9503341,2009,Count_Student_HispanicOrLatino,5.0,, +nces/A9503430,2009,Count_Student_HispanicOrLatino,7.0,, +nces/A9503777,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A9700074,2009,Count_Student_HispanicOrLatino,56.0,, +nces/A9702631,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9702795,2009,Count_Student_HispanicOrLatino,15.0,, +nces/A9703331,2009,Count_Student_HispanicOrLatino,9.0,, +nces/A9705123,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9705126,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9705218,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9705232,2009,Count_Student_HispanicOrLatino,9.0,, +nces/A9706318,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9707442,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9707907,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9708049,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9708050,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A9708052,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9708053,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9900904,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9901553,2009,Count_Student_HispanicOrLatino,2.0,, +nces/A9902871,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9903306,2009,Count_Student_HispanicOrLatino,1.0,, +nces/A9903610,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9904455,2009,Count_Student_HispanicOrLatino,0.0,, +nces/A9904469,2009,Count_Student_HispanicOrLatino,0.0,, +nces/AA000003,2009,Count_Student_HispanicOrLatino,3.0,, +nces/AA000007,2009,Count_Student_HispanicOrLatino,1.0,, +nces/AA000008,2009,Count_Student_HispanicOrLatino,12.0,, +nces/AA000010,2009,Count_Student_HispanicOrLatino,0.0,, +nces/AA000011,2009,Count_Student_HispanicOrLatino,0.0,, +nces/AA001609,2009,Count_Student_HispanicOrLatino,4.0,, +nces/BB000456,2009,Count_Student_HispanicOrLatino,1.0,, +nces/BB020971,2009,Count_Student_HispanicOrLatino,0.0,, +nces/BB021012,2009,Count_Student_HispanicOrLatino,2.0,, +nces/BB061076,2009,Count_Student_HispanicOrLatino,4.0,, +nces/BB080157,2009,Count_Student_HispanicOrLatino,3.0,, +nces/BB080442,2009,Count_Student_HispanicOrLatino,12.0,, +nces/BB100068,2009,Count_Student_HispanicOrLatino,5.0,, +nces/BB100187,2009,Count_Student_HispanicOrLatino,3.0,, +nces/BB100383,2009,Count_Student_HispanicOrLatino,13.0,, +nces/BB101572,2009,Count_Student_HispanicOrLatino,12.0,, +nces/BB911554,2009,Count_Student_HispanicOrLatino,10.0,, +nces/BB942865,2009,Count_Student_HispanicOrLatino,8.0,, +nces/BB943172,2009,Count_Student_HispanicOrLatino,0.0,, +nces/BB943634,2009,Count_Student_HispanicOrLatino,7.0,, +nces/BB945908,2009,Count_Student_HispanicOrLatino,10.0,, +nces/BB964072,2009,Count_Student_HispanicOrLatino,24.0,, +nces/BB964100,2009,Count_Student_HispanicOrLatino,4.0,, +nces/BB980189,2009,Count_Student_HispanicOrLatino,46.0,, +nces/K9300079,2009,Count_Student_HispanicOrLatino,2.0,, +nces/K9301240,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9303866,2009,Count_Student_HispanicOrLatino,1.0,, +nces/K9304728,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9305227,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9305325,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9305466,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9305530,2009,Count_Student_HispanicOrLatino,3.0,, +nces/K9305911,2009,Count_Student_HispanicOrLatino,0.0,, +nces/K9500531,2009,Count_Student_HispanicOrLatino,1.0,, +nces/K9500748,2009,Count_Student_HispanicOrLatino,1.0,, +nces/Y2162569,2009,Count_Student_HispanicOrLatino,3.0,, +nces/00001026,2009,Count_Student_Kindergarten,15.0,, +nces/00081272,2009,Count_Student_Kindergarten,35.0,, +nces/00094237,2009,Count_Student_Kindergarten,30.0,, +nces/00425908,2009,Count_Student_Kindergarten,30.0,, +nces/00517072,2009,Count_Student_Kindergarten,9.0,, +nces/00928796,2009,Count_Student_Kindergarten,16.0,, +nces/01195835,2009,Count_Student_Kindergarten,29.0,, +nces/01328801,2009,Count_Student_Kindergarten,20.0,, +nces/01328969,2009,Count_Student_Kindergarten,15.0,, +nces/01898328,2009,Count_Student_Kindergarten,14.0,, +nces/01906396,2009,Count_Student_Kindergarten,28.0,, +nces/01933863,2009,Count_Student_Kindergarten,13.0,, +nces/02007955,2009,Count_Student_Kindergarten,1.0,, +nces/02039659,2009,Count_Student_Kindergarten,8.0,, +nces/02058401,2009,Count_Student_Kindergarten,12.0,, +nces/02068045,2009,Count_Student_Kindergarten,3.0,, +nces/02161237,2009,Count_Student_Kindergarten,18.0,, +nces/A0101705,2009,Count_Student_Kindergarten,8.0,, +nces/A0102854,2009,Count_Student_Kindergarten,4.0,, +nces/A0102857,2009,Count_Student_Kindergarten,5.0,, +nces/A0103186,2009,Count_Student_Kindergarten,20.0,, +nces/A0103294,2009,Count_Student_Kindergarten,15.0,, +nces/A0105209,2009,Count_Student_Kindergarten,11.0,, +nces/A0106240,2009,Count_Student_Kindergarten,11.0,, +nces/A0106286,2009,Count_Student_Kindergarten,10.0,, +nces/A0106293,2009,Count_Student_Kindergarten,23.0,, +nces/A0106295,2009,Count_Student_Kindergarten,5.0,, +nces/A0106296,2009,Count_Student_Kindergarten,6.0,, +nces/A0106324,2009,Count_Student_Kindergarten,1.0,, +nces/A0107740,2009,Count_Student_Kindergarten,6.0,, +nces/A0108235,2009,Count_Student_Kindergarten,15.0,, +nces/A0108720,2009,Count_Student_Kindergarten,3.0,, +nces/A0108771,2009,Count_Student_Kindergarten,12.0,, +nces/A0109638,2009,Count_Student_Kindergarten,15.0,, +nces/A0300103,2009,Count_Student_Kindergarten,11.0,, +nces/A0300748,2009,Count_Student_Kindergarten,23.0,, +nces/A0303197,2009,Count_Student_Kindergarten,6.0,, +nces/A0307071,2009,Count_Student_Kindergarten,28.0,, +nces/A0307448,2009,Count_Student_Kindergarten,6.0,, +nces/A0307668,2009,Count_Student_Kindergarten,14.0,, +nces/A0307925,2009,Count_Student_Kindergarten,10.0,, +nces/A0500120,2009,Count_Student_Kindergarten,25.0,, +nces/A0502391,2009,Count_Student_Kindergarten,18.0,, +nces/A0503198,2009,Count_Student_Kindergarten,8.0,, +nces/A0503272,2009,Count_Student_Kindergarten,1.0,, +nces/A0507124,2009,Count_Student_Kindergarten,45.0,, +nces/A0507274,2009,Count_Student_Kindergarten,43.0,, +nces/A0507315,2009,Count_Student_Kindergarten,25.0,, +nces/A0507700,2009,Count_Student_Kindergarten,6.0,, +nces/A0700419,2009,Count_Student_Kindergarten,4.0,, +nces/A0700686,2009,Count_Student_Kindergarten,23.0,, +nces/A0700925,2009,Count_Student_Kindergarten,8.0,, +nces/A0701268,2009,Count_Student_Kindergarten,9.0,, +nces/A0701576,2009,Count_Student_Kindergarten,11.0,, +nces/A0740052,2009,Count_Student_Kindergarten,4.0,, +nces/A0770215,2009,Count_Student_Kindergarten,20.0,, +nces/A0770225,2009,Count_Student_Kindergarten,6.0,, +nces/A0771128,2009,Count_Student_Kindergarten,14.0,, +nces/A0771471,2009,Count_Student_Kindergarten,3.0,, +nces/A0771477,2009,Count_Student_Kindergarten,20.0,, +nces/A0771713,2009,Count_Student_Kindergarten,68.0,, +nces/A0790077,2009,Count_Student_Kindergarten,3.0,, +nces/A0900756,2009,Count_Student_Kindergarten,6.0,, +nces/A0900758,2009,Count_Student_Kindergarten,5.0,, +nces/A0900759,2009,Count_Student_Kindergarten,30.0,, +nces/A0900761,2009,Count_Student_Kindergarten,43.0,, +nces/A0902047,2009,Count_Student_Kindergarten,2.0,, +nces/A0902446,2009,Count_Student_Kindergarten,5.0,, +nces/A0902448,2009,Count_Student_Kindergarten,5.0,, +nces/A0902553,2009,Count_Student_Kindergarten,7.0,, +nces/A0902693,2009,Count_Student_Kindergarten,25.0,, +nces/A0902694,2009,Count_Student_Kindergarten,1.0,, +nces/A0902783,2009,Count_Student_Kindergarten,11.0,, +nces/A0903479,2009,Count_Student_Kindergarten,2.0,, +nces/A0970714,2009,Count_Student_Kindergarten,10.0,, +nces/A0970996,2009,Count_Student_Kindergarten,6.0,, +nces/A0971147,2009,Count_Student_Kindergarten,4.0,, +nces/A0971821,2009,Count_Student_Kindergarten,2.0,, +nces/A0990097,2009,Count_Student_Kindergarten,5.0,, +nces/A9100483,2009,Count_Student_Kindergarten,15.0,, +nces/A9101510,2009,Count_Student_Kindergarten,32.0,, +nces/A9101662,2009,Count_Student_Kindergarten,29.0,, +nces/A9103126,2009,Count_Student_Kindergarten,1.0,, +nces/A9104267,2009,Count_Student_Kindergarten,2.0,, +nces/A9104268,2009,Count_Student_Kindergarten,6.0,, +nces/A9104404,2009,Count_Student_Kindergarten,29.0,, +nces/A9106874,2009,Count_Student_Kindergarten,3.0,, +nces/A9302116,2009,Count_Student_Kindergarten,8.0,, +nces/A9302732,2009,Count_Student_Kindergarten,19.0,, +nces/A9501078,2009,Count_Student_Kindergarten,8.0,, +nces/A9501433,2009,Count_Student_Kindergarten,3.0,, +nces/A9502014,2009,Count_Student_Kindergarten,11.0,, +nces/A9502015,2009,Count_Student_Kindergarten,6.0,, +nces/A9502589,2009,Count_Student_Kindergarten,3.0,, +nces/A9502733,2009,Count_Student_Kindergarten,13.0,, +nces/A9503341,2009,Count_Student_Kindergarten,19.0,, +nces/A9700074,2009,Count_Student_Kindergarten,24.0,, +nces/A9702631,2009,Count_Student_Kindergarten,16.0,, +nces/A9703331,2009,Count_Student_Kindergarten,13.0,, +nces/A9705123,2009,Count_Student_Kindergarten,3.0,, +nces/A9705126,2009,Count_Student_Kindergarten,15.0,, +nces/A9705218,2009,Count_Student_Kindergarten,5.0,, +nces/A9705232,2009,Count_Student_Kindergarten,10.0,, +nces/A9706318,2009,Count_Student_Kindergarten,12.0,, +nces/A9707442,2009,Count_Student_Kindergarten,8.0,, +nces/A9707907,2009,Count_Student_Kindergarten,4.0,, +nces/A9708049,2009,Count_Student_Kindergarten,9.0,, +nces/A9708050,2009,Count_Student_Kindergarten,8.0,, +nces/A9708052,2009,Count_Student_Kindergarten,107.0,, +nces/A9708053,2009,Count_Student_Kindergarten,18.0,, +nces/A9900904,2009,Count_Student_Kindergarten,6.0,, +nces/A9901553,2009,Count_Student_Kindergarten,21.0,, +nces/A9902871,2009,Count_Student_Kindergarten,11.0,, +nces/A9903610,2009,Count_Student_Kindergarten,10.0,, +nces/A9904469,2009,Count_Student_Kindergarten,4.0,, +nces/AA000003,2009,Count_Student_Kindergarten,10.0,, +nces/AA000007,2009,Count_Student_Kindergarten,2.0,, +nces/AA000008,2009,Count_Student_Kindergarten,17.0,, +nces/AA000010,2009,Count_Student_Kindergarten,11.0,, +nces/AA000011,2009,Count_Student_Kindergarten,4.0,, +nces/AA001609,2009,Count_Student_Kindergarten,26.0,, +nces/BB000456,2009,Count_Student_Kindergarten,24.0,, +nces/BB020971,2009,Count_Student_Kindergarten,5.0,, +nces/BB021012,2009,Count_Student_Kindergarten,2.0,, +nces/BB061076,2009,Count_Student_Kindergarten,17.0,, +nces/BB080442,2009,Count_Student_Kindergarten,25.0,, +nces/BB100187,2009,Count_Student_Kindergarten,8.0,, +nces/BB100383,2009,Count_Student_Kindergarten,15.0,, +nces/BB100994,2009,Count_Student_Kindergarten,19.0,, +nces/BB101572,2009,Count_Student_Kindergarten,15.0,, +nces/BB942865,2009,Count_Student_Kindergarten,10.0,, +nces/BB943172,2009,Count_Student_Kindergarten,25.0,, +nces/BB943634,2009,Count_Student_Kindergarten,25.0,, +nces/BB945908,2009,Count_Student_Kindergarten,10.0,, +nces/BB964072,2009,Count_Student_Kindergarten,32.0,, +nces/BB964100,2009,Count_Student_Kindergarten,15.0,, +nces/K9300079,2009,Count_Student_Kindergarten,10.0,, +nces/K9301240,2009,Count_Student_Kindergarten,14.0,, +nces/K9303866,2009,Count_Student_Kindergarten,11.0,, +nces/K9303952,2009,Count_Student_Kindergarten,21.0,, +nces/K9304728,2009,Count_Student_Kindergarten,12.0,, +nces/K9305227,2009,Count_Student_Kindergarten,10.0,, +nces/K9305325,2009,Count_Student_Kindergarten,6.0,, +nces/K9305466,2009,Count_Student_Kindergarten,2.0,, +nces/K9305530,2009,Count_Student_Kindergarten,10.0,, +nces/K9305911,2009,Count_Student_Kindergarten,10.0,, +nces/K9500531,2009,Count_Student_Kindergarten,13.0,, +nces/K9500748,2009,Count_Student_Kindergarten,9.0,, +nces/Y2162569,2009,Count_Student_Kindergarten,37.0,, +nces/00001026,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00081272,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00094237,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00259858,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00425908,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00517072,2009,Count_Student_HawaiianNativeOrPacificIslander,5.0,, +nces/00699979,2009,Count_Student_HawaiianNativeOrPacificIslander,5.0,, +nces/00752221,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00928796,2009,Count_Student_HawaiianNativeOrPacificIslander,2.0,, +nces/01195835,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01283096,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01328801,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01328969,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01898328,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01906396,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01907265,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/01933863,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02007955,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02039659,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02043767,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02058401,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02067846,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02068045,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/02161237,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0100441,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0101705,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0102854,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0102857,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0103186,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0103294,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0104077,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0105209,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0106240,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0106286,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0106295,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0106296,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0106324,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0107740,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0108235,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0108720,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0108771,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0108773,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0109638,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0300737,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0300748,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0301888,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0303162,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0303197,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0304042,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0307071,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0307448,2009,Count_Student_HawaiianNativeOrPacificIslander,6.0,, +nces/A0307668,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0307925,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0500119,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0500120,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0502391,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0503198,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0503272,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0507124,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0507274,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0507700,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0700419,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0700420,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0700686,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0700688,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0700925,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0701268,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0701576,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0740052,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0770215,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0770225,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0771128,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0771471,2009,Count_Student_HawaiianNativeOrPacificIslander,2.0,, +nces/A0771477,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0771713,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0790077,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0900001,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0900179,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0900756,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0900758,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0900759,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0901570,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902047,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902285,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902446,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902447,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902448,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902450,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902553,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902693,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902694,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902783,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902806,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0902809,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0903479,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0970714,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0970996,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0971147,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0971821,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A0990097,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9100483,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9101510,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9101662,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9103126,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9104267,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9104268,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9104404,2009,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +nces/A9104507,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9104665,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9106874,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9302116,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9302732,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9501079,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9501433,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9502014,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9502015,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9502589,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9502733,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9503341,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9503430,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9503777,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9700074,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9702631,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9702795,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9703331,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9705123,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9705126,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9705218,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9705232,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9706318,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9707442,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9707907,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9708049,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9708050,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9708052,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9708053,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9900904,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9901553,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9902871,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9903306,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9903610,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9904455,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/A9904469,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA000003,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA000007,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA000008,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA000010,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA000011,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/AA001609,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB000456,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB020971,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB021012,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB061076,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB080157,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB100068,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB100187,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB100383,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB101572,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB911554,2009,Count_Student_HawaiianNativeOrPacificIslander,1.0,, +nces/BB942865,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB943172,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB943634,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB945908,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB964072,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/BB964100,2009,Count_Student_HawaiianNativeOrPacificIslander,2.0,, +nces/BB980189,2009,Count_Student_HawaiianNativeOrPacificIslander,2.0,, +nces/K9300079,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9301240,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9303866,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9304728,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9305227,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9305325,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9305530,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9305911,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9500531,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/K9500748,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/Y2162569,2009,Count_Student_HawaiianNativeOrPacificIslander,0.0,, +nces/00001026,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00081272,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00259858,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00425908,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00517072,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00699979,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.13,100,dcs:Percent +nces/00752221,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/00928796,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.75,100,dcs:Percent +nces/01195835,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01283096,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,44.12,100,dcs:Percent +nces/01328801,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.37,100,dcs:Percent +nces/01328969,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01898328,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01906396,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01907265,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01933863,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.4,100,dcs:Percent +nces/02007955,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02043767,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02058401,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02067846,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0100441,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,5.88,100,dcs:Percent +nces/A0101705,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102854,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102857,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103186,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0104077,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106240,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106286,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108720,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108771,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108773,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0109638,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0300737,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0300748,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0301888,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303197,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0304042,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307071,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307448,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307925,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0502391,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0503198,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0503272,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507700,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700419,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700420,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700686,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700688,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700925,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701576,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0740052,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771128,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771477,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0790077,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900179,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900758,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900759,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0901570,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902446,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902447,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902448,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902450,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902806,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902809,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971147,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101662,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9103126,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104268,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104404,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104507,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104665,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302116,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,1.21,100,dcs:Percent +nces/A9501079,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502015,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502733,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503341,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.69,100,dcs:Percent +nces/A9503430,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503777,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702631,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9703331,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705123,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705218,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705232,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9706318,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707442,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707907,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708052,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708053,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9900904,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9901553,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9902871,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903306,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000008,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,2.33,100,dcs:Percent +nces/AA000010,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000011,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.6,100,dcs:Percent +nces/BB000456,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB020971,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB080157,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100068,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100187,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100383,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB101572,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,6.67,100,dcs:Percent +nces/BB911554,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB942865,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943172,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB945908,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964100,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB980189,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9300079,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/K9304728,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500748,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,2.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_AmericanIndianOrAlaskaNative_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00001026,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.91,100,dcs:Percent +nces/00081272,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,7.95,100,dcs:Percent +nces/00259858,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00425908,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,17.14,100,dcs:Percent +nces/00517072,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00699979,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.8,100,dcs:Percent +nces/00752221,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.66,100,dcs:Percent +nces/00928796,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.76,100,dcs:Percent +nces/01195835,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,4.89,100,dcs:Percent +nces/01283096,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01328801,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.88,100,dcs:Percent +nces/01328969,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.38,100,dcs:Percent +nces/01898328,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01906396,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01907265,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.85,100,dcs:Percent +nces/01933863,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.98,100,dcs:Percent +nces/02007955,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02043767,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.75,100,dcs:Percent +nces/02058401,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.72,100,dcs:Percent +nces/02067846,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.5,100,dcs:Percent +nces/A0100441,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0101705,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.26,100,dcs:Percent +nces/A0102854,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102857,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103186,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0104077,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106240,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A0106286,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108720,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108771,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/A0108773,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0109638,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,4.76,100,dcs:Percent +nces/A0300737,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,2.44,100,dcs:Percent +nces/A0300748,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0301888,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303197,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,68.97,100,dcs:Percent +nces/A0304042,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307071,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,7.14,100,dcs:Percent +nces/A0307448,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,12.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307925,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.34,100,dcs:Percent +nces/A0502391,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,2.59,100,dcs:Percent +nces/A0503198,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,2.13,100,dcs:Percent +nces/A0503272,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,9.3,100,dcs:Percent +nces/A0507700,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700419,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700420,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.26,100,dcs:Percent +nces/A0700686,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,14.29,100,dcs:Percent +nces/A0700688,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,4.08,100,dcs:Percent +nces/A0700925,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,11.11,100,dcs:Percent +nces/A0701576,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,7.46,100,dcs:Percent +nces/A0740052,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,36.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0771128,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,14.29,100,dcs:Percent +nces/A0771477,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,2.94,100,dcs:Percent +nces/A0790077,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900179,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900758,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900759,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.25,100,dcs:Percent +nces/A0901570,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902446,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902447,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902448,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902450,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,12.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902806,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902809,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971147,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,15.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101662,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,4.23,100,dcs:Percent +nces/A9103126,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104268,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,4.65,100,dcs:Percent +nces/A9104404,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.67,100,dcs:Percent +nces/A9104507,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104665,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302116,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,30.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,8.76,100,dcs:Percent +nces/A9501079,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A9502015,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502733,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,23.08,100,dcs:Percent +nces/A9503341,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,7.64,100,dcs:Percent +nces/A9503430,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503777,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.69,100,dcs:Percent +nces/A9702631,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.33,100,dcs:Percent +nces/A9703331,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705123,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705218,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705232,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,5.56,100,dcs:Percent +nces/A9706318,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,15.79,100,dcs:Percent +nces/A9707442,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.03,100,dcs:Percent +nces/A9707907,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708052,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,84.75,100,dcs:Percent +nces/A9708053,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9900904,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9901553,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9902871,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A9903306,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000008,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.47,100,dcs:Percent +nces/AA000010,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,81.82,100,dcs:Percent +nces/AA000011,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.6,100,dcs:Percent +nces/BB000456,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB020971,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.1,100,dcs:Percent +nces/BB080157,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100068,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,21.43,100,dcs:Percent +nces/BB100187,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100383,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB101572,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB911554,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.85,100,dcs:Percent +nces/BB942865,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,15.38,100,dcs:Percent +nces/BB943172,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB945908,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,3.64,100,dcs:Percent +nces/BB964100,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB980189,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,40.69,100,dcs:Percent +nces/K9300079,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,45.45,100,dcs:Percent +nces/K9304728,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500748,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,6.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_Asian_AsAFractionOf_Count_Student,1.17,100,dcs:Percent +nces/00001026,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.64,100,dcs:Percent +nces/00081272,2009,Percent_Student_Black_AsAFractionOf_Count_Student,1.67,100,dcs:Percent +nces/00259858,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00425908,2009,Percent_Student_Black_AsAFractionOf_Count_Student,1.9,100,dcs:Percent +nces/00517072,2009,Percent_Student_Black_AsAFractionOf_Count_Student,7.24,100,dcs:Percent +nces/00699979,2009,Percent_Student_Black_AsAFractionOf_Count_Student,2.36,100,dcs:Percent +nces/00752221,2009,Percent_Student_Black_AsAFractionOf_Count_Student,13.41,100,dcs:Percent +nces/00928796,2009,Percent_Student_Black_AsAFractionOf_Count_Student,3.01,100,dcs:Percent +nces/01195835,2009,Percent_Student_Black_AsAFractionOf_Count_Student,20.24,100,dcs:Percent +nces/01283096,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.82,100,dcs:Percent +nces/01328801,2009,Percent_Student_Black_AsAFractionOf_Count_Student,6.99,100,dcs:Percent +nces/01328969,2009,Percent_Student_Black_AsAFractionOf_Count_Student,9.68,100,dcs:Percent +nces/01898328,2009,Percent_Student_Black_AsAFractionOf_Count_Student,28.57,100,dcs:Percent +nces/01906396,2009,Percent_Student_Black_AsAFractionOf_Count_Student,1.93,100,dcs:Percent +nces/01907265,2009,Percent_Student_Black_AsAFractionOf_Count_Student,53.42,100,dcs:Percent +nces/01933863,2009,Percent_Student_Black_AsAFractionOf_Count_Student,2.79,100,dcs:Percent +nces/02007955,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02043767,2009,Percent_Student_Black_AsAFractionOf_Count_Student,40.35,100,dcs:Percent +nces/02058401,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02067846,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_Black_AsAFractionOf_Count_Student,9.79,100,dcs:Percent +nces/A0100441,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0101705,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.26,100,dcs:Percent +nces/A0102854,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.56,100,dcs:Percent +nces/A0102857,2009,Percent_Student_Black_AsAFractionOf_Count_Student,61.54,100,dcs:Percent +nces/A0103186,2009,Percent_Student_Black_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_Black_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A0104077,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106240,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106286,2009,Percent_Student_Black_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108720,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108771,2009,Percent_Student_Black_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A0108773,2009,Percent_Student_Black_AsAFractionOf_Count_Student,34.09,100,dcs:Percent +nces/A0109638,2009,Percent_Student_Black_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A0300737,2009,Percent_Student_Black_AsAFractionOf_Count_Student,90.24,100,dcs:Percent +nces/A0300748,2009,Percent_Student_Black_AsAFractionOf_Count_Student,98.46,100,dcs:Percent +nces/A0301888,2009,Percent_Student_Black_AsAFractionOf_Count_Student,12.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.56,100,dcs:Percent +nces/A0303197,2009,Percent_Student_Black_AsAFractionOf_Count_Student,3.45,100,dcs:Percent +nces/A0304042,2009,Percent_Student_Black_AsAFractionOf_Count_Student,30.61,100,dcs:Percent +nces/A0307071,2009,Percent_Student_Black_AsAFractionOf_Count_Student,14.29,100,dcs:Percent +nces/A0307448,2009,Percent_Student_Black_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_Black_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0307925,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_Black_AsAFractionOf_Count_Student,13.79,100,dcs:Percent +nces/A0502391,2009,Percent_Student_Black_AsAFractionOf_Count_Student,2.59,100,dcs:Percent +nces/A0503198,2009,Percent_Student_Black_AsAFractionOf_Count_Student,24.82,100,dcs:Percent +nces/A0503272,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507700,2009,Percent_Student_Black_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0700419,2009,Percent_Student_Black_AsAFractionOf_Count_Student,4.76,100,dcs:Percent +nces/A0700420,2009,Percent_Student_Black_AsAFractionOf_Count_Student,10.53,100,dcs:Percent +nces/A0700686,2009,Percent_Student_Black_AsAFractionOf_Count_Student,30.16,100,dcs:Percent +nces/A0700688,2009,Percent_Student_Black_AsAFractionOf_Count_Student,16.33,100,dcs:Percent +nces/A0700925,2009,Percent_Student_Black_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.56,100,dcs:Percent +nces/A0701576,2009,Percent_Student_Black_AsAFractionOf_Count_Student,32.84,100,dcs:Percent +nces/A0740052,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_Black_AsAFractionOf_Count_Student,85.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771128,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771477,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_Black_AsAFractionOf_Count_Student,23.53,100,dcs:Percent +nces/A0790077,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_Black_AsAFractionOf_Count_Student,78.85,100,dcs:Percent +nces/A0900179,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_Black_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0900758,2009,Percent_Student_Black_AsAFractionOf_Count_Student,4.29,100,dcs:Percent +nces/A0900759,2009,Percent_Student_Black_AsAFractionOf_Count_Student,1.25,100,dcs:Percent +nces/A0901570,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_Black_AsAFractionOf_Count_Student,35.87,100,dcs:Percent +nces/A0902446,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/A0902447,2009,Percent_Student_Black_AsAFractionOf_Count_Student,14.29,100,dcs:Percent +nces/A0902448,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902450,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_Black_AsAFractionOf_Count_Student,4.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902806,2009,Percent_Student_Black_AsAFractionOf_Count_Student,51.72,100,dcs:Percent +nces/A0902809,2009,Percent_Student_Black_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_Black_AsAFractionOf_Count_Student,90.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_Black_AsAFractionOf_Count_Student,58.33,100,dcs:Percent +nces/A0971147,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_Black_AsAFractionOf_Count_Student,15.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101662,2009,Percent_Student_Black_AsAFractionOf_Count_Student,49.23,100,dcs:Percent +nces/A9103126,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_Black_AsAFractionOf_Count_Student,87.5,100,dcs:Percent +nces/A9104268,2009,Percent_Student_Black_AsAFractionOf_Count_Student,44.19,100,dcs:Percent +nces/A9104404,2009,Percent_Student_Black_AsAFractionOf_Count_Student,25.89,100,dcs:Percent +nces/A9104507,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104665,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_Black_AsAFractionOf_Count_Student,3.33,100,dcs:Percent +nces/A9302116,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.76,100,dcs:Percent +nces/A9501079,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_Black_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_Black_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A9502015,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502733,2009,Percent_Student_Black_AsAFractionOf_Count_Student,7.69,100,dcs:Percent +nces/A9503341,2009,Percent_Student_Black_AsAFractionOf_Count_Student,3.47,100,dcs:Percent +nces/A9503430,2009,Percent_Student_Black_AsAFractionOf_Count_Student,47.83,100,dcs:Percent +nces/A9503777,2009,Percent_Student_Black_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_Black_AsAFractionOf_Count_Student,25.52,100,dcs:Percent +nces/A9702631,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_Black_AsAFractionOf_Count_Student,56.0,100,dcs:Percent +nces/A9703331,2009,Percent_Student_Black_AsAFractionOf_Count_Student,3.06,100,dcs:Percent +nces/A9705123,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_Black_AsAFractionOf_Count_Student,6.67,100,dcs:Percent +nces/A9705218,2009,Percent_Student_Black_AsAFractionOf_Count_Student,6.25,100,dcs:Percent +nces/A9705232,2009,Percent_Student_Black_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A9706318,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707442,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707907,2009,Percent_Student_Black_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_Black_AsAFractionOf_Count_Student,62.5,100,dcs:Percent +nces/A9708052,2009,Percent_Student_Black_AsAFractionOf_Count_Student,1.69,100,dcs:Percent +nces/A9708053,2009,Percent_Student_Black_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A9900904,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9901553,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9902871,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903306,2009,Percent_Student_Black_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000008,2009,Percent_Student_Black_AsAFractionOf_Count_Student,4.65,100,dcs:Percent +nces/AA000010,2009,Percent_Student_Black_AsAFractionOf_Count_Student,2.27,100,dcs:Percent +nces/AA000011,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB000456,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/BB020971,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_Black_AsAFractionOf_Count_Student,12.09,100,dcs:Percent +nces/BB080157,2009,Percent_Student_Black_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/BB100068,2009,Percent_Student_Black_AsAFractionOf_Count_Student,14.29,100,dcs:Percent +nces/BB100187,2009,Percent_Student_Black_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/BB100383,2009,Percent_Student_Black_AsAFractionOf_Count_Student,13.33,100,dcs:Percent +nces/BB101572,2009,Percent_Student_Black_AsAFractionOf_Count_Student,13.33,100,dcs:Percent +nces/BB911554,2009,Percent_Student_Black_AsAFractionOf_Count_Student,29.63,100,dcs:Percent +nces/BB942865,2009,Percent_Student_Black_AsAFractionOf_Count_Student,23.08,100,dcs:Percent +nces/BB943172,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_Black_AsAFractionOf_Count_Student,7.22,100,dcs:Percent +nces/BB945908,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_Black_AsAFractionOf_Count_Student,43.64,100,dcs:Percent +nces/BB964100,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB980189,2009,Percent_Student_Black_AsAFractionOf_Count_Student,5.52,100,dcs:Percent +nces/K9300079,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_Black_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9304728,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_Black_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_Black_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_Black_AsAFractionOf_Count_Student,90.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_Black_AsAFractionOf_Count_Student,6.25,100,dcs:Percent +nces/K9500748,2009,Percent_Student_Black_AsAFractionOf_Count_Student,2.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_Black_AsAFractionOf_Count_Student,9.0,100,dcs:Percent +nces/00001026,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,1.27,100,dcs:Percent +nces/00081272,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,14.23,100,dcs:Percent +nces/00259858,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/00425908,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.86,100,dcs:Percent +nces/00517072,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.84,100,dcs:Percent +nces/00699979,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.53,100,dcs:Percent +nces/00752221,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,1.22,100,dcs:Percent +nces/00928796,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.51,100,dcs:Percent +nces/01195835,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,6.24,100,dcs:Percent +nces/01283096,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.94,100,dcs:Percent +nces/01328801,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.78,100,dcs:Percent +nces/01328969,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,15.05,100,dcs:Percent +nces/01898328,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,28.57,100,dcs:Percent +nces/01906396,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01907265,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,16.24,100,dcs:Percent +nces/01933863,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.78,100,dcs:Percent +nces/02007955,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.78,100,dcs:Percent +nces/02043767,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,42.11,100,dcs:Percent +nces/02058401,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02067846,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.5,100,dcs:Percent +nces/A0100441,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0101705,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102854,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,72.22,100,dcs:Percent +nces/A0102857,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103186,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A0104077,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.51,100,dcs:Percent +nces/A0106240,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106286,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,6.67,100,dcs:Percent +nces/A0108720,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,11.76,100,dcs:Percent +nces/A0108771,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/A0108773,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,13.64,100,dcs:Percent +nces/A0109638,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.76,100,dcs:Percent +nces/A0300737,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.44,100,dcs:Percent +nces/A0300748,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,1.54,100,dcs:Percent +nces/A0301888,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,8.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,5.56,100,dcs:Percent +nces/A0303197,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0304042,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,26.53,100,dcs:Percent +nces/A0307071,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,21.43,100,dcs:Percent +nces/A0307448,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,16.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307925,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,10.34,100,dcs:Percent +nces/A0502391,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,1.72,100,dcs:Percent +nces/A0503198,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A0503272,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507700,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A0700419,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.52,100,dcs:Percent +nces/A0700420,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,63.16,100,dcs:Percent +nces/A0700686,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.17,100,dcs:Percent +nces/A0700688,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.08,100,dcs:Percent +nces/A0700925,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,35.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.7,100,dcs:Percent +nces/A0701576,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,7.46,100,dcs:Percent +nces/A0740052,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,16.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,5.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/A0771128,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,7.14,100,dcs:Percent +nces/A0771471,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771477,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,5.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A0790077,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,5.13,100,dcs:Percent +nces/A0900179,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0900758,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,84.29,100,dcs:Percent +nces/A0900759,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,86.25,100,dcs:Percent +nces/A0901570,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.78,100,dcs:Percent +nces/A0902446,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902447,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902448,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902450,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A0902806,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,13.79,100,dcs:Percent +nces/A0902809,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,6.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,60.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/A0971147,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,21.88,100,dcs:Percent +nces/A9101662,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,13.08,100,dcs:Percent +nces/A9103126,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,12.5,100,dcs:Percent +nces/A9104268,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.3,100,dcs:Percent +nces/A9104404,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,47.87,100,dcs:Percent +nces/A9104507,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,68.42,100,dcs:Percent +nces/A9104665,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9302116,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,18.13,100,dcs:Percent +nces/A9501079,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/A9502015,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502733,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503341,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.47,100,dcs:Percent +nces/A9503430,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,6.09,100,dcs:Percent +nces/A9503777,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,5.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,38.62,100,dcs:Percent +nces/A9702631,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/A9703331,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.93,100,dcs:Percent +nces/A9705123,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705218,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,6.25,100,dcs:Percent +nces/A9705232,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/A9706318,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707442,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,3.03,100,dcs:Percent +nces/A9707907,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A9708052,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708053,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9900904,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A9901553,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.52,100,dcs:Percent +nces/A9902871,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903306,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,30.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.78,100,dcs:Percent +nces/AA000008,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,13.95,100,dcs:Percent +nces/AA000010,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000011,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.4,100,dcs:Percent +nces/BB000456,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.17,100,dcs:Percent +nces/BB020971,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,4.4,100,dcs:Percent +nces/BB080157,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/BB100068,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,35.71,100,dcs:Percent +nces/BB100187,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,37.5,100,dcs:Percent +nces/BB100383,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,86.67,100,dcs:Percent +nces/BB101572,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/BB911554,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.26,100,dcs:Percent +nces/BB942865,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,61.54,100,dcs:Percent +nces/BB943172,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,7.22,100,dcs:Percent +nces/BB945908,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,43.64,100,dcs:Percent +nces/BB964100,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,26.67,100,dcs:Percent +nces/BB980189,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,31.72,100,dcs:Percent +nces/K9300079,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,9.09,100,dcs:Percent +nces/K9304728,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305466,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,30.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,1.25,100,dcs:Percent +nces/K9500748,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,2.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_HispanicOrLatino_AsAFractionOf_Count_Student,0.5,100,dcs:Percent +nces/00001026,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00081272,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00094237,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00259858,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00425908,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00517072,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,1.39,100,dcs:Percent +nces/00699979,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.65,100,dcs:Percent +nces/00752221,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00928796,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,1.5,100,dcs:Percent +nces/01195835,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01283096,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01328801,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01328969,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01898328,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01906396,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01907265,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01933863,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02007955,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02043767,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02058401,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02067846,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0100441,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0101705,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102854,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102857,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103186,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0104077,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0105209,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106240,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106286,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106296,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108720,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108771,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108773,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0109638,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0300737,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0300748,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0301888,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303197,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0304042,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307071,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307448,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,24.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307925,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500120,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0502391,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0503198,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0503272,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507124,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507700,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700419,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700420,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700686,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700688,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700925,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701576,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0740052,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771128,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771471,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,66.67,100,dcs:Percent +nces/A0771477,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0790077,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900179,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900758,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900759,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0901570,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902446,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902447,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902448,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902450,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902806,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902809,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971147,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101662,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9103126,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104268,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104404,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.35,100,dcs:Percent +nces/A9104507,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104665,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302116,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501079,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502015,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502733,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503341,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503430,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503777,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702631,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9703331,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705123,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705218,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705232,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9706318,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707442,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707907,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708052,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708053,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9900904,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9901553,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9902871,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903306,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000008,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000010,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000011,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB000456,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB020971,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB080157,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100068,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100187,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100383,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB101572,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB911554,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.93,100,dcs:Percent +nces/BB942865,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943172,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB945908,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964100,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,13.33,100,dcs:Percent +nces/BB980189,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,1.38,100,dcs:Percent +nces/K9300079,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9304728,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500748,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_HawaiianNativeOrPacificIslander_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00001026,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.64,100,dcs:Percent +nces/00081272,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,1.26,100,dcs:Percent +nces/00094237,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00259858,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00425908,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00517072,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00699979,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.14,100,dcs:Percent +nces/00752221,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/00928796,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.51,100,dcs:Percent +nces/01195835,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.72,100,dcs:Percent +nces/01283096,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01328801,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.37,100,dcs:Percent +nces/01328969,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01898328,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01906396,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.48,100,dcs:Percent +nces/01907265,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/01933863,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,5.98,100,dcs:Percent +nces/02007955,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/02043767,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,5.26,100,dcs:Percent +nces/02058401,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02067846,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0100441,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0101705,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102854,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0102857,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,38.46,100,dcs:Percent +nces/A0103186,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0104077,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,1.75,100,dcs:Percent +nces/A0105209,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106240,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106286,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106296,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108720,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108771,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108773,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0109638,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,9.52,100,dcs:Percent +nces/A0300737,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.88,100,dcs:Percent +nces/A0300748,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0301888,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0303197,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,13.79,100,dcs:Percent +nces/A0304042,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307071,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307448,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0307925,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,13.79,100,dcs:Percent +nces/A0500120,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0502391,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.31,100,dcs:Percent +nces/A0503198,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.26,100,dcs:Percent +nces/A0503272,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,15.0,100,dcs:Percent +nces/A0507124,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0507700,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700419,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700420,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700686,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700688,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0700925,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0701576,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0740052,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0771128,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771471,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771477,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0790077,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900179,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0900758,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.29,100,dcs:Percent +nces/A0900759,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0901570,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,2.17,100,dcs:Percent +nces/A0902446,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902447,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902448,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,2.38,100,dcs:Percent +nces/A0902450,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902806,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902809,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,8.33,100,dcs:Percent +nces/A0971147,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,5.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9101662,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,8.85,100,dcs:Percent +nces/A9103126,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104268,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,6.98,100,dcs:Percent +nces/A9104404,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.55,100,dcs:Percent +nces/A9104507,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104665,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.33,100,dcs:Percent +nces/A9302116,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,8.76,100,dcs:Percent +nces/A9501079,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502015,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,33.33,100,dcs:Percent +nces/A9502733,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503341,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,2.78,100,dcs:Percent +nces/A9503430,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9503777,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702631,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9703331,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705123,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705218,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9705232,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9706318,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9707442,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.03,100,dcs:Percent +nces/A9707907,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9708052,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,2.82,100,dcs:Percent +nces/A9708053,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,11.11,100,dcs:Percent +nces/A9900904,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9901553,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.76,100,dcs:Percent +nces/A9902871,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903306,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000008,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,2.33,100,dcs:Percent +nces/AA000010,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA000011,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.6,100,dcs:Percent +nces/BB000456,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB020971,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB080157,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100068,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100187,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB100383,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB101572,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB911554,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB942865,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943172,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB945908,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.64,100,dcs:Percent +nces/BB964100,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB980189,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.45,100,dcs:Percent +nces/K9300079,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,18.18,100,dcs:Percent +nces/K9304728,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/K9500748,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,4.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_TwoOrMoreRaces_AsAFractionOf_Count_Student,3.83,100,dcs:Percent +nces/00001026,2009,Percent_Student_White_AsAFractionOf_Count_Student,95.54,100,dcs:Percent +nces/00081272,2009,Percent_Student_White_AsAFractionOf_Count_Student,74.9,100,dcs:Percent +nces/00259858,2009,Percent_Student_White_AsAFractionOf_Count_Student,91.67,100,dcs:Percent +nces/00425908,2009,Percent_Student_White_AsAFractionOf_Count_Student,78.1,100,dcs:Percent +nces/00517072,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.53,100,dcs:Percent +nces/00699979,2009,Percent_Student_White_AsAFractionOf_Count_Student,86.39,100,dcs:Percent +nces/00752221,2009,Percent_Student_White_AsAFractionOf_Count_Student,31.71,100,dcs:Percent +nces/00928796,2009,Percent_Student_White_AsAFractionOf_Count_Student,81.95,100,dcs:Percent +nces/01195835,2009,Percent_Student_White_AsAFractionOf_Count_Student,63.91,100,dcs:Percent +nces/01283096,2009,Percent_Student_White_AsAFractionOf_Count_Student,44.12,100,dcs:Percent +nces/01328801,2009,Percent_Student_White_AsAFractionOf_Count_Student,81.62,100,dcs:Percent +nces/01328969,2009,Percent_Student_White_AsAFractionOf_Count_Student,69.89,100,dcs:Percent +nces/01898328,2009,Percent_Student_White_AsAFractionOf_Count_Student,42.86,100,dcs:Percent +nces/01906396,2009,Percent_Student_White_AsAFractionOf_Count_Student,97.58,100,dcs:Percent +nces/01907265,2009,Percent_Student_White_AsAFractionOf_Count_Student,29.49,100,dcs:Percent +nces/01933863,2009,Percent_Student_White_AsAFractionOf_Count_Student,82.07,100,dcs:Percent +nces/02007955,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/02039659,2009,Percent_Student_White_AsAFractionOf_Count_Student,88.89,100,dcs:Percent +nces/02043767,2009,Percent_Student_White_AsAFractionOf_Count_Student,10.53,100,dcs:Percent +nces/02058401,2009,Percent_Student_White_AsAFractionOf_Count_Student,98.28,100,dcs:Percent +nces/02067846,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/02068045,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/02161237,2009,Percent_Student_White_AsAFractionOf_Count_Student,83.22,100,dcs:Percent +nces/A0100441,2009,Percent_Student_White_AsAFractionOf_Count_Student,94.12,100,dcs:Percent +nces/A0101705,2009,Percent_Student_White_AsAFractionOf_Count_Student,89.47,100,dcs:Percent +nces/A0102854,2009,Percent_Student_White_AsAFractionOf_Count_Student,22.22,100,dcs:Percent +nces/A0102857,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0103186,2009,Percent_Student_White_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A0103294,2009,Percent_Student_White_AsAFractionOf_Count_Student,46.67,100,dcs:Percent +nces/A0104077,2009,Percent_Student_White_AsAFractionOf_Count_Student,94.74,100,dcs:Percent +nces/A0106240,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.91,100,dcs:Percent +nces/A0106286,2009,Percent_Student_White_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0106295,2009,Percent_Student_White_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/A0106324,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0107740,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0108235,2009,Percent_Student_White_AsAFractionOf_Count_Student,93.33,100,dcs:Percent +nces/A0108720,2009,Percent_Student_White_AsAFractionOf_Count_Student,88.24,100,dcs:Percent +nces/A0108771,2009,Percent_Student_White_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/A0108773,2009,Percent_Student_White_AsAFractionOf_Count_Student,52.27,100,dcs:Percent +nces/A0109638,2009,Percent_Student_White_AsAFractionOf_Count_Student,47.62,100,dcs:Percent +nces/A0300737,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0300748,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0301888,2009,Percent_Student_White_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/A0303162,2009,Percent_Student_White_AsAFractionOf_Count_Student,88.89,100,dcs:Percent +nces/A0303197,2009,Percent_Student_White_AsAFractionOf_Count_Student,13.79,100,dcs:Percent +nces/A0304042,2009,Percent_Student_White_AsAFractionOf_Count_Student,42.86,100,dcs:Percent +nces/A0307071,2009,Percent_Student_White_AsAFractionOf_Count_Student,57.14,100,dcs:Percent +nces/A0307448,2009,Percent_Student_White_AsAFractionOf_Count_Student,8.0,100,dcs:Percent +nces/A0307668,2009,Percent_Student_White_AsAFractionOf_Count_Student,83.33,100,dcs:Percent +nces/A0307925,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0500119,2009,Percent_Student_White_AsAFractionOf_Count_Student,51.72,100,dcs:Percent +nces/A0502391,2009,Percent_Student_White_AsAFractionOf_Count_Student,88.79,100,dcs:Percent +nces/A0503198,2009,Percent_Student_White_AsAFractionOf_Count_Student,35.46,100,dcs:Percent +nces/A0503272,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.0,100,dcs:Percent +nces/A0507274,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.7,100,dcs:Percent +nces/A0507700,2009,Percent_Student_White_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/A0700419,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.71,100,dcs:Percent +nces/A0700420,2009,Percent_Student_White_AsAFractionOf_Count_Student,21.05,100,dcs:Percent +nces/A0700686,2009,Percent_Student_White_AsAFractionOf_Count_Student,52.38,100,dcs:Percent +nces/A0700688,2009,Percent_Student_White_AsAFractionOf_Count_Student,75.51,100,dcs:Percent +nces/A0700925,2009,Percent_Student_White_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0701268,2009,Percent_Student_White_AsAFractionOf_Count_Student,79.63,100,dcs:Percent +nces/A0701576,2009,Percent_Student_White_AsAFractionOf_Count_Student,52.24,100,dcs:Percent +nces/A0740052,2009,Percent_Student_White_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0770215,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0770225,2009,Percent_Student_White_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A0771128,2009,Percent_Student_White_AsAFractionOf_Count_Student,78.57,100,dcs:Percent +nces/A0771471,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0771477,2009,Percent_Student_White_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/A0771713,2009,Percent_Student_White_AsAFractionOf_Count_Student,48.53,100,dcs:Percent +nces/A0790077,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0900001,2009,Percent_Student_White_AsAFractionOf_Count_Student,16.03,100,dcs:Percent +nces/A0900179,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0900756,2009,Percent_Student_White_AsAFractionOf_Count_Student,66.67,100,dcs:Percent +nces/A0900758,2009,Percent_Student_White_AsAFractionOf_Count_Student,7.14,100,dcs:Percent +nces/A0900759,2009,Percent_Student_White_AsAFractionOf_Count_Student,11.25,100,dcs:Percent +nces/A0901570,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902047,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0902285,2009,Percent_Student_White_AsAFractionOf_Count_Student,52.17,100,dcs:Percent +nces/A0902446,2009,Percent_Student_White_AsAFractionOf_Count_Student,91.67,100,dcs:Percent +nces/A0902447,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.71,100,dcs:Percent +nces/A0902448,2009,Percent_Student_White_AsAFractionOf_Count_Student,97.62,100,dcs:Percent +nces/A0902450,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A0902553,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0902693,2009,Percent_Student_White_AsAFractionOf_Count_Student,84.0,100,dcs:Percent +nces/A0902694,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0902783,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.91,100,dcs:Percent +nces/A0902806,2009,Percent_Student_White_AsAFractionOf_Count_Student,34.48,100,dcs:Percent +nces/A0902809,2009,Percent_Student_White_AsAFractionOf_Count_Student,70.0,100,dcs:Percent +nces/A0903479,2009,Percent_Student_White_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A0970714,2009,Percent_Student_White_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/A0970996,2009,Percent_Student_White_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A0971147,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0971821,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A0990097,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9100483,2009,Percent_Student_White_AsAFractionOf_Count_Student,25.0,100,dcs:Percent +nces/A9101510,2009,Percent_Student_White_AsAFractionOf_Count_Student,78.13,100,dcs:Percent +nces/A9101662,2009,Percent_Student_White_AsAFractionOf_Count_Student,24.62,100,dcs:Percent +nces/A9103126,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9104267,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9104268,2009,Percent_Student_White_AsAFractionOf_Count_Student,34.88,100,dcs:Percent +nces/A9104404,2009,Percent_Student_White_AsAFractionOf_Count_Student,16.67,100,dcs:Percent +nces/A9104507,2009,Percent_Student_White_AsAFractionOf_Count_Student,31.58,100,dcs:Percent +nces/A9104665,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9106874,2009,Percent_Student_White_AsAFractionOf_Count_Student,83.33,100,dcs:Percent +nces/A9302116,2009,Percent_Student_White_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/A9302732,2009,Percent_Student_White_AsAFractionOf_Count_Student,54.38,100,dcs:Percent +nces/A9501079,2009,Percent_Student_White_AsAFractionOf_Count_Student,80.0,100,dcs:Percent +nces/A9501433,2009,Percent_Student_White_AsAFractionOf_Count_Student,40.0,100,dcs:Percent +nces/A9502014,2009,Percent_Student_White_AsAFractionOf_Count_Student,72.73,100,dcs:Percent +nces/A9502015,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/A9502589,2009,Percent_Student_White_AsAFractionOf_Count_Student,66.67,100,dcs:Percent +nces/A9502733,2009,Percent_Student_White_AsAFractionOf_Count_Student,69.23,100,dcs:Percent +nces/A9503341,2009,Percent_Student_White_AsAFractionOf_Count_Student,81.94,100,dcs:Percent +nces/A9503430,2009,Percent_Student_White_AsAFractionOf_Count_Student,46.09,100,dcs:Percent +nces/A9503777,2009,Percent_Student_White_AsAFractionOf_Count_Student,75.0,100,dcs:Percent +nces/A9700074,2009,Percent_Student_White_AsAFractionOf_Count_Student,35.17,100,dcs:Percent +nces/A9702631,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9702795,2009,Percent_Student_White_AsAFractionOf_Count_Student,22.67,100,dcs:Percent +nces/A9703331,2009,Percent_Student_White_AsAFractionOf_Count_Student,93.01,100,dcs:Percent +nces/A9705123,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9705126,2009,Percent_Student_White_AsAFractionOf_Count_Student,93.33,100,dcs:Percent +nces/A9705218,2009,Percent_Student_White_AsAFractionOf_Count_Student,87.5,100,dcs:Percent +nces/A9705232,2009,Percent_Student_White_AsAFractionOf_Count_Student,27.78,100,dcs:Percent +nces/A9706318,2009,Percent_Student_White_AsAFractionOf_Count_Student,84.21,100,dcs:Percent +nces/A9707442,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.91,100,dcs:Percent +nces/A9707907,2009,Percent_Student_White_AsAFractionOf_Count_Student,75.0,100,dcs:Percent +nces/A9708049,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9708050,2009,Percent_Student_White_AsAFractionOf_Count_Student,12.5,100,dcs:Percent +nces/A9708052,2009,Percent_Student_White_AsAFractionOf_Count_Student,10.73,100,dcs:Percent +nces/A9708053,2009,Percent_Student_White_AsAFractionOf_Count_Student,55.56,100,dcs:Percent +nces/A9900904,2009,Percent_Student_White_AsAFractionOf_Count_Student,83.33,100,dcs:Percent +nces/A9901553,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.71,100,dcs:Percent +nces/A9902871,2009,Percent_Student_White_AsAFractionOf_Count_Student,90.91,100,dcs:Percent +nces/A9903306,2009,Percent_Student_White_AsAFractionOf_Count_Student,70.0,100,dcs:Percent +nces/A9903610,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9904455,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/A9904469,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/AA000003,2009,Percent_Student_White_AsAFractionOf_Count_Student,50.0,100,dcs:Percent +nces/AA000007,2009,Percent_Student_White_AsAFractionOf_Count_Student,97.22,100,dcs:Percent +nces/AA000008,2009,Percent_Student_White_AsAFractionOf_Count_Student,66.28,100,dcs:Percent +nces/AA000010,2009,Percent_Student_White_AsAFractionOf_Count_Student,15.91,100,dcs:Percent +nces/AA000011,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/AA001609,2009,Percent_Student_White_AsAFractionOf_Count_Student,95.81,100,dcs:Percent +nces/BB000456,2009,Percent_Student_White_AsAFractionOf_Count_Student,87.5,100,dcs:Percent +nces/BB020971,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB021012,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB061076,2009,Percent_Student_White_AsAFractionOf_Count_Student,82.42,100,dcs:Percent +nces/BB080157,2009,Percent_Student_White_AsAFractionOf_Count_Student,66.67,100,dcs:Percent +nces/BB100068,2009,Percent_Student_White_AsAFractionOf_Count_Student,28.57,100,dcs:Percent +nces/BB100187,2009,Percent_Student_White_AsAFractionOf_Count_Student,37.5,100,dcs:Percent +nces/BB100383,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB101572,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB911554,2009,Percent_Student_White_AsAFractionOf_Count_Student,58.33,100,dcs:Percent +nces/BB942865,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943172,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB943634,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.57,100,dcs:Percent +nces/BB945908,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/BB964072,2009,Percent_Student_White_AsAFractionOf_Count_Student,5.45,100,dcs:Percent +nces/BB964100,2009,Percent_Student_White_AsAFractionOf_Count_Student,60.0,100,dcs:Percent +nces/BB980189,2009,Percent_Student_White_AsAFractionOf_Count_Student,17.24,100,dcs:Percent +nces/K9300079,2009,Percent_Student_White_AsAFractionOf_Count_Student,70.0,100,dcs:Percent +nces/K9301240,2009,Percent_Student_White_AsAFractionOf_Count_Student,0.0,100,dcs:Percent +nces/K9303866,2009,Percent_Student_White_AsAFractionOf_Count_Student,18.18,100,dcs:Percent +nces/K9304728,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/K9305227,2009,Percent_Student_White_AsAFractionOf_Count_Student,20.0,100,dcs:Percent +nces/K9305325,2009,Percent_Student_White_AsAFractionOf_Count_Student,100.0,100,dcs:Percent +nces/K9305530,2009,Percent_Student_White_AsAFractionOf_Count_Student,60.0,100,dcs:Percent +nces/K9305911,2009,Percent_Student_White_AsAFractionOf_Count_Student,10.0,100,dcs:Percent +nces/K9500531,2009,Percent_Student_White_AsAFractionOf_Count_Student,82.5,100,dcs:Percent +nces/K9500748,2009,Percent_Student_White_AsAFractionOf_Count_Student,84.0,100,dcs:Percent +nces/Y2162569,2009,Percent_Student_White_AsAFractionOf_Count_Student,85.5,100,dcs:Percent +nces/00001026,2009,Count_Student_PreKindergarten,12.0,, +nces/00081272,2009,Count_Student_PreKindergarten,125.0,, +nces/00094237,2009,Count_Student_PreKindergarten,55.0,, +nces/00425908,2009,Count_Student_PreKindergarten,97.0,, +nces/00517072,2009,Count_Student_PreKindergarten,34.0,, +nces/00928796,2009,Count_Student_PreKindergarten,16.0,, +nces/01195835,2009,Count_Student_PreKindergarten,109.0,, +nces/01328801,2009,Count_Student_PreKindergarten,51.0,, +nces/01328969,2009,Count_Student_PreKindergarten,33.0,, +nces/01898328,2009,Count_Student_PreKindergarten,12.0,, +nces/01906396,2009,Count_Student_PreKindergarten,25.0,, +nces/01933863,2009,Count_Student_PreKindergarten,6.0,, +nces/02039659,2009,Count_Student_PreKindergarten,17.0,, +nces/02043767,2009,Count_Student_PreKindergarten,3.0,, +nces/02058401,2009,Count_Student_PreKindergarten,9.0,, +nces/02161237,2009,Count_Student_PreKindergarten,41.0,, +nces/A0101705,2009,Count_Student_PreKindergarten,35.0,, +nces/A0102854,2009,Count_Student_PreKindergarten,44.0,, +nces/A0102857,2009,Count_Student_PreKindergarten,15.0,, +nces/A0103186,2009,Count_Student_PreKindergarten,50.0,, +nces/A0103294,2009,Count_Student_PreKindergarten,110.0,, +nces/A0105209,2009,Count_Student_PreKindergarten,20.0,, +nces/A0106240,2009,Count_Student_PreKindergarten,46.0,, +nces/A0106286,2009,Count_Student_PreKindergarten,35.0,, +nces/A0106293,2009,Count_Student_PreKindergarten,6.0,, +nces/A0106295,2009,Count_Student_PreKindergarten,20.0,, +nces/A0106296,2009,Count_Student_PreKindergarten,12.0,, +nces/A0106324,2009,Count_Student_PreKindergarten,2.0,, +nces/A0107740,2009,Count_Student_PreKindergarten,20.0,, +nces/A0108235,2009,Count_Student_PreKindergarten,80.0,, +nces/A0108720,2009,Count_Student_PreKindergarten,8.0,, +nces/A0108771,2009,Count_Student_PreKindergarten,42.0,, +nces/A0109638,2009,Count_Student_PreKindergarten,52.0,, +nces/A0300103,2009,Count_Student_PreKindergarten,70.0,, +nces/A0303197,2009,Count_Student_PreKindergarten,5.0,, +nces/A0307071,2009,Count_Student_PreKindergarten,231.0,, +nces/A0307448,2009,Count_Student_PreKindergarten,49.0,, +nces/A0307668,2009,Count_Student_PreKindergarten,9.0,, +nces/A0307925,2009,Count_Student_PreKindergarten,8.0,, +nces/A0500120,2009,Count_Student_PreKindergarten,275.0,, +nces/A0503198,2009,Count_Student_PreKindergarten,7.0,, +nces/A0507124,2009,Count_Student_PreKindergarten,45.0,, +nces/A0507315,2009,Count_Student_PreKindergarten,49.0,, +nces/A0507700,2009,Count_Student_PreKindergarten,51.0,, +nces/A0700419,2009,Count_Student_PreKindergarten,4.0,, +nces/A0700686,2009,Count_Student_PreKindergarten,20.0,, +nces/A0700925,2009,Count_Student_PreKindergarten,18.0,, +nces/A0701576,2009,Count_Student_PreKindergarten,29.0,, +nces/A0740052,2009,Count_Student_PreKindergarten,2.0,, +nces/A0770215,2009,Count_Student_PreKindergarten,45.0,, +nces/A0770225,2009,Count_Student_PreKindergarten,30.0,, +nces/A0771128,2009,Count_Student_PreKindergarten,48.0,, +nces/A0771471,2009,Count_Student_PreKindergarten,36.0,, +nces/A0771477,2009,Count_Student_PreKindergarten,40.0,, +nces/A0771713,2009,Count_Student_PreKindergarten,120.0,, +nces/A0790077,2009,Count_Student_PreKindergarten,39.0,, +nces/A0900756,2009,Count_Student_PreKindergarten,47.0,, +nces/A0900759,2009,Count_Student_PreKindergarten,94.0,, +nces/A0900761,2009,Count_Student_PreKindergarten,27.0,, +nces/A0902446,2009,Count_Student_PreKindergarten,31.0,, +nces/A0902448,2009,Count_Student_PreKindergarten,4.0,, +nces/A0902553,2009,Count_Student_PreKindergarten,17.0,, +nces/A0902693,2009,Count_Student_PreKindergarten,31.0,, +nces/A0902694,2009,Count_Student_PreKindergarten,15.0,, +nces/A0902783,2009,Count_Student_PreKindergarten,11.0,, +nces/A0903479,2009,Count_Student_PreKindergarten,4.0,, +nces/A0970714,2009,Count_Student_PreKindergarten,15.0,, +nces/A0970996,2009,Count_Student_PreKindergarten,16.0,, +nces/A0971821,2009,Count_Student_PreKindergarten,18.0,, +nces/A0990097,2009,Count_Student_PreKindergarten,60.0,, +nces/A9100483,2009,Count_Student_PreKindergarten,63.0,, +nces/A9101510,2009,Count_Student_PreKindergarten,55.0,, +nces/A9101662,2009,Count_Student_PreKindergarten,83.0,, +nces/A9103126,2009,Count_Student_PreKindergarten,34.0,, +nces/A9104267,2009,Count_Student_PreKindergarten,3.0,, +nces/A9104268,2009,Count_Student_PreKindergarten,4.0,, +nces/A9104404,2009,Count_Student_PreKindergarten,74.0,, +nces/A9104507,2009,Count_Student_PreKindergarten,7.0,, +nces/A9106874,2009,Count_Student_PreKindergarten,2.0,, +nces/A9302116,2009,Count_Student_PreKindergarten,40.0,, +nces/A9302732,2009,Count_Student_PreKindergarten,24.0,, +nces/A9501078,2009,Count_Student_PreKindergarten,8.0,, +nces/A9501433,2009,Count_Student_PreKindergarten,5.0,, +nces/A9502014,2009,Count_Student_PreKindergarten,49.0,, +nces/A9502015,2009,Count_Student_PreKindergarten,32.0,, +nces/A9502589,2009,Count_Student_PreKindergarten,20.0,, +nces/A9502733,2009,Count_Student_PreKindergarten,46.0,, +nces/A9702631,2009,Count_Student_PreKindergarten,47.0,, +nces/A9703331,2009,Count_Student_PreKindergarten,21.0,, +nces/A9705123,2009,Count_Student_PreKindergarten,18.0,, +nces/A9705126,2009,Count_Student_PreKindergarten,52.0,, +nces/A9705218,2009,Count_Student_PreKindergarten,49.0,, +nces/A9705232,2009,Count_Student_PreKindergarten,75.0,, +nces/A9706318,2009,Count_Student_PreKindergarten,42.0,, +nces/A9707442,2009,Count_Student_PreKindergarten,73.0,, +nces/A9707907,2009,Count_Student_PreKindergarten,5.0,, +nces/A9708049,2009,Count_Student_PreKindergarten,18.0,, +nces/A9708050,2009,Count_Student_PreKindergarten,11.0,, +nces/A9708052,2009,Count_Student_PreKindergarten,17.0,, +nces/A9708053,2009,Count_Student_PreKindergarten,65.0,, +nces/A9900904,2009,Count_Student_PreKindergarten,24.0,, +nces/A9901553,2009,Count_Student_PreKindergarten,75.0,, +nces/A9902871,2009,Count_Student_PreKindergarten,21.0,, +nces/A9903610,2009,Count_Student_PreKindergarten,10.0,, +nces/AA000003,2009,Count_Student_PreKindergarten,50.0,, +nces/AA000008,2009,Count_Student_PreKindergarten,60.0,, +nces/AA000010,2009,Count_Student_PreKindergarten,40.0,, +nces/AA000011,2009,Count_Student_PreKindergarten,40.0,, +nces/AA001609,2009,Count_Student_PreKindergarten,84.0,, +nces/BB000456,2009,Count_Student_PreKindergarten,60.0,, +nces/BB020971,2009,Count_Student_PreKindergarten,12.0,, +nces/BB021012,2009,Count_Student_PreKindergarten,11.0,, +nces/BB061076,2009,Count_Student_PreKindergarten,53.0,, +nces/BB080442,2009,Count_Student_PreKindergarten,95.0,, +nces/BB100187,2009,Count_Student_PreKindergarten,6.0,, +nces/BB100383,2009,Count_Student_PreKindergarten,22.0,, +nces/BB101572,2009,Count_Student_PreKindergarten,36.0,, +nces/BB942865,2009,Count_Student_PreKindergarten,40.0,, +nces/BB943172,2009,Count_Student_PreKindergarten,25.0,, +nces/BB943634,2009,Count_Student_PreKindergarten,40.0,, +nces/BB945908,2009,Count_Student_PreKindergarten,46.0,, +nces/BB964072,2009,Count_Student_PreKindergarten,120.0,, +nces/BB964100,2009,Count_Student_PreKindergarten,135.0,, +nces/K9300079,2009,Count_Student_PreKindergarten,7.0,, +nces/K9301240,2009,Count_Student_PreKindergarten,38.0,, +nces/K9303866,2009,Count_Student_PreKindergarten,77.0,, +nces/K9303952,2009,Count_Student_PreKindergarten,175.0,, +nces/K9304728,2009,Count_Student_PreKindergarten,64.0,, +nces/K9305227,2009,Count_Student_PreKindergarten,18.0,, +nces/K9305325,2009,Count_Student_PreKindergarten,15.0,, +nces/K9305466,2009,Count_Student_PreKindergarten,17.0,, +nces/K9305530,2009,Count_Student_PreKindergarten,18.0,, +nces/K9305911,2009,Count_Student_PreKindergarten,13.0,, +nces/K9500531,2009,Count_Student_PreKindergarten,13.0,, +nces/K9500748,2009,Count_Student_PreKindergarten,20.0,, +nces/Y2162569,2009,Count_Student_PreKindergarten,33.0,, +nces/00001026,2009,Count_Student_PreKindergartenAndKindergarten,27.0,, +nces/00081272,2009,Count_Student_PreKindergartenAndKindergarten,160.0,, +nces/00094237,2009,Count_Student_PreKindergartenAndKindergarten,85.0,, +nces/00425908,2009,Count_Student_PreKindergartenAndKindergarten,127.0,, +nces/00517072,2009,Count_Student_PreKindergartenAndKindergarten,43.0,, +nces/00928796,2009,Count_Student_PreKindergartenAndKindergarten,32.0,, +nces/01195835,2009,Count_Student_PreKindergartenAndKindergarten,138.0,, +nces/01328801,2009,Count_Student_PreKindergartenAndKindergarten,71.0,, +nces/01328969,2009,Count_Student_PreKindergartenAndKindergarten,48.0,, +nces/01898328,2009,Count_Student_PreKindergartenAndKindergarten,26.0,, +nces/01906396,2009,Count_Student_PreKindergartenAndKindergarten,53.0,, +nces/01933863,2009,Count_Student_PreKindergartenAndKindergarten,19.0,, +nces/02007955,2009,Count_Student_PreKindergartenAndKindergarten,1.0,, +nces/02039659,2009,Count_Student_PreKindergartenAndKindergarten,25.0,, +nces/02043767,2009,Count_Student_PreKindergartenAndKindergarten,3.0,, +nces/02058401,2009,Count_Student_PreKindergartenAndKindergarten,21.0,, +nces/02068045,2009,Count_Student_PreKindergartenAndKindergarten,3.0,, +nces/02161237,2009,Count_Student_PreKindergartenAndKindergarten,59.0,, +nces/A0101705,2009,Count_Student_PreKindergartenAndKindergarten,43.0,, +nces/A0102854,2009,Count_Student_PreKindergartenAndKindergarten,48.0,, +nces/A0102857,2009,Count_Student_PreKindergartenAndKindergarten,20.0,, +nces/A0103186,2009,Count_Student_PreKindergartenAndKindergarten,70.0,, +nces/A0103294,2009,Count_Student_PreKindergartenAndKindergarten,125.0,, +nces/A0105209,2009,Count_Student_PreKindergartenAndKindergarten,31.0,, +nces/A0106240,2009,Count_Student_PreKindergartenAndKindergarten,57.0,, +nces/A0106286,2009,Count_Student_PreKindergartenAndKindergarten,45.0,, +nces/A0106293,2009,Count_Student_PreKindergartenAndKindergarten,29.0,, +nces/A0106295,2009,Count_Student_PreKindergartenAndKindergarten,25.0,, +nces/A0106296,2009,Count_Student_PreKindergartenAndKindergarten,18.0,, +nces/A0106324,2009,Count_Student_PreKindergartenAndKindergarten,3.0,, +nces/A0107740,2009,Count_Student_PreKindergartenAndKindergarten,26.0,, +nces/A0108235,2009,Count_Student_PreKindergartenAndKindergarten,95.0,, +nces/A0108720,2009,Count_Student_PreKindergartenAndKindergarten,11.0,, +nces/A0108771,2009,Count_Student_PreKindergartenAndKindergarten,54.0,, +nces/A0109638,2009,Count_Student_PreKindergartenAndKindergarten,67.0,, +nces/A0300103,2009,Count_Student_PreKindergartenAndKindergarten,81.0,, +nces/A0300748,2009,Count_Student_PreKindergartenAndKindergarten,23.0,, +nces/A0303197,2009,Count_Student_PreKindergartenAndKindergarten,11.0,, +nces/A0307071,2009,Count_Student_PreKindergartenAndKindergarten,259.0,, +nces/A0307448,2009,Count_Student_PreKindergartenAndKindergarten,55.0,, +nces/A0307668,2009,Count_Student_PreKindergartenAndKindergarten,23.0,, +nces/A0307925,2009,Count_Student_PreKindergartenAndKindergarten,18.0,, +nces/A0500120,2009,Count_Student_PreKindergartenAndKindergarten,300.0,, +nces/A0502391,2009,Count_Student_PreKindergartenAndKindergarten,18.0,, +nces/A0503198,2009,Count_Student_PreKindergartenAndKindergarten,15.0,, +nces/A0503272,2009,Count_Student_PreKindergartenAndKindergarten,1.0,, +nces/A0507124,2009,Count_Student_PreKindergartenAndKindergarten,90.0,, +nces/A0507274,2009,Count_Student_PreKindergartenAndKindergarten,43.0,, +nces/A0507315,2009,Count_Student_PreKindergartenAndKindergarten,74.0,, +nces/A0507700,2009,Count_Student_PreKindergartenAndKindergarten,57.0,, +nces/A0700419,2009,Count_Student_PreKindergartenAndKindergarten,8.0,, +nces/A0700686,2009,Count_Student_PreKindergartenAndKindergarten,43.0,, +nces/A0700925,2009,Count_Student_PreKindergartenAndKindergarten,26.0,, +nces/A0701268,2009,Count_Student_PreKindergartenAndKindergarten,9.0,, +nces/A0701576,2009,Count_Student_PreKindergartenAndKindergarten,40.0,, +nces/A0740052,2009,Count_Student_PreKindergartenAndKindergarten,6.0,, +nces/A0770215,2009,Count_Student_PreKindergartenAndKindergarten,65.0,, +nces/A0770225,2009,Count_Student_PreKindergartenAndKindergarten,36.0,, +nces/A0771128,2009,Count_Student_PreKindergartenAndKindergarten,62.0,, +nces/A0771471,2009,Count_Student_PreKindergartenAndKindergarten,39.0,, +nces/A0771477,2009,Count_Student_PreKindergartenAndKindergarten,60.0,, +nces/A0771713,2009,Count_Student_PreKindergartenAndKindergarten,188.0,, +nces/A0790077,2009,Count_Student_PreKindergartenAndKindergarten,42.0,, +nces/A0900756,2009,Count_Student_PreKindergartenAndKindergarten,53.0,, +nces/A0900758,2009,Count_Student_PreKindergartenAndKindergarten,5.0,, +nces/A0900759,2009,Count_Student_PreKindergartenAndKindergarten,124.0,, +nces/A0900761,2009,Count_Student_PreKindergartenAndKindergarten,70.0,, +nces/A0902047,2009,Count_Student_PreKindergartenAndKindergarten,2.0,, +nces/A0902446,2009,Count_Student_PreKindergartenAndKindergarten,36.0,, +nces/A0902448,2009,Count_Student_PreKindergartenAndKindergarten,9.0,, +nces/A0902553,2009,Count_Student_PreKindergartenAndKindergarten,24.0,, +nces/A0902693,2009,Count_Student_PreKindergartenAndKindergarten,56.0,, +nces/A0902694,2009,Count_Student_PreKindergartenAndKindergarten,16.0,, +nces/A0902783,2009,Count_Student_PreKindergartenAndKindergarten,22.0,, +nces/A0903479,2009,Count_Student_PreKindergartenAndKindergarten,6.0,, +nces/A0970714,2009,Count_Student_PreKindergartenAndKindergarten,25.0,, +nces/A0970996,2009,Count_Student_PreKindergartenAndKindergarten,22.0,, +nces/A0971147,2009,Count_Student_PreKindergartenAndKindergarten,4.0,, +nces/A0971821,2009,Count_Student_PreKindergartenAndKindergarten,20.0,, +nces/A0990097,2009,Count_Student_PreKindergartenAndKindergarten,65.0,, +nces/A9100483,2009,Count_Student_PreKindergartenAndKindergarten,78.0,, +nces/A9101510,2009,Count_Student_PreKindergartenAndKindergarten,87.0,, +nces/A9101662,2009,Count_Student_PreKindergartenAndKindergarten,112.0,, +nces/A9103126,2009,Count_Student_PreKindergartenAndKindergarten,35.0,, +nces/A9104267,2009,Count_Student_PreKindergartenAndKindergarten,5.0,, +nces/A9104268,2009,Count_Student_PreKindergartenAndKindergarten,10.0,, +nces/A9104404,2009,Count_Student_PreKindergartenAndKindergarten,103.0,, +nces/A9104507,2009,Count_Student_PreKindergartenAndKindergarten,7.0,, +nces/A9106874,2009,Count_Student_PreKindergartenAndKindergarten,5.0,, +nces/A9302116,2009,Count_Student_PreKindergartenAndKindergarten,48.0,, +nces/A9302732,2009,Count_Student_PreKindergartenAndKindergarten,43.0,, +nces/A9501078,2009,Count_Student_PreKindergartenAndKindergarten,16.0,, +nces/A9501433,2009,Count_Student_PreKindergartenAndKindergarten,8.0,, +nces/A9502014,2009,Count_Student_PreKindergartenAndKindergarten,60.0,, +nces/A9502015,2009,Count_Student_PreKindergartenAndKindergarten,38.0,, +nces/A9502589,2009,Count_Student_PreKindergartenAndKindergarten,23.0,, +nces/A9502733,2009,Count_Student_PreKindergartenAndKindergarten,59.0,, +nces/A9503341,2009,Count_Student_PreKindergartenAndKindergarten,19.0,, +nces/A9700074,2009,Count_Student_PreKindergartenAndKindergarten,24.0,, +nces/A9702631,2009,Count_Student_PreKindergartenAndKindergarten,63.0,, +nces/A9703331,2009,Count_Student_PreKindergartenAndKindergarten,34.0,, +nces/A9705123,2009,Count_Student_PreKindergartenAndKindergarten,21.0,, +nces/A9705126,2009,Count_Student_PreKindergartenAndKindergarten,67.0,, +nces/A9705218,2009,Count_Student_PreKindergartenAndKindergarten,54.0,, +nces/A9705232,2009,Count_Student_PreKindergartenAndKindergarten,85.0,, +nces/A9706318,2009,Count_Student_PreKindergartenAndKindergarten,54.0,, +nces/A9707442,2009,Count_Student_PreKindergartenAndKindergarten,81.0,, +nces/A9707907,2009,Count_Student_PreKindergartenAndKindergarten,9.0,, +nces/A9708049,2009,Count_Student_PreKindergartenAndKindergarten,27.0,, +nces/A9708050,2009,Count_Student_PreKindergartenAndKindergarten,19.0,, +nces/A9708052,2009,Count_Student_PreKindergartenAndKindergarten,124.0,, +nces/A9708053,2009,Count_Student_PreKindergartenAndKindergarten,83.0,, +nces/A9900904,2009,Count_Student_PreKindergartenAndKindergarten,30.0,, +nces/A9901553,2009,Count_Student_PreKindergartenAndKindergarten,96.0,, +nces/A9902871,2009,Count_Student_PreKindergartenAndKindergarten,32.0,, +nces/A9903610,2009,Count_Student_PreKindergartenAndKindergarten,20.0,, +nces/A9904469,2009,Count_Student_PreKindergartenAndKindergarten,4.0,, +nces/AA000003,2009,Count_Student_PreKindergartenAndKindergarten,60.0,, +nces/AA000007,2009,Count_Student_PreKindergartenAndKindergarten,2.0,, +nces/AA000008,2009,Count_Student_PreKindergartenAndKindergarten,77.0,, +nces/AA000010,2009,Count_Student_PreKindergartenAndKindergarten,51.0,, +nces/AA000011,2009,Count_Student_PreKindergartenAndKindergarten,44.0,, +nces/AA001609,2009,Count_Student_PreKindergartenAndKindergarten,110.0,, +nces/BB000456,2009,Count_Student_PreKindergartenAndKindergarten,84.0,, +nces/BB020971,2009,Count_Student_PreKindergartenAndKindergarten,17.0,, +nces/BB021012,2009,Count_Student_PreKindergartenAndKindergarten,13.0,, +nces/BB061076,2009,Count_Student_PreKindergartenAndKindergarten,70.0,, +nces/BB080442,2009,Count_Student_PreKindergartenAndKindergarten,120.0,, +nces/BB100187,2009,Count_Student_PreKindergartenAndKindergarten,14.0,, +nces/BB100383,2009,Count_Student_PreKindergartenAndKindergarten,37.0,, +nces/BB100994,2009,Count_Student_PreKindergartenAndKindergarten,19.0,, +nces/BB101572,2009,Count_Student_PreKindergartenAndKindergarten,51.0,, +nces/BB942865,2009,Count_Student_PreKindergartenAndKindergarten,50.0,, +nces/BB943172,2009,Count_Student_PreKindergartenAndKindergarten,50.0,, +nces/BB943634,2009,Count_Student_PreKindergartenAndKindergarten,65.0,, +nces/BB945908,2009,Count_Student_PreKindergartenAndKindergarten,56.0,, +nces/BB964072,2009,Count_Student_PreKindergartenAndKindergarten,152.0,, +nces/BB964100,2009,Count_Student_PreKindergartenAndKindergarten,150.0,, +nces/K9300079,2009,Count_Student_PreKindergartenAndKindergarten,17.0,, +nces/K9301240,2009,Count_Student_PreKindergartenAndKindergarten,52.0,, +nces/K9303866,2009,Count_Student_PreKindergartenAndKindergarten,88.0,, +nces/K9303952,2009,Count_Student_PreKindergartenAndKindergarten,196.0,, +nces/K9304728,2009,Count_Student_PreKindergartenAndKindergarten,76.0,, +nces/K9305227,2009,Count_Student_PreKindergartenAndKindergarten,28.0,, +nces/K9305325,2009,Count_Student_PreKindergartenAndKindergarten,21.0,, +nces/K9305466,2009,Count_Student_PreKindergartenAndKindergarten,19.0,, +nces/K9305530,2009,Count_Student_PreKindergartenAndKindergarten,28.0,, +nces/K9305911,2009,Count_Student_PreKindergartenAndKindergarten,23.0,, +nces/K9500531,2009,Count_Student_PreKindergartenAndKindergarten,26.0,, +nces/K9500748,2009,Count_Student_PreKindergartenAndKindergarten,29.0,, +nces/Y2162569,2009,Count_Student_PreKindergartenAndKindergarten,70.0,, +nces/00001026,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.46,, +nces/00081272,2009,Percent_Student_AsAFractionOf_Count_Teacher,17.07,, +nces/00094237,2009,Percent_Student_AsAFractionOf_Count_Teacher,18.0,, +nces/00259858,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/00425908,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.03,, +nces/00517072,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.43,, +nces/00699979,2009,Percent_Student_AsAFractionOf_Count_Teacher,12.63,, +nces/00752221,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.64,, +nces/00928796,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.78,, +nces/01195835,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.66,, +nces/01283096,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.5,, +nces/01328801,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.06,, +nces/01328969,2009,Percent_Student_AsAFractionOf_Count_Teacher,13.29,, +nces/01898328,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.0,, +nces/01906396,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.84,, +nces/01907265,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.71,, +nces/01933863,2009,Percent_Student_AsAFractionOf_Count_Teacher,12.68,, +nces/02007955,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.67,, +nces/02039659,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.83,, +nces/02043767,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.6,, +nces/02058401,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.58,, +nces/02067846,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/02068045,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.69,, +nces/02161237,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.44,, +nces/A0100441,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.5,, +nces/A0101705,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.42,, +nces/A0102854,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.25,, +nces/A0102857,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.84,, +nces/A0103186,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A0103294,2009,Percent_Student_AsAFractionOf_Count_Teacher,15.0,, +nces/A0104077,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.18,, +nces/A0105209,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.03,, +nces/A0106240,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.86,, +nces/A0106286,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A0106293,2009,Percent_Student_AsAFractionOf_Count_Teacher,23.0,, +nces/A0106295,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.5,, +nces/A0106296,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.33,, +nces/A0106324,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.0,, +nces/A0107740,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.75,, +nces/A0108235,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.5,, +nces/A0108720,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.5,, +nces/A0108771,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.0,, +nces/A0108773,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.0,, +nces/A0109638,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.5,, +nces/A0300103,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.0,, +nces/A0300737,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.26,, +nces/A0300748,2009,Percent_Student_AsAFractionOf_Count_Teacher,12.62,, +nces/A0301888,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.62,, +nces/A0303162,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.8,, +nces/A0303197,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.59,, +nces/A0304042,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.31,, +nces/A0307071,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.33,, +nces/A0307448,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.69,, +nces/A0307668,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.0,, +nces/A0307925,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.31,, +nces/A0500119,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.25,, +nces/A0500120,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.33,, +nces/A0502391,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.16,, +nces/A0503198,2009,Percent_Student_AsAFractionOf_Count_Teacher,12.82,, +nces/A0503272,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.45,, +nces/A0507124,2009,Percent_Student_AsAFractionOf_Count_Teacher,15.0,, +nces/A0507274,2009,Percent_Student_AsAFractionOf_Count_Teacher,22.63,, +nces/A0507700,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.45,, +nces/A0700419,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.0,, +nces/A0700420,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.33,, +nces/A0700686,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/A0700688,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.28,, +nces/A0700925,2009,Percent_Student_AsAFractionOf_Count_Teacher,20.0,, +nces/A0701268,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.66,, +nces/A0701576,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.57,, +nces/A0740052,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.33,, +nces/A0770215,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A0770225,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/A0771128,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.0,, +nces/A0771471,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.58,, +nces/A0771477,2009,Percent_Student_AsAFractionOf_Count_Teacher,22.22,, +nces/A0771713,2009,Percent_Student_AsAFractionOf_Count_Teacher,34.0,, +nces/A0790077,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.5,, +nces/A0900001,2009,Percent_Student_AsAFractionOf_Count_Teacher,13.45,, +nces/A0900179,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.0,, +nces/A0900756,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/A0900759,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.33,, +nces/A0900761,2009,Percent_Student_AsAFractionOf_Count_Teacher,43.0,, +nces/A0901570,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.47,, +nces/A0902047,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.16,, +nces/A0902285,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.67,, +nces/A0902446,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.79,, +nces/A0902447,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.0,, +nces/A0902448,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.6,, +nces/A0902450,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.95,, +nces/A0902553,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.36,, +nces/A0902693,2009,Percent_Student_AsAFractionOf_Count_Teacher,25.0,, +nces/A0902694,2009,Percent_Student_AsAFractionOf_Count_Teacher,0.71,, +nces/A0902783,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.0,, +nces/A0902806,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.14,, +nces/A0902809,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.25,, +nces/A0903406,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.23,, +nces/A0903479,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.09,, +nces/A0970714,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A0970996,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.62,, +nces/A0971147,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.64,, +nces/A0971821,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.0,, +nces/A0990097,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.92,, +nces/A9100483,2009,Percent_Student_AsAFractionOf_Count_Teacher,20.0,, +nces/A9101510,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.41,, +nces/A9101662,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.5,, +nces/A9103126,2009,Percent_Student_AsAFractionOf_Count_Teacher,0.2,, +nces/A9104267,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.1,, +nces/A9104268,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.32,, +nces/A9104404,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.93,, +nces/A9104507,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.92,, +nces/A9104665,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.72,, +nces/A9106874,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.0,, +nces/A9302116,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A9302732,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.95,, +nces/A9501078,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.21,, +nces/A9501079,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.36,, +nces/A9501433,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.0,, +nces/A9502014,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.75,, +nces/A9502015,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.4,, +nces/A9502589,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.2,, +nces/A9502733,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.25,, +nces/A9503341,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.25,, +nces/A9503430,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.19,, +nces/A9503777,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.67,, +nces/A9700074,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.53,, +nces/A9702631,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.55,, +nces/A9702795,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.21,, +nces/A9703331,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.61,, +nces/A9705123,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.0,, +nces/A9705126,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.13,, +nces/A9705218,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.0,, +nces/A9705232,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.0,, +nces/A9706318,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.8,, +nces/A9707442,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.79,, +nces/A9707907,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.0,, +nces/A9708049,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.0,, +nces/A9708050,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.0,, +nces/A9708052,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.06,, +nces/A9708053,2009,Percent_Student_AsAFractionOf_Count_Teacher,18.0,, +nces/A9900904,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.67,, +nces/A9901553,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.4,, +nces/A9902871,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.5,, +nces/A9903306,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.26,, +nces/A9903610,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/A9904455,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.55,, +nces/A9904469,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.33,, +nces/AA000003,2009,Percent_Student_AsAFractionOf_Count_Teacher,2.0,, +nces/AA000007,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.45,, +nces/AA000008,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.62,, +nces/AA000010,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.94,, +nces/AA000011,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.67,, +nces/AA001609,2009,Percent_Student_AsAFractionOf_Count_Teacher,16.06,, +nces/BB000456,2009,Percent_Student_AsAFractionOf_Count_Teacher,17.14,, +nces/BB020971,2009,Percent_Student_AsAFractionOf_Count_Teacher,5.0,, +nces/BB021012,2009,Percent_Student_AsAFractionOf_Count_Teacher,0.67,, +nces/BB061076,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.16,, +nces/BB080157,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/BB100068,2009,Percent_Student_AsAFractionOf_Count_Teacher,4.67,, +nces/BB100187,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.0,, +nces/BB100383,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.5,, +nces/BB100994,2009,Percent_Student_AsAFractionOf_Count_Teacher,11.18,, +nces/BB101572,2009,Percent_Student_AsAFractionOf_Count_Teacher,7.89,, +nces/BB911554,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.82,, +nces/BB942865,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.44,, +nces/BB943172,2009,Percent_Student_AsAFractionOf_Count_Teacher,25.0,, +nces/BB943634,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.22,, +nces/BB945908,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/BB964072,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.17,, +nces/BB964100,2009,Percent_Student_AsAFractionOf_Count_Teacher,15.0,, +nces/BB980189,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.06,, +nces/K9300079,2009,Percent_Student_AsAFractionOf_Count_Teacher,9.09,, +nces/K9301240,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.0,, +nces/K9303866,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.67,, +nces/K9304728,2009,Percent_Student_AsAFractionOf_Count_Teacher,1.04,, +nces/K9305227,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/K9305325,2009,Percent_Student_AsAFractionOf_Count_Teacher,6.0,, +nces/K9305466,2009,Percent_Student_AsAFractionOf_Count_Teacher,3.33,, +nces/K9305530,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/K9305911,2009,Percent_Student_AsAFractionOf_Count_Teacher,10.0,, +nces/K9500531,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.08,, +nces/K9500748,2009,Percent_Student_AsAFractionOf_Count_Teacher,8.62,, +nces/Y2162569,2009,Percent_Student_AsAFractionOf_Count_Teacher,14.18,, +nces/00001026,2009,Count_Student,169.0,, +nces/00081272,2009,Count_Student,364.0,, +nces/00094237,2009,Count_Student,91.0,, +nces/00259858,2009,Count_Student,12.0,, +nces/00425908,2009,Count_Student,202.0,, +nces/00517072,2009,Count_Student,393.0,, +nces/00699979,2009,Count_Student,764.0,, +nces/00752221,2009,Count_Student,82.0,, +nces/00928796,2009,Count_Student,149.0,, +nces/01195835,2009,Count_Student,702.0,, +nces/01283096,2009,Count_Student,34.0,, +nces/01328801,2009,Count_Student,323.0,, +nces/01328969,2009,Count_Student,126.0,, +nces/01898328,2009,Count_Student,26.0,, +nces/01906396,2009,Count_Student,232.0,, +nces/01907265,2009,Count_Student,234.0,, +nces/01933863,2009,Count_Student,257.0,, +nces/02007955,2009,Count_Student,26.0,, +nces/02039659,2009,Count_Student,53.0,, +nces/02043767,2009,Count_Student,60.0,, +nces/02058401,2009,Count_Student,67.0,, +nces/02067846,2009,Count_Student,6.0,, +nces/02068045,2009,Count_Student,33.0,, +nces/02161237,2009,Count_Student,184.0,, +nces/A0100441,2009,Count_Student,17.0,, +nces/A0101705,2009,Count_Student,54.0,, +nces/A0102854,2009,Count_Student,62.0,, +nces/A0102857,2009,Count_Student,28.0,, +nces/A0103186,2009,Count_Student,70.0,, +nces/A0103294,2009,Count_Student,125.0,, +nces/A0104077,2009,Count_Student,57.0,, +nces/A0105209,2009,Count_Student,46.0,, +nces/A0106240,2009,Count_Student,57.0,, +nces/A0106286,2009,Count_Student,45.0,, +nces/A0106293,2009,Count_Student,29.0,, +nces/A0106295,2009,Count_Student,25.0,, +nces/A0106296,2009,Count_Student,18.0,, +nces/A0106324,2009,Count_Student,3.0,, +nces/A0107740,2009,Count_Student,27.0,, +nces/A0108235,2009,Count_Student,95.0,, +nces/A0108720,2009,Count_Student,25.0,, +nces/A0108771,2009,Count_Student,54.0,, +nces/A0108773,2009,Count_Student,44.0,, +nces/A0109638,2009,Count_Student,73.0,, +nces/A0300103,2009,Count_Student,81.0,, +nces/A0300737,2009,Count_Student,41.0,, +nces/A0300748,2009,Count_Student,130.0,, +nces/A0301888,2009,Count_Student,25.0,, +nces/A0303162,2009,Count_Student,54.0,, +nces/A0303197,2009,Count_Student,34.0,, +nces/A0304042,2009,Count_Student,49.0,, +nces/A0307071,2009,Count_Student,287.0,, +nces/A0307448,2009,Count_Student,74.0,, +nces/A0307668,2009,Count_Student,27.0,, +nces/A0307925,2009,Count_Student,33.0,, +nces/A0500119,2009,Count_Student,29.0,, +nces/A0500120,2009,Count_Student,300.0,, +nces/A0502391,2009,Count_Student,116.0,, +nces/A0503198,2009,Count_Student,148.0,, +nces/A0503272,2009,Count_Student,20.0,, +nces/A0507124,2009,Count_Student,90.0,, +nces/A0507274,2009,Count_Student,43.0,, +nces/A0507315,2009,Count_Student,74.0,, +nces/A0507700,2009,Count_Student,57.0,, +nces/A0700419,2009,Count_Student,25.0,, +nces/A0700420,2009,Count_Student,19.0,, +nces/A0700686,2009,Count_Student,83.0,, +nces/A0700688,2009,Count_Student,49.0,, +nces/A0700925,2009,Count_Student,38.0,, +nces/A0701268,2009,Count_Student,108.0,, +nces/A0701576,2009,Count_Student,96.0,, +nces/A0740052,2009,Count_Student,27.0,, +nces/A0770215,2009,Count_Student,65.0,, +nces/A0770225,2009,Count_Student,36.0,, +nces/A0771128,2009,Count_Student,62.0,, +nces/A0771471,2009,Count_Student,39.0,, +nces/A0771477,2009,Count_Student,60.0,, +nces/A0771713,2009,Count_Student,188.0,, +nces/A0790077,2009,Count_Student,42.0,, +nces/A0900001,2009,Count_Student,156.0,, +nces/A0900179,2009,Count_Student,5.0,, +nces/A0900756,2009,Count_Student,53.0,, +nces/A0900758,2009,Count_Student,70.0,, +nces/A0900759,2009,Count_Student,174.0,, +nces/A0900761,2009,Count_Student,70.0,, +nces/A0901570,2009,Count_Student,18.0,, +nces/A0902047,2009,Count_Student,6.0,, +nces/A0902285,2009,Count_Student,92.0,, +nces/A0902446,2009,Count_Student,43.0,, +nces/A0902447,2009,Count_Student,7.0,, +nces/A0902448,2009,Count_Student,46.0,, +nces/A0902450,2009,Count_Student,18.0,, +nces/A0902553,2009,Count_Student,24.0,, +nces/A0902693,2009,Count_Student,56.0,, +nces/A0902694,2009,Count_Student,16.0,, +nces/A0902783,2009,Count_Student,22.0,, +nces/A0902806,2009,Count_Student,58.0,, +nces/A0902809,2009,Count_Student,50.0,, +nces/A0903406,2009,Count_Student,102.0,, +nces/A0903479,2009,Count_Student,14.0,, +nces/A0970714,2009,Count_Student,25.0,, +nces/A0970996,2009,Count_Student,28.0,, +nces/A0971147,2009,Count_Student,4.0,, +nces/A0971821,2009,Count_Student,20.0,, +nces/A0990097,2009,Count_Student,65.0,, +nces/A9100483,2009,Count_Student,83.0,, +nces/A9101510,2009,Count_Student,87.0,, +nces/A9101662,2009,Count_Student,343.0,, +nces/A9103126,2009,Count_Student,35.0,, +nces/A9104267,2009,Count_Student,19.0,, +nces/A9104268,2009,Count_Student,47.0,, +nces/A9104404,2009,Count_Student,356.0,, +nces/A9104507,2009,Count_Student,45.0,, +nces/A9104665,2009,Count_Student,294.0,, +nces/A9106874,2009,Count_Student,32.0,, +nces/A9302116,2009,Count_Student,50.0,, +nces/A9302732,2009,Count_Student,355.0,, +nces/A9501078,2009,Count_Student,57.0,, +nces/A9501079,2009,Count_Student,75.0,, +nces/A9501433,2009,Count_Student,15.0,, +nces/A9502014,2009,Count_Student,60.0,, +nces/A9502015,2009,Count_Student,84.0,, +nces/A9502589,2009,Count_Student,23.0,, +nces/A9502733,2009,Count_Student,59.0,, +nces/A9503341,2009,Count_Student,144.0,, +nces/A9503430,2009,Count_Student,115.0,, +nces/A9503777,2009,Count_Student,40.0,, +nces/A9700074,2009,Count_Student,145.0,, +nces/A9702631,2009,Count_Student,63.0,, +nces/A9702795,2009,Count_Student,75.0,, +nces/A9703331,2009,Count_Student,250.0,, +nces/A9705123,2009,Count_Student,21.0,, +nces/A9705126,2009,Count_Student,67.0,, +nces/A9705218,2009,Count_Student,65.0,, +nces/A9705232,2009,Count_Student,93.0,, +nces/A9706318,2009,Count_Student,61.0,, +nces/A9707442,2009,Count_Student,106.0,, +nces/A9707907,2009,Count_Student,9.0,, +nces/A9708049,2009,Count_Student,27.0,, +nces/A9708050,2009,Count_Student,19.0,, +nces/A9708052,2009,Count_Student,194.0,, +nces/A9708053,2009,Count_Student,83.0,, +nces/A9900904,2009,Count_Student,30.0,, +nces/A9901553,2009,Count_Student,96.0,, +nces/A9902871,2009,Count_Student,32.0,, +nces/A9903306,2009,Count_Student,10.0,, +nces/A9903610,2009,Count_Student,20.0,, +nces/A9904455,2009,Count_Student,11.0,, +nces/A9904469,2009,Count_Student,34.0,, +nces/AA000003,2009,Count_Student,60.0,, +nces/AA000007,2009,Count_Student,36.0,, +nces/AA000008,2009,Count_Student,146.0,, +nces/AA000010,2009,Count_Student,84.0,, +nces/AA000011,2009,Count_Student,44.0,, +nces/AA001609,2009,Count_Student,251.0,, +nces/BB000456,2009,Count_Student,84.0,, +nces/BB020971,2009,Count_Student,17.0,, +nces/BB021012,2009,Count_Student,13.0,, +nces/BB061076,2009,Count_Student,144.0,, +nces/BB080157,2009,Count_Student,12.0,, +nces/BB080442,2009,Count_Student,140.0,, +nces/BB100068,2009,Count_Student,14.0,, +nces/BB100187,2009,Count_Student,14.0,, +nces/BB100383,2009,Count_Student,37.0,, +nces/BB100994,2009,Count_Student,85.0,, +nces/BB101572,2009,Count_Student,51.0,, +nces/BB911554,2009,Count_Student,108.0,, +nces/BB942865,2009,Count_Student,53.0,, +nces/BB943172,2009,Count_Student,50.0,, +nces/BB943634,2009,Count_Student,137.0,, +nces/BB945908,2009,Count_Student,56.0,, +nces/BB964072,2009,Count_Student,175.0,, +nces/BB964100,2009,Count_Student,150.0,, +nces/BB980189,2009,Count_Student,145.0,, +nces/K9300079,2009,Count_Student,17.0,, +nces/K9301240,2009,Count_Student,94.0,, +nces/K9303866,2009,Count_Student,88.0,, +nces/K9303952,2009,Count_Student,196.0,, +nces/K9304728,2009,Count_Student,76.0,, +nces/K9305227,2009,Count_Student,28.0,, +nces/K9305325,2009,Count_Student,21.0,, +nces/K9305466,2009,Count_Student,19.0,, +nces/K9305530,2009,Count_Student,28.0,, +nces/K9305911,2009,Count_Student,23.0,, +nces/K9500531,2009,Count_Student,93.0,, +nces/K9500748,2009,Count_Student,70.0,, +nces/Y2162569,2009,Count_Student,633.0,, +nces/00001026,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/00081272,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/00094237,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/00259858,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/00425908,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/00517072,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/00699979,2009,Count_Student_TwoOrMoreRaces,24.0,, +nces/00752221,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/00928796,2009,Count_Student_TwoOrMoreRaces,6.0,, +nces/01195835,2009,Count_Student_TwoOrMoreRaces,28.0,, +nces/01283096,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/01328801,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/01328969,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/01898328,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/01906396,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/01907265,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/01933863,2009,Count_Student_TwoOrMoreRaces,15.0,, +nces/02007955,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/02039659,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/02043767,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/02058401,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/02067846,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/02068045,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/02161237,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0100441,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0101705,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0102854,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0102857,2009,Count_Student_TwoOrMoreRaces,5.0,, +nces/A0103186,2009,Count_Student_TwoOrMoreRaces,5.0,, +nces/A0103294,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0104077,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A0105209,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0106240,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0106286,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0106295,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0106296,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0106324,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0107740,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0108235,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0108720,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0108771,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0108773,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0109638,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A0300737,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A0300748,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0301888,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0303162,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0303197,2009,Count_Student_TwoOrMoreRaces,4.0,, +nces/A0304042,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0307071,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0307448,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0307668,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0307925,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0500119,2009,Count_Student_TwoOrMoreRaces,4.0,, +nces/A0500120,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0502391,2009,Count_Student_TwoOrMoreRaces,5.0,, +nces/A0503198,2009,Count_Student_TwoOrMoreRaces,6.0,, +nces/A0503272,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/A0507124,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0507274,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0507700,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0700419,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0700420,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0700686,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0700688,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0700925,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0701268,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0701576,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0740052,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0770215,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A0770225,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A0771128,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0771471,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0771477,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0771713,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0790077,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0900001,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0900179,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0900756,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0900758,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/A0900759,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0901570,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902047,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902285,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A0902446,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902447,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902448,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A0902450,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902553,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902693,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902694,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902783,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902806,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0902809,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A0903479,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0970714,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0970996,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A0971147,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0971821,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A0990097,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9100483,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A9101510,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9101662,2009,Count_Student_TwoOrMoreRaces,23.0,, +nces/A9103126,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9104267,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9104268,2009,Count_Student_TwoOrMoreRaces,3.0,, +nces/A9104404,2009,Count_Student_TwoOrMoreRaces,10.0,, +nces/A9104507,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9104665,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9106874,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A9302116,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9302732,2009,Count_Student_TwoOrMoreRaces,29.0,, +nces/A9501079,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9501433,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9502014,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9502015,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9502589,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A9502733,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9503341,2009,Count_Student_TwoOrMoreRaces,4.0,, +nces/A9503430,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9503777,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9700074,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9702631,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9702795,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9703331,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9705123,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9705126,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9705218,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9705232,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9706318,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9707442,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A9707907,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9708049,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9708050,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9708052,2009,Count_Student_TwoOrMoreRaces,5.0,, +nces/A9708053,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/A9900904,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9901553,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/A9902871,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9903306,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9903610,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9904455,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/A9904469,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/AA000003,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/AA000007,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/AA000008,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/AA000010,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/AA000011,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/AA001609,2009,Count_Student_TwoOrMoreRaces,1.0,, +nces/BB000456,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB020971,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB021012,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB061076,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB080157,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB100068,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB100187,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB100383,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB101572,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB911554,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB942865,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB943172,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB943634,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB945908,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB964072,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/BB964100,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/BB980189,2009,Count_Student_TwoOrMoreRaces,5.0,, +nces/K9300079,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9301240,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9303866,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/K9304728,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9305227,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9305325,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9305530,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9305911,2009,Count_Student_TwoOrMoreRaces,0.0,, +nces/K9500531,2009,Count_Student_TwoOrMoreRaces,8.0,, +nces/K9500748,2009,Count_Student_TwoOrMoreRaces,2.0,, +nces/Y2162569,2009,Count_Student_TwoOrMoreRaces,23.0,, +nces/00752221,2009,Count_Student_UngradedClasses,41.0,, +nces/02043767,2009,Count_Student_UngradedClasses,57.0,, +nces/A0301888,2009,Count_Student_UngradedClasses,25.0,, +nces/A0307668,2009,Count_Student_UngradedClasses,4.0,, +nces/A0500119,2009,Count_Student_UngradedClasses,29.0,, +nces/A0503198,2009,Count_Student_UngradedClasses,10.0,, +nces/A0700420,2009,Count_Student_UngradedClasses,19.0,, +nces/A0700686,2009,Count_Student_UngradedClasses,2.0,, +nces/A0700925,2009,Count_Student_UngradedClasses,12.0,, +nces/A0902285,2009,Count_Student_UngradedClasses,92.0,, +nces/A9501079,2009,Count_Student_UngradedClasses,75.0,, +nces/A9502015,2009,Count_Student_UngradedClasses,46.0,, +nces/A9503777,2009,Count_Student_UngradedClasses,7.0,, +nces/A9702795,2009,Count_Student_UngradedClasses,22.0,, +nces/A9707442,2009,Count_Student_UngradedClasses,25.0,, +nces/BB911554,2009,Count_Student_UngradedClasses,6.0,, +nces/00001026,2009,Count_Student_White,150.0,, +nces/00081272,2009,Count_Student_White,179.0,, +nces/00259858,2009,Count_Student_White,11.0,, +nces/00425908,2009,Count_Student_White,82.0,, +nces/00517072,2009,Count_Student_White,325.0,, +nces/00699979,2009,Count_Student_White,660.0,, +nces/00752221,2009,Count_Student_White,26.0,, +nces/00928796,2009,Count_Student_White,109.0,, +nces/01195835,2009,Count_Student_White,379.0,, +nces/01283096,2009,Count_Student_White,15.0,, +nces/01328801,2009,Count_Student_White,222.0,, +nces/01328969,2009,Count_Student_White,65.0,, +nces/01898328,2009,Count_Student_White,6.0,, +nces/01906396,2009,Count_Student_White,202.0,, +nces/01907265,2009,Count_Student_White,69.0,, +nces/01933863,2009,Count_Student_White,206.0,, +nces/02007955,2009,Count_Student_White,0.0,, +nces/02039659,2009,Count_Student_White,32.0,, +nces/02043767,2009,Count_Student_White,6.0,, +nces/02058401,2009,Count_Student_White,57.0,, +nces/02067846,2009,Count_Student_White,6.0,, +nces/02068045,2009,Count_Student_White,33.0,, +nces/02161237,2009,Count_Student_White,119.0,, +nces/A0100441,2009,Count_Student_White,16.0,, +nces/A0101705,2009,Count_Student_White,17.0,, +nces/A0102854,2009,Count_Student_White,4.0,, +nces/A0102857,2009,Count_Student_White,0.0,, +nces/A0103186,2009,Count_Student_White,5.0,, +nces/A0103294,2009,Count_Student_White,7.0,, +nces/A0104077,2009,Count_Student_White,54.0,, +nces/A0106240,2009,Count_Student_White,10.0,, +nces/A0106286,2009,Count_Student_White,4.0,, +nces/A0106295,2009,Count_Student_White,4.0,, +nces/A0106324,2009,Count_Student_White,1.0,, +nces/A0107740,2009,Count_Student_White,0.0,, +nces/A0108235,2009,Count_Student_White,14.0,, +nces/A0108720,2009,Count_Student_White,15.0,, +nces/A0108771,2009,Count_Student_White,6.0,, +nces/A0108773,2009,Count_Student_White,23.0,, +nces/A0109638,2009,Count_Student_White,10.0,, +nces/A0300737,2009,Count_Student_White,0.0,, +nces/A0300748,2009,Count_Student_White,0.0,, +nces/A0301888,2009,Count_Student_White,20.0,, +nces/A0303162,2009,Count_Student_White,48.0,, +nces/A0303197,2009,Count_Student_White,4.0,, +nces/A0304042,2009,Count_Student_White,21.0,, +nces/A0307071,2009,Count_Student_White,32.0,, +nces/A0307448,2009,Count_Student_White,2.0,, +nces/A0307668,2009,Count_Student_White,15.0,, +nces/A0307925,2009,Count_Student_White,0.0,, +nces/A0500119,2009,Count_Student_White,15.0,, +nces/A0502391,2009,Count_Student_White,103.0,, +nces/A0503198,2009,Count_Student_White,50.0,, +nces/A0503272,2009,Count_Student_White,17.0,, +nces/A0507274,2009,Count_Student_White,39.0,, +nces/A0507700,2009,Count_Student_White,3.0,, +nces/A0700419,2009,Count_Student_White,18.0,, +nces/A0700420,2009,Count_Student_White,4.0,, +nces/A0700686,2009,Count_Student_White,33.0,, +nces/A0700688,2009,Count_Student_White,37.0,, +nces/A0700925,2009,Count_Student_White,8.0,, +nces/A0701268,2009,Count_Student_White,86.0,, +nces/A0701576,2009,Count_Student_White,35.0,, +nces/A0740052,2009,Count_Student_White,10.0,, +nces/A0770215,2009,Count_Student_White,0.0,, +nces/A0770225,2009,Count_Student_White,1.0,, +nces/A0771128,2009,Count_Student_White,11.0,, +nces/A0771471,2009,Count_Student_White,0.0,, +nces/A0771477,2009,Count_Student_White,16.0,, +nces/A0771713,2009,Count_Student_White,33.0,, +nces/A0790077,2009,Count_Student_White,3.0,, +nces/A0900001,2009,Count_Student_White,25.0,, +nces/A0900179,2009,Count_Student_White,5.0,, +nces/A0900756,2009,Count_Student_White,4.0,, +nces/A0900758,2009,Count_Student_White,5.0,, +nces/A0900759,2009,Count_Student_White,9.0,, +nces/A0901570,2009,Count_Student_White,0.0,, +nces/A0902047,2009,Count_Student_White,6.0,, +nces/A0902285,2009,Count_Student_White,48.0,, +nces/A0902446,2009,Count_Student_White,11.0,, +nces/A0902447,2009,Count_Student_White,6.0,, +nces/A0902448,2009,Count_Student_White,41.0,, +nces/A0902450,2009,Count_Student_White,0.0,, +nces/A0902553,2009,Count_Student_White,7.0,, +nces/A0902693,2009,Count_Student_White,21.0,, +nces/A0902694,2009,Count_Student_White,1.0,, +nces/A0902783,2009,Count_Student_White,10.0,, +nces/A0902806,2009,Count_Student_White,20.0,, +nces/A0902809,2009,Count_Student_White,35.0,, +nces/A0903479,2009,Count_Student_White,4.0,, +nces/A0970714,2009,Count_Student_White,1.0,, +nces/A0970996,2009,Count_Student_White,3.0,, +nces/A0971147,2009,Count_Student_White,4.0,, +nces/A0971821,2009,Count_Student_White,2.0,, +nces/A0990097,2009,Count_Student_White,5.0,, +nces/A9100483,2009,Count_Student_White,5.0,, +nces/A9101510,2009,Count_Student_White,25.0,, +nces/A9101662,2009,Count_Student_White,64.0,, +nces/A9103126,2009,Count_Student_White,1.0,, +nces/A9104267,2009,Count_Student_White,0.0,, +nces/A9104268,2009,Count_Student_White,15.0,, +nces/A9104404,2009,Count_Student_White,47.0,, +nces/A9104507,2009,Count_Student_White,12.0,, +nces/A9104665,2009,Count_Student_White,294.0,, +nces/A9106874,2009,Count_Student_White,25.0,, +nces/A9302116,2009,Count_Student_White,5.0,, +nces/A9302732,2009,Count_Student_White,180.0,, +nces/A9501079,2009,Count_Student_White,60.0,, +nces/A9501433,2009,Count_Student_White,4.0,, +nces/A9502014,2009,Count_Student_White,8.0,, +nces/A9502015,2009,Count_Student_White,0.0,, +nces/A9502589,2009,Count_Student_White,2.0,, +nces/A9502733,2009,Count_Student_White,9.0,, +nces/A9503341,2009,Count_Student_White,118.0,, +nces/A9503430,2009,Count_Student_White,53.0,, +nces/A9503777,2009,Count_Student_White,30.0,, +nces/A9700074,2009,Count_Student_White,51.0,, +nces/A9702631,2009,Count_Student_White,16.0,, +nces/A9702795,2009,Count_Student_White,17.0,, +nces/A9703331,2009,Count_Student_White,213.0,, +nces/A9705123,2009,Count_Student_White,3.0,, +nces/A9705126,2009,Count_Student_White,14.0,, +nces/A9705218,2009,Count_Student_White,14.0,, +nces/A9705232,2009,Count_Student_White,5.0,, +nces/A9706318,2009,Count_Student_White,16.0,, +nces/A9707442,2009,Count_Student_White,30.0,, +nces/A9707907,2009,Count_Student_White,3.0,, +nces/A9708049,2009,Count_Student_White,9.0,, +nces/A9708050,2009,Count_Student_White,1.0,, +nces/A9708052,2009,Count_Student_White,19.0,, +nces/A9708053,2009,Count_Student_White,10.0,, +nces/A9900904,2009,Count_Student_White,5.0,, +nces/A9901553,2009,Count_Student_White,18.0,, +nces/A9902871,2009,Count_Student_White,10.0,, +nces/A9903306,2009,Count_Student_White,7.0,, +nces/A9903610,2009,Count_Student_White,10.0,, +nces/A9904455,2009,Count_Student_White,11.0,, +nces/A9904469,2009,Count_Student_White,34.0,, +nces/AA000003,2009,Count_Student_White,5.0,, +nces/AA000007,2009,Count_Student_White,35.0,, +nces/AA000008,2009,Count_Student_White,57.0,, +nces/AA000010,2009,Count_Student_White,7.0,, +nces/AA000011,2009,Count_Student_White,4.0,, +nces/AA001609,2009,Count_Student_White,160.0,, +nces/BB000456,2009,Count_Student_White,21.0,, +nces/BB020971,2009,Count_Student_White,0.0,, +nces/BB021012,2009,Count_Student_White,0.0,, +nces/BB061076,2009,Count_Student_White,75.0,, +nces/BB080157,2009,Count_Student_White,8.0,, +nces/BB080442,2009,Count_Student_White,17.0,, +nces/BB100068,2009,Count_Student_White,4.0,, +nces/BB100187,2009,Count_Student_White,3.0,, +nces/BB100383,2009,Count_Student_White,0.0,, +nces/BB101572,2009,Count_Student_White,0.0,, +nces/BB911554,2009,Count_Student_White,63.0,, +nces/BB942865,2009,Count_Student_White,0.0,, +nces/BB943172,2009,Count_Student_White,0.0,, +nces/BB943634,2009,Count_Student_White,83.0,, +nces/BB945908,2009,Count_Student_White,0.0,, +nces/BB964072,2009,Count_Student_White,3.0,, +nces/BB964100,2009,Count_Student_White,9.0,, +nces/BB980189,2009,Count_Student_White,25.0,, +nces/K9300079,2009,Count_Student_White,7.0,, +nces/K9301240,2009,Count_Student_White,0.0,, +nces/K9303866,2009,Count_Student_White,2.0,, +nces/K9304728,2009,Count_Student_White,12.0,, +nces/K9305227,2009,Count_Student_White,2.0,, +nces/K9305325,2009,Count_Student_White,6.0,, +nces/K9305530,2009,Count_Student_White,6.0,, +nces/K9305911,2009,Count_Student_White,1.0,, +nces/K9500531,2009,Count_Student_White,66.0,, +nces/K9500748,2009,Count_Student_White,42.0,, +nces/Y2162569,2009,Count_Student_White,513.0,, diff --git a/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.mcf b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.mcf new file mode 100644 index 000000000..e69de29bb diff --git a/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.tmcf b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.tmcf new file mode 100644 index 000000000..f4040b89d --- /dev/null +++ b/scripts/us_nces/demographics/private_school/test_data/expected_files/us_nces_demographics_private_school.tmcf @@ -0,0 +1,10 @@ +Node: E:us_nces_demographics_private_school->E0 +typeOf: dcs:StatVarObservation +variableMeasured: C:us_nces_demographics_private_school->sv_name +measurementMethod: dcs:US_NCES_Demographics +observationAbout: C:us_nces_demographics_private_school->school_state_code +observationDate: C:us_nces_demographics_private_school->year +scalingFactor: C:us_nces_demographics_private_school->scaling_factor +unit: C:us_nces_demographics_private_school->unit +observationPeriod: "P2Y" +value: C:us_nces_demographics_private_school->observation \ No newline at end of file diff --git a/scripts/us_nces/demographics/public_school/config.py b/scripts/us_nces/demographics/public_school/config.py new file mode 100644 index 000000000..4e20cfe3b --- /dev/null +++ b/scripts/us_nces/demographics/public_school/config.py @@ -0,0 +1,85 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script is config file +for us nces demographic private school. +""" +# Defining file names. +CSV_FILE_NAME = "us_nces_demographics_public_school.csv" +MCF_FILE_NAME = "us_nces_demographics_public_school.mcf" +TMCF_FILE_NAME = "us_nces_demographics_public_school.tmcf" +CSV_FILE_PLACE = "us_nces_demographics_public_place.csv" +CSV_DUPLICATE_NAME = "dulicate_id_us_nces_demographics_public_place.csv" +TMCF_FILE_PLACE = "us_nces_demographics_public_place.tmcf" +SCHOOL_TYPE = "public_school" +OBSERVATION_PERIOD = "P1Y" +SPLIT_HEADER_ON_SCHOOL_TYPE = "[Public School]" +# Considering the required columns for Demographics Data. +POSSIBLE_DATA_COLUMNS = [ + ".*Students.*", ".*Lunch.*", ".*Teacher.*", ".*American.*", ".*Asian.*", + ".*Hispanic.*", ".*Black.*", ".*White.*", ".*Adult Education.*", + "Ungraded.*", "Two or More Races.*", "Nat. Hawaiian or Other Pacific Isl.*" +] +# Excluding the unwanted columns. +EXCLUDE_DATA_COLUMNS = [ + 'Migrant Students', '(Includes AE)', + 'Total Students - Calculated Sum of Reported Grade Totals', 'Unknown', + 'unknown', 'Total Race/Ethnicity', 'Agency ID - NCES Assigned' +] +# Considering the required columns for Place Data. +POSSIBLE_PLACE_COLUMNS = [ + "school_state_code", "ZIP", ".*County.*", ".*School.*", ".*Lowest.*", + ".*Highest.*", "Physical.*", "Phone.*", "Coeducational", ".*Level.*", + ".*State.*", "Latitude.*", "Longitude.*", "Locale.*", "Location.*", + "Charter.*", "Magnet.*", "Title.*", "Agency.*", "State Name" +] +# Excluding the unwanted columns. +EXCLUDE_PLACE_COLUMNS = ["Metro Micro Area Code"] +# Since Public school has multiple input file for one year, all the coulmns are +# merged based on the place_key_columns. +PLACE_KEY_COLUMNS = ["year", "School ID - NCES Assigned"] +# Set of columns to exclude while checking for duplicate School IDs +EXCLUDE_LIST = [ + 'school_state_code', 'School Name', 'School ID - NCES Assigned', + 'ANSI/FIPS State Code' +] +# Dropping the Duplicate entries based on School ID +DROP_BY_VALUE = "School ID - NCES Assigned" +# Renaming column name. +RENAMING_PUBLIC_COLUMNS = { + 'County Number': 'County_code', + 'School Name': 'Public_School_Name', + 'School ID - NCES Assigned': 'School_Id', + 'Lowest Grade Offered': 'Lowest_Grade_Public', + 'Highest Grade Offered': 'Highest_Grade_Public', + 'Phone Number': 'PhoneNumber', + 'ANSI/FIPS State Code': 'State_code', + 'Location Address 1': 'Physical_Address', + 'Location City': 'City', + 'Location ZIP': 'ZIP', + 'Magnet School': 'Magnet_School', + 'Charter School': 'Charter_School', + 'School Type': 'School_Type_Public', + 'Title I School Status': 'Title_I_School_Status', + 'National School Lunch Program': 'National_School_Lunch_Program', + 'School Level (SY 2017-18 onward)': 'School_Level_17', + 'State School ID': 'State_School_ID', + 'State Agency ID': 'State_Agency_ID', + 'State Abbr': 'State_Abbr', + 'Agency Name': 'Agency_Name', + 'Location ZIP4': 'Location_ZIP4', + 'Agency ID - NCES Assigned': 'State_District_ID', + 'School Level': 'School_Level_16', + 'State Name': 'State_Name' +} diff --git a/scripts/us_nces/demographics/public_school/process.py b/scripts/us_nces/demographics/public_school/process.py new file mode 100644 index 000000000..207fb30f8 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/process.py @@ -0,0 +1,91 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script Load the datasets, cleans it +and generates cleaned CSV, MCF, TMCF file. +Before running this module, run download_input_files.py script, it downloads +required input files, creates necessary folders for processing. +Folder information +input_files - downloaded files (from US nces website) are placed here +output_files - output files (mcf, tmcf and csv are written here) +""" + +import os +import sys + +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(1, MODULE_DIR + '/../..') +# pylint:disable=wrong-import-position +# pylint:disable=import-error +# pylint:disable=wildcard-import +from common.us_education import USEducation +from config import * + +# pylint:enable=wrong-import-position +# pylint:enable=import-error +# pylint:disable=wildcard-import + + +# pylint:disable=too-few-public-methods +class NCESPublicSchool(USEducation): + """ + This Class has requried methods to generate Cleaned CSV, + MCF and TMCF Files. + """ + _import_name = SCHOOL_TYPE + _split_headers_using_school_type = SPLIT_HEADER_ON_SCHOOL_TYPE + _exclude_columns = EXCLUDE_DATA_COLUMNS + _include_columns = POSSIBLE_DATA_COLUMNS + _include_col_place = POSSIBLE_PLACE_COLUMNS + _exclude_col_place = EXCLUDE_PLACE_COLUMNS + _observation_period = OBSERVATION_PERIOD + _key_col_place = PLACE_KEY_COLUMNS + _exclude_list = EXCLUDE_LIST + _school_id = DROP_BY_VALUE + _renaming_columns = RENAMING_PUBLIC_COLUMNS + + +# pylint:enable=too-few-public-methods + +if __name__ == '__main__': + input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") + + input_files = [ + os.path.join(input_path, file) + for file in sorted(os.listdir(input_path)) + if file != ".DS_Store" + ] + + # Defining Output Files + output_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "output_files") + + output_file_path_place = os.path.join( + os.path.dirname(os.path.abspath(__file__)), "output_place") + + cleaned_csv_path = os.path.join(output_file_path, CSV_FILE_NAME) + mcf_path = os.path.join(output_file_path, MCF_FILE_NAME) + tmcf_path = os.path.join(output_file_path, TMCF_FILE_NAME) + csv_path_place = os.path.join(output_file_path_place, CSV_FILE_PLACE) + duplicate_csv_place = os.path.join(output_file_path_place, + CSV_DUPLICATE_NAME) + tmcf_path_place = os.path.join(output_file_path_place, TMCF_FILE_PLACE) + + loader = NCESPublicSchool(input_files, cleaned_csv_path, mcf_path, + tmcf_path, csv_path_place, duplicate_csv_place, + tmcf_path_place) + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() diff --git a/scripts/us_nces/demographics/public_school/process_test.py b/scripts/us_nces/demographics/public_school/process_test.py new file mode 100644 index 000000000..7c8e07375 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/process_test.py @@ -0,0 +1,149 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Script to automate the testing for EuroStat Physical Activity process script. +""" + +import os +import unittest +import sys +import tempfile +# module_dir is the path to where this test is running from. +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(0, MODULE_DIR) +# pylint: disable=wrong-import-position +from process import NCESPublicSchool +# pylint: enable=wrong-import-position + +TEST_DATASET_DIR = os.path.join(MODULE_DIR, "test_data", "datasets") +EXPECTED_FILES_DIR = os.path.join(MODULE_DIR, "test_data", "expected_files") + + +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. + """ + test_data_files = os.listdir(TEST_DATASET_DIR) + + ip_data = [ + os.path.join(TEST_DATASET_DIR, file_name) + 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) + + 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() + + def test_mcf_tmcf_files(self): + """ + This method is required to test between output generated + preprocess script and expected output files like MCF File + """ + expected_mcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_public_school.mcf") + + expected_tmcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_public_school.tmcf") + + expected_tmcf_place_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_public_place.tmcf") + + with open(expected_mcf_file_path, + encoding="UTF-8") as expected_mcf_file: + expected_mcf_data = expected_mcf_file.read() + + with open(expected_tmcf_file_path, + encoding="UTF-8") as expected_tmcf_file: + expected_tmcf_data = expected_tmcf_file.read() + + with open(expected_tmcf_place_path, + encoding="UTF-8") as expected_tmcf_file_place: + expected_tmcf_place = expected_tmcf_file_place.read() + + self.assertEqual(expected_mcf_data.strip(), + self.actual_mcf_data.strip()) + self.assertEqual(expected_tmcf_data.strip(), + self.actual_tmcf_data.strip()) + self.assertEqual(expected_tmcf_place.strip(), + self.actual_tmcf_place.strip()) + + def test_create_csv(self): + """ + This method is required to test between output generated + preprocess script and expected output files like CSV + """ + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_public_school.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_data = expected_csv_file.read() + + self.assertEqual(expected_csv_data.strip(), + self.actual_csv_data.strip()) + + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_public_place.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_place = expected_csv_file.read() + + self.assertEqual(expected_csv_place.strip(), + self.actual_csv_place.strip()) + + +if __name__ == '__main__': + unittest.main() diff --git a/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_6386948195254469753875.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_6386948195254469753875.csv new file mode 100644 index 000000000..cfecc4c4b --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_6386948195254469753875.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694819899327316336.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694819899327316336.csv new file mode 100644 index 000000000..ef3b0d817 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694819899327316336.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694820125410389699.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694820125410389699.csv new file mode 100644 index 000000000..7f2f0f88e --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694820125410389699.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694820363429046615.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694820363429046615.csv new file mode 100644 index 000000000..ea2f089d5 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694820363429046615.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694834689281632733.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694834689281632733.csv new file mode 100644 index 000000000..5859f14c3 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694834689281632733.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694836076205721316.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694836076205721316.csv new file mode 100644 index 000000000..3e72a4241 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694836076205721316.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694853401085610521.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694853401085610521.csv new file mode 100644 index 000000000..a0946de0d --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694853401085610521.csv @@ -0,0 +1,75 @@ +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/datasets/ELSI_csv_export_638694889856395863889.csv b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694889856395863889.csv new file mode 100644 index 000000000..8b4431ce3 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/datasets/ELSI_csv_export_638694889856395863889.csv @@ -0,0 +1,75 @@ +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/expected_files/us_nces_demographics_public_place.csv b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_place.csv new file mode 100644 index 000000000..fab98702e --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_place.csv @@ -0,0 +1,64 @@ +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", diff --git a/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_place.tmcf b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_place.tmcf new file mode 100644 index 000000000..5ce34ed36 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_place.tmcf @@ -0,0 +1,22 @@ +Node: E:us_nces_demographics_public_place->E0 +dcid: C:us_nces_demographics_public_place->school_state_code +typeOf: dcs:PublicSchool +address: C:us_nces_demographics_public_place->Physical_Address +name: C:us_nces_demographics_public_place->Public_School_Name +ncesId: C:us_nces_demographics_public_place->School_Id +containedInPlace: C:us_nces_demographics_public_place->ContainedInPlace +telephone: C:us_nces_demographics_public_place->PhoneNumber +lowestGrade: C:us_nces_demographics_public_place->Lowest_Grade_Public +highestGrade: C:us_nces_demographics_public_place->Highest_Grade_Public +schoolGradeLevel: C:us_nces_demographics_public_place->School_Level +educationalMethod: C:us_nces_demographics_public_place->School_Type_Public +longitude: C:us_nces_demographics_public_place->Longitude +latitude: C:us_nces_demographics_public_place->Latitude +ncesLocale: C:us_nces_demographics_public_place->Locale +magnetStatus: C:us_nces_demographics_public_place->Magnet_School +titleISchoolStatus: C:us_nces_demographics_public_place->Title_I_School_Status +charterStatus: C:us_nces_demographics_public_place->Charter_School +nationalSchoolLunchProgram: C:us_nces_demographics_public_place->National_School_Lunch_Program +schoolDistrict: C:us_nces_demographics_public_place->State_District_ID +schoolStateID: C:us_nces_demographics_public_place->State_School_ID +schoolManagement: C:us_nces_demographics_public_place->School_Management \ No newline at end of file diff --git a/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.csv b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.csv new file mode 100644 index 000000000..0bed977f2 --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.csv @@ -0,0 +1,9148 @@ +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,, diff --git a/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.mcf b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.mcf new file mode 100644 index 000000000..e69de29bb diff --git a/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.tmcf b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.tmcf new file mode 100644 index 000000000..ac8e1cf0f --- /dev/null +++ b/scripts/us_nces/demographics/public_school/test_data/expected_files/us_nces_demographics_public_school.tmcf @@ -0,0 +1,10 @@ +Node: E:us_nces_demographics_public_school->E0 +typeOf: dcs:StatVarObservation +variableMeasured: C:us_nces_demographics_public_school->sv_name +measurementMethod: dcs:US_NCES_Demographics +observationAbout: C:us_nces_demographics_public_school->school_state_code +observationDate: C:us_nces_demographics_public_school->year +scalingFactor: C:us_nces_demographics_public_school->scaling_factor +unit: C:us_nces_demographics_public_school->unit +observationPeriod: "P1Y" +value: C:us_nces_demographics_public_school->observation \ No newline at end of file diff --git a/scripts/us_nces/demographics/requirements.txt b/scripts/us_nces/demographics/requirements.txt new file mode 100644 index 000000000..aca041cad --- /dev/null +++ b/scripts/us_nces/demographics/requirements.txt @@ -0,0 +1,2 @@ +selenium +chromedriver_py diff --git a/scripts/us_nces/demographics/school_district/config.py b/scripts/us_nces/demographics/school_district/config.py new file mode 100644 index 000000000..93575ca2f --- /dev/null +++ b/scripts/us_nces/demographics/school_district/config.py @@ -0,0 +1,83 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script is config file +for us nces demographic district school. +""" +# Defining file names. +CSV_FILE_NAME = "us_nces_demographics_district_school.csv" +MCF_FILE_NAME = "us_nces_demographics_district_school.mcf" +TMCF_FILE_NAME = "us_nces_demographics_district_school.tmcf" +CSV_FILE_PLACE = "us_nces_demographics_district_place.csv" +CSV_DUPLICATE_NAME = "dulicate_id_us_nces_demographics_district_place.csv" +TMCF_FILE_PLACE = "us_nces_demographics_district_place.tmcf" +SCHOOL_TYPE = "district_school" +OBSERVATION_PERIOD = "P1Y" +SPLIT_HEADER_ON_SCHOOL_TYPE = "[District]" +# 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.*", + "Prekindergarten and Kindergarten.*" +] +# Excluding the unwanted columns. +EXCLUDE_DATA_COLUMNS = [ + "Individualized Education Program Students", '(Includes AE)', + "Phone Number", "State Agency ID", "State Name" +] +# Considering the required columns for Place Data. +POSSIBLE_PLACE_COLUMNS = [ + "school_state_code", ".*ZIP.*", ".*County.*", ".*Agency.*", "Physical.*", + "Phone.*", "Coeducational", ".*Level.*", ".*State.*", "Latitude.*", + "Longitude.*", "Locale.*", "Location.*", "Lowest.*", "Highest.*" +] +# Excluding the unwanted columns. +EXCLUDE_PLACE_COLUMNS = [ + "Metro Micro Area Code", "Location Address 2", "Location Address 3", + ".*Congress.*", "Mailing ZIP" +] +# Since Public school has multiple input file for one year, all the coulmns are +# merged based on the place_key_columns. +PLACE_KEY_COLUMNS = ["year", "Agency ID - NCES Assigned"] +# Set of columns to exclude while checking for duplicate School IDs +EXCLUDE_LIST = [ + 'school_state_code', 'Agency Name', 'Agency ID - NCES Assigned', + 'ANSI/FIPS State Code' +] +# Dropping the Duplicate entries based on School ID +DROP_BY_VALUE = "Agency ID - NCES Assigned" +# Renaming column name. +RENAMING_DISTRICT_COLUMNS = { + 'Location ZIP': 'ZIP', + 'County Number': 'County_code', + 'Agency Name': 'District_School_name', + 'Agency ID - NCES Assigned': 'School_ID', + 'Agency Type': 'School_Type', + 'State Agency ID': 'State_school_ID', + 'Phone Number': 'PhoneNumber', + 'ANSI/FIPS State Code': 'State_code', + 'Location Address 1': 'Physical_Address', + 'Location City': 'City', + 'Agency Level (SY 2017-18 onward)': 'Agency_level', + "Lowest Grade Offered": "Lowest_Grade_Dist", + "Highest Grade Offered": "Highest_Grade_Dist", + "State Name": "State_Name", + "Location ZIP4": "Location_ZIP4", + "State Abbr": "State_Abbr", + "Locale": "Locale", + "Latitude": "Latitude", + "Longitude": "Longitude" +} diff --git a/scripts/us_nces/demographics/school_district/http_cache.sqlite b/scripts/us_nces/demographics/school_district/http_cache.sqlite new file mode 100644 index 000000000..acbf53ffd Binary files /dev/null and b/scripts/us_nces/demographics/school_district/http_cache.sqlite differ diff --git a/scripts/us_nces/demographics/school_district/process.py b/scripts/us_nces/demographics/school_district/process.py new file mode 100644 index 000000000..bdda12881 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/process.py @@ -0,0 +1,90 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +This Python Script Load the datasets, cleans it +and generates cleaned CSV, MCF, TMCF file. +Before running this module, run download_input_files.py script, it downloads +required input files, creates necessary folders for processing. +Folder information +input_files - downloaded files (from US nces website) are placed here +output_files - output files (mcf, tmcf and csv are written here) +""" + +import os +import sys + +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(1, MODULE_DIR + '/../..') +# pylint:disable=wrong-import-position +# pylint:disable=import-error +# pylint:disable=wildcard-import +from common.us_education import USEducation +from config import * + +# pylint:enable=wrong-import-position +# pylint:enable=import-error +# pylint:disable=wildcard-import + + +# pylint:disable=too-few-public-methods +class NCESDistrictSchool(USEducation): + """ + This Class has requried methods to generate Cleaned CSV, + MCF and TMCF Files. + """ + _import_name = SCHOOL_TYPE + _split_headers_using_school_type = SPLIT_HEADER_ON_SCHOOL_TYPE + _exclude_columns = EXCLUDE_DATA_COLUMNS + _include_columns = POSSIBLE_DATA_COLUMNS + _include_col_place = POSSIBLE_PLACE_COLUMNS + _exclude_col_place = EXCLUDE_PLACE_COLUMNS + _observation_period = OBSERVATION_PERIOD + _key_col_place = PLACE_KEY_COLUMNS + _exclude_list = EXCLUDE_LIST + _school_id = DROP_BY_VALUE + _renaming_columns = RENAMING_DISTRICT_COLUMNS + + +# pylint:enable=too-few-public-methods + +if __name__ == '__main__': + input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") + input_files = [ + os.path.join(input_path, file) + for file in sorted(os.listdir(input_path)) + if file != ".DS_Store" + ] + + # Defining Output Files + output_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "output_files") + + output_file_path_place = os.path.join( + os.path.dirname(os.path.abspath(__file__)), "output_place") + + cleaned_csv_path = os.path.join(output_file_path, CSV_FILE_NAME) + mcf_path = os.path.join(output_file_path, MCF_FILE_NAME) + tmcf_path = os.path.join(output_file_path, TMCF_FILE_NAME) + csv_path_place = os.path.join(output_file_path_place, CSV_FILE_PLACE) + duplicate_csv_place = os.path.join(output_file_path_place, + CSV_DUPLICATE_NAME) + tmcf_path_place = os.path.join(output_file_path_place, TMCF_FILE_PLACE) + + loader = NCESDistrictSchool(input_files, cleaned_csv_path, mcf_path, + tmcf_path, csv_path_place, duplicate_csv_place, + tmcf_path_place) + loader.generate_csv() + loader.generate_mcf() + loader.generate_tmcf() diff --git a/scripts/us_nces/demographics/school_district/process_test.py b/scripts/us_nces/demographics/school_district/process_test.py new file mode 100644 index 000000000..3383b4ceb --- /dev/null +++ b/scripts/us_nces/demographics/school_district/process_test.py @@ -0,0 +1,149 @@ +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Script to automate the testing for EuroStat Physical Activity process script. +""" + +import os +import unittest +import sys +import tempfile +# module_dir is the path to where this test is running from. +MODULE_DIR = os.path.dirname(__file__) +sys.path.insert(0, MODULE_DIR) +# pylint: disable=wrong-import-position +from process import NCESDistrictSchool +# pylint: enable=wrong-import-position + +TEST_DATASET_DIR = os.path.join(MODULE_DIR, "test_data", "datasets") +EXPECTED_FILES_DIR = os.path.join(MODULE_DIR, "test_data", "expected_files") + + +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. + """ + test_data_files = os.listdir(TEST_DATASET_DIR) + + ip_data = [ + os.path.join(TEST_DATASET_DIR, file_name) + 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_private_school_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) + + 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() + + def test_mcf_tmcf_files(self): + """ + This method is required to test between output generated + preprocess script and expected output files like MCF File + """ + expected_mcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_district_school.mcf") + + expected_tmcf_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_district_school.tmcf") + + expected_tmcf_place_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_district_place.tmcf") + + with open(expected_mcf_file_path, + encoding="UTF-8") as expected_mcf_file: + expected_mcf_data = expected_mcf_file.read() + + with open(expected_tmcf_file_path, + encoding="UTF-8") as expected_tmcf_file: + expected_tmcf_data = expected_tmcf_file.read() + + with open(expected_tmcf_place_path, + encoding="UTF-8") as expected_tmcf_file_place: + expected_tmcf_place = expected_tmcf_file_place.read() + + self.assertEqual(expected_mcf_data.strip(), + self.actual_mcf_data.strip()) + self.assertEqual(expected_tmcf_data.strip(), + self.actual_tmcf_data.strip()) + self.assertEqual(expected_tmcf_place.strip(), + self.actual_tmcf_place.strip()) + + def test_create_csv(self): + """ + This method is required to test between output generated + preprocess script and expected output files like CSV + """ + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_district_school.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_data = expected_csv_file.read() + + self.assertEqual(expected_csv_data.strip(), + self.actual_csv_data.strip()) + + expected_csv_file_path = os.path.join( + EXPECTED_FILES_DIR, "us_nces_demographics_district_place.csv") + + expected_csv_data = "" + with open(expected_csv_file_path, + encoding="utf-8") as expected_csv_file: + expected_csv_place = expected_csv_file.read() + + self.assertEqual(expected_csv_place.strip(), + self.actual_csv_place.strip()) + + +if __name__ == '__main__': + unittest.main() diff --git a/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978403406937661596.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978403406937661596.csv new file mode 100644 index 000000000..1c4fe5151 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978403406937661596.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] 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/datasets/ELSI_csv_export_6386978404623079441206.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978404623079441206.csv new file mode 100644 index 000000000..2b86848fe --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978404623079441206.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 - 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/datasets/ELSI_csv_export_6386978405393867153627.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978405393867153627.csv new file mode 100644 index 000000000..63e5ec686 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978405393867153627.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 - 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/datasets/ELSI_csv_export_6386978406339657098492.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978406339657098492.csv new file mode 100644 index 000000000..53055ce81 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978406339657098492.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 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/datasets/ELSI_csv_export_6386978407085375858439.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978407085375858439.csv new file mode 100644 index 000000000..6c000579c --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978407085375858439.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 - 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/datasets/ELSI_csv_export_6386978408027941011352.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978408027941011352.csv new file mode 100644 index 000000000..40f521719 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978408027941011352.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 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/datasets/ELSI_csv_export_6386978409111351539565.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978409111351539565.csv new file mode 100644 index 000000000..1c06bf410 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978409111351539565.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 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/datasets/ELSI_csv_export_6386978410141513492064.csv b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978410141513492064.csv new file mode 100644 index 000000000..15e0451a9 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/datasets/ELSI_csv_export_6386978410141513492064.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 - 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/expected_files/us_nces_demographics_district_place.csv b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_place.csv new file mode 100644 index 000000000..3e7cae4ed --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_place.csv @@ -0,0 +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, diff --git a/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_place.tmcf b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_place.tmcf new file mode 100644 index 000000000..9c1f78c76 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_place.tmcf @@ -0,0 +1,17 @@ +Node: E:us_nces_demographics_district_place->E0 +dcid: C:us_nces_demographics_district_place->school_state_code +typeOf: dcs:SchoolDistrict +address: C:us_nces_demographics_district_place->Physical_Address +name: C:us_nces_demographics_district_place->District_School_name +geoId: C:us_nces_demographics_district_place->geoID +ncesId: C:us_nces_demographics_district_place->School_ID +postalCode: C:us_nces_demographics_district_place->ZIP +containedInPlace: C:us_nces_demographics_district_place->ContainedInPlace +schoolStateID: C:us_nces_demographics_district_place->State_school_ID +telephone: C:us_nces_demographics_district_place->PhoneNumber +lowestGrade: C:us_nces_demographics_district_place->Lowest_Grade_Dist +highestGrade: C:us_nces_demographics_district_place->Highest_Grade_Dist +longitude: C:us_nces_demographics_district_place->Longitude +latitude: C:us_nces_demographics_district_place->Latitude +ncesLocale: C:us_nces_demographics_district_place->Locale +schoolManagement: C:us_nces_demographics_district_place->School_Management \ No newline at end of file diff --git a/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.csv b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.csv new file mode 100644 index 000000000..44cfb1571 --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.csv @@ -0,0 +1,4546 @@ +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,, diff --git a/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.mcf b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.mcf new file mode 100644 index 000000000..e69de29bb diff --git a/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.tmcf b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.tmcf new file mode 100644 index 000000000..3f7e6099c --- /dev/null +++ b/scripts/us_nces/demographics/school_district/test_data/expected_files/us_nces_demographics_district_school.tmcf @@ -0,0 +1,10 @@ +Node: E:us_nces_demographics_district_school->E0 +typeOf: dcs:StatVarObservation +variableMeasured: C:us_nces_demographics_district_school->sv_name +measurementMethod: dcs:US_NCES_Demographics +observationAbout: C:us_nces_demographics_district_school->school_state_code +observationDate: C:us_nces_demographics_district_school->year +scalingFactor: C:us_nces_demographics_district_school->scaling_factor +unit: C:us_nces_demographics_district_school->unit +observationPeriod: "P1Y" +value: C:us_nces_demographics_district_school->observation \ No newline at end of file